Comprehension Check: Recommendation Systems

The following exercises all work with the movielens data, which can be loaded using the following code:

library(tidyverse)
## -- Attaching packages ------------------- tidyverse 1.3.0 --
## v ggplot2 3.3.2     v purrr   0.3.4
## v tibble  3.0.1     v dplyr   0.8.5
## v tidyr   1.1.0     v stringr 1.4.0
## v readr   1.3.1     v forcats 0.5.0
## -- Conflicts ---------------------- tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
library(lubridate)
## 
## Attaching package: 'lubridate'
## The following objects are masked from 'package:dplyr':
## 
##     intersect, setdiff, union
## The following objects are masked from 'package:base':
## 
##     date, intersect, setdiff, union
library(dslabs)
data("movielens")

Question 1

Compute the number of ratings for each movie and then plot it against the year the movie came out. Use the square root transformation on the y-axis when plotting.

What year has the highest median number of ratings?

rating_by_year <- movielens %>% group_by(movieId,year)%>%
  summarize(n = n_distinct(userId)) %>% group_by(year)%>% 
  summarize(Median = median(n))%>% arrange(desc(Median))
rating_by_year
## # A tibble: 104 x 2
##     year Median
##    <int>  <dbl>
##  1  1995    8  
##  2  1996    7  
##  3  1902    6  
##  4  1930    6  
##  5  1994    6  
##  6  1999    6  
##  7  1993    5.5
##  8  1973    5  
##  9  1986    5  
## 10  1992    5  
## # ... with 94 more rows

Question 2

We see that, on average, movies that came out after 1993 get more ratings. We also see that with newer movies, starting in 1993, the number of ratings decreases with year: the more recent a movie is, the less time users have had to rate it.

Among movies that came out in 1993 or later, select the top 25 movies with the highest average number of ratings per year (n/year), and caculate the average rating of each of them. To calculate number of ratings per year, use 2018 as the end year.

What is the average rating for the movie The Shawshank Redemption (“Shawshank Redemption, The”)?

movielens %>% 
  filter(year >= 1993) %>%
  group_by(movieId) %>%
  summarize(n = n(), years = 2018 - first(year),
            title = title[1],
            rating = mean(rating)) %>%
  mutate(rate = n/years) %>%
  top_n(25, rate) %>%
  arrange(desc(rate)) 
## # A tibble: 25 x 6
##    movieId     n years title                                        rating  rate
##      <int> <int> <dbl> <chr>                                         <dbl> <dbl>
##  1     356   341    24 Forrest Gump                                   4.05  14.2
##  2   79132   111     8 Inception                                      4.05  13.9
##  3    2571   259    19 Matrix, The                                    4.18  13.6
##  4     296   324    24 Pulp Fiction                                   4.26  13.5
##  5     318   311    24 Shawshank Redemption, The                      4.49  13.0
##  6   58559   121    10 Dark Knight, The                               4.24  12.1
##  7    4993   200    17 Lord of the Rings: The Fellowship of the Ri~   4.18  11.8
##  8    5952   188    16 Lord of the Rings: The Two Towers, The         4.06  11.8
##  9    7153   176    15 Lord of the Rings: The Return of the King, ~   4.13  11.7
## 10    2858   220    19 American Beauty                                4.24  11.6
## # ... with 15 more rows

Question 3

From the table constructed in Q2, we can see that the most frequently rated movies tend to have above average ratings. This is not surprising: more people watch popular movies. To confirm this, stratify the post-1993 movies by ratings per year and compute their average ratings. To calculate number of ratings per year, use 2018 as the end year. Make a plot of average rating versus ratings per year and show an estimate of the trend.

What type of trend do you observe?

movielens %>%
   filter(year >= 1993) %>%
   group_by(movieId) %>%
   summarize(avg_rating = mean(rating), n = n(), title = title[1], no_of_years=2018 - first(year)) %>%
   mutate(rating_per_year = n / no_of_years)%>%
   ggplot(aes(rating_per_year,avg_rating))+ geom_point()+ geom_smooth()
## `geom_smooth()` using method = 'gam' and formula 'y ~ s(x, bs = "cs")'

Question 4

Suppose you are doing a predictive analysis in which you need to fill in the missing ratings with some value.

Given your observations in the exercise in Q3, which of the following strategies would be most appropriate?

  • Fill in the missing values with the average rating across all movies.
  • Fill in the missing values with 0.
  • Fill in the missing values with a lower value than the average rating across all movies.
  • Fill in the value with a higher value than the average rating across all movies.
  • None of the above.

Question 5

The movielens dataset also includes a time stamp. This variable represents the time and data in which the rating was provided. The units are seconds since January 1, 1970. Create a new column date with the date.

Which code correctly creates this new column?

 movielens <- mutate(movielens, date = as_datetime(timestamp))
 movielens
##       movieId
## 1          31
## 2        1029
## 3        1061
## 4        1129
## 5        1172
## 6        1263
## 7        1287
## 8        1293
## 9        1339
## 10       1343
## 11       1371
## 12       1405
## 13       1953
## 14       2105
## 15       2150
## 16       2193
## 17       2294
## 18       2455
## 19       2968
## 20       3671
## 21         10
## 22         17
## 23         39
## 24         47
## 25         50
## 26         52
## 27         62
## 28        110
## 29        144
## 30        150
## 31        153
## 32        161
## 33        165
## 34        168
## 35        185
## 36        186
## 37        208
## 38        222
## 39        223
## 40        225
## 41        235
## 42        248
## 43        253
## 44        261
## 45        265
## 46        266
## 47        272
## 48        273
## 49        292
## 50        296
## 51        300
## 52        314
## 53        317
## 54        319
## 55        339
## 56        349
## 57        350
## 58        356
## 59        357
## 60        364
## 61        367
## 62        370
## 63        371
## 64        372
## 65        377
## 66        382
## 67        405
## 68        410
## 69        454
## 70        457
## 71        468
## 72        474
## 73        480
## 74        485
## 75        497
## 76        500
## 77        508
## 78        509
## 79        515
## 80        527
## 81        537
## 82        539
## 83        550
## 84        551
## 85        552
## 86        585
## 87        586
## 88        587
## 89        588
## 90        589
## 91        590
## 92        592
## 93        593
## 94        616
## 95        661
## 96        720
## 97         60
## 98        110
## 99        247
## 100       267
## 101       296
## 102       318
## 103       355
## 104       356
## 105       377
## 106       527
## 107       588
## 108       592
## 109       593
## 110       595
## 111       736
## 112       778
## 113       866
## 114      1197
## 115      1210
## 116      1235
## 117      1271
## 118      1378
## 119      1580
## 120      1721
## 121      1884
## 122      2028
## 123      2318
## 124      2513
## 125      2694
## 126      2702
## 127      2716
## 128      2762
## 129      2841
## 130      2858
## 131      2959
## 132      3243
## 133      3510
## 134      3949
## 135      5349
## 136      5669
## 137      6377
## 138      7153
## 139      7361
## 140      8622
## 141      8636
## 142     27369
## 143     44191
## 144     48783
## 145     50068
## 146     58559
## 147     84236
## 148        10
## 149        34
## 150       112
## 151       141
## 152       153
## 153       173
## 154       185
## 155       260
## 156       289
## 157       296
## 158       329
## 159       349
## 160       356
## 161       357
## 162       364
## 163       367
## 164       380
## 165       410
## 166       431
## 167       434
## 168       435
## 169       440
## 170       442
## 171       464
## 172       480
## 173       541
## 174       588
## 175       589
## 176       590
## 177       594
## 178       596
## 179       610
## 180       616
## 181       858
## 182       903
## 183       910
## 184       913
## 185       919
## 186      1011
## 187      1016
## 188      1022
## 189      1028
## 190      1030
## 191      1031
## 192      1032
## 193      1033
## 194      1036
## 195      1073
## 196      1079
## 197      1089
## 198      1097
## 199      1125
## 200      1127
## 201      1136
## 202      1194
## 203      1196
## 204      1197
## 205      1198
## 206      1200
## 207      1206
## 208      1208
## 209      1210
## 210      1213
## 211      1214
## 212      1219
## 213      1220
## 214      1222
## 215      1225
## 216      1230
## 217      1240
## 218      1243
## 219      1257
## 220      1258
## 221      1259
## 222      1265
## 223      1270
## 224      1278
## 225      1282
## 226      1285
## 227      1288
## 228      1291
## 229      1298
## 230      1307
## 231      1332
## 232      1334
## 233      1344
## 234      1356
## 235      1371
## 236      1372
## 237      1374
## 238      1376
## 239      1377
## 240      1380
## 241      1387
## 242      1388
## 243      1396
## 244      1544
## 245      1580
## 246      1663
## 247      1674
## 248      1805
## 249      1858
## 250      1917
## 251      1918
## 252      1953
## 253      1954
## 254      1961
## 255      1967
## 256      1968
## 257      1994
## 258      2000
## 259      2002
## 260      2003
## 261      2005
## 262      2014
## 263      2018
## 264      2020
## 265      2021
## 266      2033
## 267      2034
## 268      2046
## 269      2054
## 270      2064
## 271      2078
## 272      2080
## 273      2081
## 274      2085
## 275      2086
## 276      2087
## 277      2091
## 278      2094
## 279      2096
## 280      2100
## 281      2102
## 282      2105
## 283      2109
## 284      2110
## 285      2114
## 286      2115
## 287      2124
## 288      2140
## 289      2141
## 290      2143
## 291      2144
## 292      2161
## 293      2174
## 294      2193
## 295      2194
## 296      2248
## 297      2263
## 298      2268
## 299      2289
## 300      2348
## 301      2371
## 302      2403
## 303      2406
## 304      2409
## 305      2454
## 306      2467
## 307      2551
## 308      2616
## 309      2628
## 310      2640
## 311      2659
## 312      2683
## 313      2699
## 314      2716
## 315      2723
## 316      2734
## 317      2770
## 318      2788
## 319      2791
## 320      2795
## 321      2797
## 322      2804
## 323      2822
## 324      2867
## 325      2872
## 326      2877
## 327      2902
## 328      2903
## 329      2916
## 330      2918
## 331      2968
## 332      2986
## 333      2987
## 334      2991
## 335      3016
## 336      3034
## 337      3039
## 338      3040
## 339      3060
## 340      3071
## 341      3101
## 342      3104
## 343      3108
## 344      3169
## 345      3208
## 346      3210
## 347      3251
## 348      3255
## 349      3263
## 350      3265
## 351      4006
## 352         3
## 353        39
## 354       104
## 355       141
## 356       150
## 357       231
## 358       277
## 359       344
## 360       356
## 361       364
## 362       367
## 363       377
## 364       440
## 365       500
## 366       586
## 367       588
## 368       595
## 369       597
## 370       788
## 371       858
## 372       903
## 373       919
## 374      1022
## 375      1035
## 376      1193
## 377      1221
## 378      1247
## 379      1307
## 380      1380
## 381      1393
## 382      1485
## 383      1544
## 384      1682
## 385      1721
## 386      1777
## 387      1784
## 388      1923
## 389      1961
## 390      1968
## 391      1997
## 392      2023
## 393      2081
## 394      2273
## 395      2294
## 396      2355
## 397      2424
## 398      2502
## 399      2683
## 400      2694
## 401      2706
## 402      2762
## 403      2770
## 404      2918
## 405      2997
## 406      3114
## 407      3176
## 408      3408
## 409      3753
## 410      3897
## 411      3948
## 412      4014
## 413      4018
## 414      4022
## 415      4025
## 416      4306
## 417      4308
## 418      4447
## 419      4718
## 420      4963
## 421      4995
## 422      5266
## 423      5299
## 424      5349
## 425      5464
## 426      5669
## 427      5679
## 428      5816
## 429      5995
## 430      6218
## 431      6373
## 432      6377
## 433      6502
## 434      6711
## 435      6942
## 436      8376
## 437      8464
## 438      8622
## 439      8636
## 440      8644
## 441     30707
## 442     30749
## 443     30793
## 444     33166
## 445     33679
## 446     34162
## 447     35836
## 448     40819
## 449     41566
## 450     41569
## 451     48385
## 452       111
## 453       158
## 454       173
## 455       293
## 456       596
## 457       903
## 458      1204
## 459      1250
## 460      1259
## 461      1276
## 462      1285
## 463      1358
## 464      1639
## 465      1687
## 466      1747
## 467      1876
## 468      1909
## 469      2001
## 470      2019
## 471      2072
## 472      2174
## 473      2502
## 474      2528
## 475      2529
## 476      2571
## 477      2657
## 478      2692
## 479      2723
## 480      2761
## 481      2890
## 482      3052
## 483      3114
## 484      3300
## 485      3751
## 486      4641
## 487      4975
## 488      5952
## 489      7090
## 490      7153
## 491      7361
## 492      8368
## 493      8636
## 494      8784
## 495      8874
## 496         1
## 497        10
## 498        21
## 499        31
## 500        34
## 501        40
## 502       104
## 503       110
## 504       112
## 505       141
## 506       151
## 507       198
## 508       207
## 509       260
## 510       272
## 511       316
## 512       318
## 513       329
## 514       333
## 515       345
## 516       355
## 517       356
## 518       357
## 519       364
## 520       367
## 521       377
## 522       380
## 523       480
## 524       500
## 525       534
## 526       539
## 527       541
## 528       551
## 529       588
## 530       589
## 531       590
## 532       592
## 533       594
## 534       595
## 535       610
## 536       671
## 537       708
## 538       720
## 539       724
## 540       736
## 541       737
## 542       745
## 543       780
## 544       786
## 545       924
## 546      1036
## 547      1073
## 548      1079
## 549      1080
## 550      1097
## 551      1125
## 552      1129
## 553      1136
## 554      1148
## 555      1196
## 556      1197
## 557      1198
## 558      1210
## 559      1220
## 560      1223
## 561      1225
## 562      1231
## 563      1240
## 564      1242
## 565      1270
## 566      1275
## 567      1278
## 568      1287
## 569      1288
## 570      1291
## 571      1298
## 572      1302
## 573      1307
## 574      1353
## 575      1371
## 576      1372
## 577      1373
## 578      1374
## 579      1375
## 580      1376
## 581      1394
## 582      1405
## 583      1408
## 584        32
## 585        45
## 586        47
## 587        50
## 588       110
## 589       260
## 590       282
## 591       296
## 592       318
## 593       356
## 594       457
## 595       520
## 596       524
## 597       527
## 598       543
## 599       589
## 600       593
## 601       628
## 602       805
## 603       858
## 604      1196
## 605      1197
## 606      1198
## 607      1210
## 608      1219
## 609      1225
## 610      1258
## 611      1259
## 612      1265
## 613      1270
## 614      1291
## 615      1302
## 616      1358
## 617      1387
## 618      1393
## 619      1500
## 620      1552
## 621      1617
## 622      1625
## 623      1674
## 624      1704
## 625      1754
## 626      1777
## 627      1876
## 628      1961
## 629      2028
## 630      2100
## 631      2139
## 632      2194
## 633      2302
## 634      2324
## 635      2329
## 636      2353
## 637      2423
## 638      2502
## 639      2571
## 640      2716
## 641      2762
## 642      2770
## 643      2791
## 644      2797
## 645      2804
## 646      2841
## 647      2858
## 648      2918
## 649      2959
## 650      3147
## 651      3578
## 652      3916
## 653      3948
## 654      3996
## 655      4011
## 656      4019
## 657      4034
## 658      4226
## 659      4262
## 660      4448
## 661      4886
## 662      4896
## 663      4963
## 664      4973
## 665      4993
## 666      4995
## 667      5064
## 668      5378
## 669      5445
## 670      5464
## 671      5630
## 672      5650
## 673      5669
## 674      5952
## 675      5989
## 676      6377
## 677      6378
## 678      6870
## 679      6874
## 680      6879
## 681      7143
## 682      7153
## 683      7361
## 684      7438
## 685      8533
## 686      8784
## 687      8873
## 688      8874
## 689     32587
## 690     33166
## 691     33493
## 692     33794
## 693     34162
## 694     40583
## 695     40819
## 696     42007
## 697     43556
## 698     43871
## 699     44004
## 700         1
## 701        17
## 702        26
## 703        36
## 704        47
## 705       318
## 706       497
## 707       515
## 708       527
## 709       534
## 710       593
## 711       608
## 712       733
## 713      1059
## 714      1177
## 715      1357
## 716      1358
## 717      1411
## 718      1541
## 719      1584
## 720      1680
## 721      1682
## 722      1704
## 723      1721
## 724      1784
## 725      2028
## 726      2125
## 727      2140
## 728      2249
## 729      2268
## 730      2273
## 731      2278
## 732      2291
## 733      2294
## 734      2302
## 735      2391
## 736      2396
## 737      2427
## 738      2490
## 739      2501
## 740      2539
## 741      2571
## 742      2628
## 743      2762
## 744      2857
## 745        50
## 746       152
## 747       318
## 748       344
## 749       345
## 750       592
## 751       735
## 752      1036
## 753      1089
## 754      1101
## 755      1127
## 756      1196
## 757      1197
## 758      1198
## 759      1200
## 760      1210
## 761      1220
## 762      1240
## 763      1291
## 764      1358
## 765      1423
## 766      1459
## 767      1499
## 768      1611
## 769      1690
## 770      1704
## 771      1719
## 772      1887
## 773      1923
## 774      2108
## 775      2344
## 776      2406
## 777      2410
## 778      2539
## 779      2571
## 780      2826
## 781      2827
## 782      2840
## 783      2841
## 784      2881
## 785      2890
## 786      2907
## 787      2926
## 788      2995
## 789      3005
## 790      3019
## 791        50
## 792        70
## 793       126
## 794       169
## 795       296
## 796       778
## 797       785
## 798       923
## 799      1027
## 800      1201
## 801      1408
## 802      1918
## 803      2042
## 804      2596
## 805      2762
## 806      3424
## 807      5669
## 808      6598
## 809     26614
## 810     48516
## 811     51084
## 812     58295
## 813     71211
## 814     77455
## 815     79132
## 816     80489
## 817     80906
## 818     81158
## 819     81562
## 820     88129
## 821     91500
## 822     91529
## 823     91548
## 824     96079
## 825     96861
## 826     97938
## 827    104841
## 828    106487
## 829       253
## 830       529
## 831       538
## 832       608
## 833       673
## 834       736
## 835       737
## 836      1028
## 837      1032
## 838      1077
## 839      1197
## 840      1215
## 841      1220
## 842      1230
## 843      1235
## 844      1295
## 845      1374
## 846      1387
## 847      1639
## 848      1732
## 849      2259
## 850      2355
## 851      2460
## 852      2529
## 853      2668
## 854      2959
## 855      3146
## 856      3148
## 857      3176
## 858      3179
## 859      3298
## 860      3324
## 861      3408
## 862      3474
## 863      3770
## 864      3773
## 865      3780
## 866      3791
## 867      3793
## 868      3794
## 869      3798
## 870      3799
## 871      3801
## 872      3809
## 873      3825
## 874      3827
## 875      3829
## 876      3831
## 877      3841
## 878      3844
## 879      3861
## 880      3863
## 881      3864
## 882      3865
## 883      3869
## 884      3871
## 885      3873
## 886      3879
## 887      3885
## 888      3886
## 889      6184
## 890         1
## 891        47
## 892       110
## 893       277
## 894       296
## 895       318
## 896       356
## 897       362
## 898       480
## 899       524
## 900       527
## 901       531
## 902       587
## 903       590
## 904       914
## 905       919
## 906      1027
## 907      1259
## 908      1265
## 909      1918
## 910      1961
## 911      2355
## 912      2571
## 913      2572
## 914      2761
## 915      2762
## 916      2804
## 917      2908
## 918      2918
## 919      3114
## 920      3147
## 921      3255
## 922      3396
## 923      3624
## 924      4306
## 925      4310
## 926      4321
## 927      4718
## 928      4878
## 929      4886
## 930      4993
## 931      5989
## 932      6377
## 933      7361
## 934      7502
## 935     54286
## 936     58559
## 937     64614
## 938     69757
## 939     78499
## 940     81834
## 941     88125
## 942     93363
## 943       594
## 944      1196
## 945      1721
## 946      2038
## 947      2355
## 948      2394
## 949      2628
## 950      2683
## 951      2716
## 952      2720
## 953      2724
## 954      2861
## 955      3114
## 956      3157
## 957      3175
## 958      3354
## 959      3623
## 960      3751
## 961      3986
## 962      3988
## 963         1
## 964         2
## 965         5
## 966         6
## 967        10
## 968        11
## 969        14
## 970        16
## 971        17
## 972        19
## 973        21
## 974        22
## 975        25
## 976        32
## 977        34
## 978        36
## 979        39
## 980        44
## 981        47
## 982        50
## 983        52
## 984        62
## 985        70
## 986        82
## 987        94
## 988        95
## 989       101
## 990       104
## 991       107
## 992       110
## 993       111
## 994       112
## 995       123
## 996       125
## 997       145
## 998       149
## 999       150
## 1000      153
## 1001      157
## 1002      160
## 1003      161
## 1004      162
## 1005      163
## 1006      164
## 1007      165
## 1008      170
## 1009      172
## 1010      175
## 1011      176
## 1012      180
## 1013      185
## 1014      193
## 1015      196
## 1016      198
## 1017      208
## 1018      214
## 1019      215
## 1020      216
## 1021      223
## 1022      225
## 1023      230
## 1024      231
## 1025      232
## 1026      233
## 1027      235
## 1028      237
## 1029      246
## 1030      247
## 1031      252
## 1032      253
## 1033      260
## 1034      265
## 1035      288
## 1036      292
## 1037      293
## 1038      296
## 1039      300
## 1040      306
## 1041      307
## 1042      308
## 1043      316
## 1044      317
## 1045      318
## 1046      322
## 1047      329
## 1048      335
## 1049      339
## 1050      342
## 1051      344
## 1052      349
## 1053      353
## 1054      355
## 1055      356
## 1056      357
## 1057      364
## 1058      367
## 1059      370
## 1060      371
## 1061      372
## 1062      373
## 1063      377
## 1064      380
## 1065      382
## 1066      429
## 1067      431
## 1068      434
## 1069      435
## 1070      440
## 1071      441
## 1072      442
## 1073      454
## 1074      457
## 1075      466
## 1076      471
## 1077      474
## 1078      480
## 1079      481
## 1080      483
## 1081      485
## 1082      494
## 1083      500
## 1084      508
## 1085      509
## 1086      520
## 1087      524
## 1088      527
## 1089      535
## 1090      539
## 1091      540
## 1092      541
## 1093      543
## 1094      549
## 1095      551
## 1096      555
## 1097      556
## 1098      562
## 1099      574
## 1100      586
## 1101      587
## 1102      588
## 1103      589
## 1104      590
## 1105      592
## 1106      593
## 1107      594
## 1108      597
## 1109      608
## 1110      610
## 1111      628
## 1112      647
## 1113      648
## 1114      663
## 1115      665
## 1116      674
## 1117      680
## 1118      708
## 1119      720
## 1120      724
## 1121      733
## 1122      736
## 1123      745
## 1124      748
## 1125      750
## 1126      762
## 1127      778
## 1128      780
## 1129      784
## 1130      785
## 1131      786
## 1132      788
## 1133      799
## 1134      800
## 1135      802
## 1136      803
## 1137      804
## 1138      832
## 1139      836
## 1140      851
## 1141      858
## 1142      866
## 1143      899
## 1144      903
## 1145      904
## 1146      908
## 1147      909
## 1148      910
## 1149      911
## 1150      912
## 1151      913
## 1152      914
## 1153      916
## 1154      919
## 1155      920
## 1156      922
## 1157      923
## 1158      924
## 1159      926
## 1160      931
## 1161      953
## 1162      994
## 1163     1020
## 1164     1035
## 1165     1036
## 1166     1041
## 1167     1047
## 1168     1059
## 1169     1060
## 1170     1073
## 1171     1079
## 1172     1084
## 1173     1088
## 1174     1089
## 1175     1092
## 1176     1093
## 1177     1094
## 1178     1095
## 1179     1097
## 1180     1100
## 1181     1101
## 1182     1120
## 1183     1127
## 1184     1131
## 1185     1136
## 1186     1147
## 1187     1148
## 1188     1171
## 1189     1173
## 1190     1176
## 1191     1178
## 1192     1179
## 1193     1183
## 1194     1186
## 1195     1189
## 1196     1193
## 1197     1196
## 1198     1197
## 1199     1198
## 1200     1199
## 1201     1200
## 1202     1201
## 1203     1203
## 1204     1204
## 1205     1206
## 1206     1207
## 1207     1208
## 1208     1209
## 1209     1210
## 1210     1211
## 1211     1212
## 1212     1213
## 1213     1214
## 1214     1215
## 1215     1217
## 1216     1218
## 1217     1219
## 1218     1220
## 1219     1221
## 1220     1222
## 1221     1223
## 1222     1225
## 1223     1228
## 1224     1230
## 1225     1231
## 1226     1233
## 1227     1234
## 1228     1235
## 1229     1240
## 1230     1243
## 1231     1244
## 1232     1246
## 1233     1247
## 1234     1248
## 1235     1249
## 1236     1250
## 1237     1251
## 1238     1252
## 1239     1254
## 1240     1258
## 1241     1259
## 1242     1260
## 1243     1262
## 1244     1263
## 1245     1264
## 1246     1265
## 1247     1266
## 1248     1267
## 1249     1270
## 1250     1272
## 1251     1276
## 1252     1280
## 1253     1281
## 1254     1283
## 1255     1284
## 1256     1287
## 1257     1288
## 1258     1289
## 1259     1290
## 1260     1291
## 1261     1293
## 1262     1297
## 1263     1302
## 1264     1303
## 1265     1304
## 1266     1307
## 1267     1320
## 1268     1333
## 1269     1334
## 1270     1339
## 1271     1342
## 1272     1356
## 1273     1358
## 1274     1361
## 1275     1370
## 1276     1377
## 1277     1380
## 1278     1385
## 1279     1387
## 1280     1391
## 1281     1393
## 1282     1394
## 1283     1396
## 1284     1405
## 1285     1407
## 1286     1449
## 1287     1464
## 1288     1466
## 1289     1476
## 1290     1479
## 1291     1483
## 1292     1484
## 1293     1485
## 1294     1500
## 1295     1502
## 1296     1503
## 1297     1513
## 1298     1517
## 1299     1527
## 1300     1529
## 1301     1544
## 1302     1546
## 1303     1552
## 1304     1556
## 1305     1562
## 1306     1569
## 1307     1573
## 1308     1580
## 1309     1584
## 1310     1589
## 1311     1597
## 1312     1608
## 1313     1610
## 1314     1615
## 1315     1616
## 1316     1617
## 1317     1625
## 1318     1635
## 1319     1639
## 1320     1644
## 1321     1645
## 1322     1649
## 1323     1653
## 1324     1663
## 1325     1673
## 1326     1676
## 1327     1680
## 1328     1682
## 1329     1689
## 1330     1690
## 1331     1694
## 1332     1704
## 1333     1717
## 1334     1719
## 1335     1721
## 1336     1722
## 1337     1729
## 1338     1732
## 1339     1735
## 1340     1747
## 1341     1748
## 1342     1752
## 1343     1753
## 1344     1754
## 1345     1777
## 1346     1779
## 1347     1784
## 1348     1792
## 1349     1805
## 1350     1807
## 1351     1810
## 1352     1816
## 1353     1827
## 1354     1831
## 1355     1834
## 1356     1836
## 1357     1845
## 1358     1859
## 1359     1860
## 1360     1862
## 1361     1876
## 1362     1882
## 1363     1883
## 1364     1889
## 1365     1895
## 1366     1897
## 1367     1904
## 1368     1909
## 1369     1912
## 1370     1914
## 1371     1917
## 1372     1921
## 1373     1923
## 1374     1945
## 1375     1950
## 1376     1952
## 1377     1953
## 1378     1954
## 1379     1955
## 1380     1956
## 1381     1961
## 1382     1962
## 1383     1964
## 1384     1968
## 1385     1994
## 1386     1997
## 1387     2000
## 1388     2003
## 1389     2005
## 1390     2006
## 1391     2010
## 1392     2011
## 1393     2012
## 1394     2018
## 1395     2019
## 1396     2020
## 1397     2025
## 1398     2028
## 1399     2041
## 1400     2054
## 1401     2058
## 1402     2060
## 1403     2064
## 1404     2076
## 1405     2100
## 1406     2105
## 1407     2108
## 1408     2115
## 1409     2124
## 1410     2126
## 1411     2133
## 1412     2134
## 1413     2140
## 1414     2145
## 1415     2150
## 1416     2160
## 1417     2161
## 1418     2167
## 1419     2174
## 1420     2186
## 1421     2194
## 1422     2231
## 1423     2232
## 1424     2243
## 1425     2248
## 1426     2268
## 1427     2269
## 1428     2273
## 1429     2278
## 1430     2282
## 1431     2288
## 1432     2289
## 1433     2291
## 1434     2294
## 1435     2302
## 1436     2303
## 1437     2311
## 1438     2313
## 1439     2318
## 1440     2321
## 1441     2324
## 1442     2329
## 1443     2333
## 1444     2334
## 1445     2336
## 1446     2340
## 1447     2351
## 1448     2353
## 1449     2355
## 1450     2357
## 1451     2360
## 1452     2366
## 1453     2369
## 1454     2371
## 1455     2378
## 1456     2387
## 1457     2391
## 1458     2395
## 1459     2396
## 1460     2405
## 1461     2406
## 1462     2407
## 1463     2413
## 1464     2424
## 1465     2427
## 1466     2428
## 1467     2439
## 1468     2447
## 1469     2455
## 1470     2467
## 1471     2478
## 1472     2490
## 1473     2501
## 1474     2502
## 1475     2505
## 1476     2528
## 1477     2539
## 1478     2541
## 1479     2542
## 1480     2560
## 1481     2568
## 1482     2571
## 1483     2572
## 1484     2574
## 1485     2575
## 1486     2579
## 1487     2580
## 1488     2581
## 1489     2585
## 1490     2594
## 1491     2598
## 1492     2599
## 1493     2600
## 1494     2605
## 1495     2617
## 1496     2624
## 1497     2628
## 1498     2640
## 1499     2648
## 1500     2657
## 1501     2671
## 1502     2678
## 1503     2683
## 1504     2686
## 1505     2692
## 1506     2699
## 1507     2700
## 1508     2701
## 1509     2702
## 1510     2706
## 1511     2707
## 1512     2709
## 1513     2710
## 1514     2712
## 1515     2713
## 1516     2716
## 1517     2717
## 1518     2718
## 1519     2722
## 1520     2723
## 1521     2726
## 1522     2729
## 1523     2759
## 1524     2761
## 1525     2762
## 1526     2763
## 1527     2769
## 1528     2770
## 1529     2791
## 1530     2795
## 1531     2797
## 1532     2803
## 1533     2819
## 1534     2840
## 1535     2841
## 1536     2858
## 1537     2871
## 1538     2881
## 1539     2890
## 1540     2905
## 1541     2908
## 1542     2912
## 1543     2915
## 1544     2916
## 1545     2918
## 1546     2925
## 1547     2947
## 1548     2949
## 1549     2952
## 1550     2959
## 1551     2973
## 1552     2976
## 1553     2983
## 1554     2985
## 1555     2987
## 1556     2990
## 1557     2993
## 1558     2997
## 1559     3000
## 1560     3004
## 1561     3005
## 1562     3006
## 1563     3007
## 1564     3008
## 1565     3010
## 1566     3019
## 1567     3020
## 1568     3030
## 1569     3033
## 1570     3039
## 1571     3044
## 1572     3052
## 1573     3060
## 1574     3077
## 1575     3081
## 1576     3082
## 1577     3083
## 1578     3089
## 1579     3101
## 1580     3104
## 1581     3107
## 1582     3108
## 1583     3113
## 1584     3114
## 1585     3128
## 1586     3129
## 1587     3134
## 1588     3146
## 1589     3147
## 1590     3148
## 1591     3150
## 1592     3152
## 1593     3157
## 1594     3160
## 1595     3168
## 1596     3173
## 1597     3174
## 1598     3175
## 1599     3176
## 1600     3181
## 1601     3182
## 1602     3185
## 1603     3210
## 1604     3219
## 1605     3225
## 1606     3246
## 1607     3250
## 1608     3253
## 1609     3255
## 1610     3256
## 1611     3261
## 1612     3262
## 1613     3265
## 1614     3266
## 1615     3267
## 1616     3272
## 1617     3273
## 1618     3275
## 1619     3285
## 1620     3286
## 1621     3298
## 1622     3300
## 1623     3301
## 1624     3307
## 1625     3316
## 1626     3317
## 1627     3318
## 1628     3320
## 1629     3328
## 1630     3358
## 1631     3361
## 1632     3362
## 1633     3386
## 1634     3390
## 1635     3408
## 1636     3409
## 1637     3418
## 1638     3421
## 1639     3429
## 1640     3435
## 1641     3448
## 1642     3461
## 1643     3462
## 1644     3471
## 1645     3476
## 1646     3477
## 1647     3481
## 1648     3484
## 1649     3489
## 1650     3499
## 1651     3504
## 1652     3505
## 1653     3510
## 1654     3512
## 1655     3527
## 1656     3534
## 1657     3535
## 1658     3536
## 1659     3538
## 1660     3543
## 1661     3552
## 1662     3555
## 1663     3556
## 1664     3566
## 1665     3569
## 1666     3571
## 1667     3577
## 1668     3578
## 1669     3598
## 1670     3617
## 1671     3618
## 1672     3623
## 1673     3624
## 1674     3626
## 1675     3633
## 1676     3634
## 1677     3635
## 1678     3638
## 1679     3639
## 1680     3671
## 1681     3683
## 1682     3707
## 1683     3717
## 1684     3728
## 1685     3730
## 1686     3735
## 1687     3742
## 1688     3745
## 1689     3747
## 1690     3751
## 1691     3752
## 1692     3755
## 1693     3763
## 1694     3783
## 1695     3785
## 1696     3786
## 1697     3787
## 1698     3788
## 1699     3793
## 1700     3794
## 1701     3798
## 1702     3800
## 1703     3801
## 1704     3823
## 1705     3825
## 1706     3826
## 1707     3827
## 1708     3852
## 1709     3854
## 1710     3861
## 1711     3863
## 1712     3868
## 1713     3882
## 1714     3892
## 1715     3893
## 1716     3896
## 1717     3897
## 1718     3910
## 1719     3911
## 1720     3915
## 1721     3943
## 1722     3948
## 1723     3949
## 1724     3952
## 1725     3956
## 1726     3967
## 1727     3968
## 1728     3969
## 1729     3977
## 1730     3979
## 1731     3981
## 1732     3983
## 1733     3984
## 1734     3986
## 1735     3987
## 1736     3988
## 1737     3989
## 1738     3990
## 1739     3993
## 1740     3994
## 1741     3996
## 1742     3998
## 1743     3999
## 1744     4005
## 1745     4006
## 1746     4007
## 1747     4010
## 1748     4011
## 1749     4014
## 1750     4015
## 1751     4017
## 1752     4018
## 1753     4019
## 1754     4020
## 1755     4021
## 1756     4022
## 1757     4023
## 1758     4025
## 1759     4027
## 1760     4029
## 1761     4030
## 1762     4033
## 1763     4034
## 1764     4036
## 1765     4037
## 1766     4052
## 1767     4055
## 1768     4056
## 1769     4066
## 1770     4079
## 1771     4082
## 1772     4085
## 1773     4121
## 1774     4144
## 1775     4148
## 1776     4149
## 1777     4158
## 1778     4161
## 1779     4167
## 1780     4168
## 1781     4210
## 1782     4223
## 1783     4225
## 1784     4226
## 1785     4232
## 1786     4235
## 1787     4238
## 1788     4239
## 1789     4246
## 1790     4247
## 1791     4262
## 1792     4270
## 1793     4271
## 1794     4299
## 1795     4302
## 1796     4306
## 1797     4308
## 1798     4310
## 1799     4321
## 1800     4322
## 1801     4343
## 1802     4344
## 1803     4351
## 1804     4361
## 1805     4367
## 1806     4369
## 1807     4370
## 1808     4372
## 1809     4378
## 1810     4380
## 1811     4381
## 1812     4383
## 1813     4386
## 1814     4388
## 1815     4410
## 1816     4446
## 1817     4447
## 1818     4448
## 1819     4450
## 1820     4451
## 1821     4489
## 1822     4546
## 1823     4571
## 1824     4621
## 1825     4623
## 1826     4638
## 1827     4639
## 1828     4641
## 1829     4642
## 1830     4643
## 1831     4654
## 1832     4658
## 1833     4666
## 1834     4675
## 1835     4678
## 1836     4679
## 1837     4700
## 1838     4701
## 1839     4713
## 1840     4718
## 1841     4719
## 1842     4720
## 1843     4723
## 1844     4727
## 1845     4728
## 1846     4731
## 1847     4734
## 1848     4738
## 1849     4744
## 1850     4776
## 1851     4816
## 1852     4823
## 1853     4844
## 1854     4848
## 1855     4873
## 1856     4878
## 1857     4881
## 1858     4886
## 1859     4888
## 1860     4890
## 1861     4896
## 1862     4901
## 1863     4902
## 1864     4903
## 1865     4914
## 1866     4958
## 1867     4963
## 1868     4973
## 1869     4974
## 1870     4975
## 1871     4979
## 1872     4992
## 1873     4993
## 1874     4995
## 1875     5000
## 1876     5008
## 1877     5010
## 1878     5013
## 1879     5015
## 1880     5026
## 1881     5060
## 1882     5066
## 1883     5071
## 1884     5074
## 1885     5075
## 1886     5110
## 1887     5120
## 1888     5128
## 1889     5135
## 1890     5170
## 1891     5171
## 1892     5218
## 1893     5219
## 1894     5220
## 1895     5222
## 1896     5225
## 1897     5254
## 1898     5266
## 1899     5269
## 1900     5279
## 1901     5283
## 1902     5291
## 1903     5293
## 1904     5296
## 1905     5298
## 1906     5299
## 1907     5308
## 1908     5313
## 1909     5319
## 1910     5339
## 1911     5346
## 1912     5349
## 1913     5363
## 1914     5364
## 1915     5377
## 1916     5378
## 1917     5388
## 1918     5391
## 1919     5400
## 1920     5410
## 1921     5416
## 1922     5418
## 1923     5419
## 1924     5444
## 1925     5445
## 1926     5449
## 1927     5458
## 1928     5459
## 1929     5463
## 1930     5464
## 1931     5477
## 1932     5478
## 1933     5481
## 1934     5500
## 1935     5502
## 1936     5504
## 1937     5507
## 1938     5508
## 1939     5515
## 1940     5524
## 1941     5528
## 1942     5541
## 1943     5553
## 1944     5568
## 1945     5577
## 1946     5617
## 1947     5618
## 1948     5620
## 1949     5630
## 1950     5650
## 1951     5662
## 1952     5669
## 1953     5673
## 1954     5679
## 1955     5791
## 1956     5792
## 1957     5809
## 1958     5816
## 1959     5872
## 1960     5878
## 1961     5893
## 1962     5902
## 1963     5903
## 1964     5909
## 1965     5945
## 1966     5952
## 1967     5954
## 1968     5956
## 1969     5957
## 1970     5959
## 1971     5968
## 1972     5989
## 1973     5991
## 1974     5995
## 1975     6003
## 1976     6016
## 1977     6025
## 1978     6037
## 1979     6059
## 1980     6155
## 1981     6157
## 1982     6180
## 1983     6188
## 1984     6203
## 1985     6218
## 1986     6271
## 1987     6281
## 1988     6283
## 1989     6287
## 1990     6296
## 1991     6299
## 1992     6303
## 1993     6327
## 1994     6331
## 1995     6333
## 1996     6365
## 1997     6373
## 1998     6377
## 1999     6378
## 2000     6380
## 2001     6385
## 2002     6433
## 2003     6440
## 2004     6442
## 2005     6464
## 2006     6502
## 2007     6503
## 2008     6534
## 2009     6537
## 2010     6539
## 2011     6547
## 2012     6552
## 2013     6586
## 2014     6593
## 2015     6620
## 2016     6641
## 2017     6650
## 2018     6708
## 2019     6711
## 2020     6754
## 2021     6773
## 2022     6783
## 2023     6787
## 2024     6816
## 2025     6820
## 2026     6863
## 2027     6867
## 2028     6870
## 2029     6873
## 2030     6874
## 2031     6875
## 2032     6879
## 2033     6885
## 2034     6932
## 2035     6934
## 2036     6936
## 2037     6942
## 2038     6944
## 2039     6947
## 2040     6953
## 2041     6957
## 2042     6961
## 2043     6975
## 2044     6978
## 2045     6979
## 2046     6989
## 2047     7003
## 2048     7004
## 2049     7008
## 2050     7010
## 2051     7028
## 2052     7034
## 2053     7090
## 2054     7123
## 2055     7132
## 2056     7143
## 2057     7147
## 2058     7153
## 2059     7156
## 2060     7162
## 2061     7173
## 2062     7199
## 2063     7254
## 2064     7265
## 2065     7293
## 2066     7317
## 2067     7323
## 2068     7325
## 2069     7327
## 2070     7346
## 2071     7348
## 2072     7361
## 2073     7371
## 2074     7373
## 2075     7438
## 2076     7444
## 2077     7445
## 2078     7451
## 2079     7458
## 2080     7484
## 2081     7487
## 2082     7560
## 2083     7569
## 2084     7573
## 2085     7698
## 2086     7792
## 2087     7925
## 2088     8011
## 2089     8264
## 2090     8360
## 2091     8361
## 2092     8366
## 2093     8368
## 2094     8376
## 2095     8464
## 2096     8528
## 2097     8529
## 2098     8531
## 2099     8581
## 2100     8582
## 2101     8622
## 2102     8623
## 2103     8636
## 2104     8638
## 2105     8641
## 2106     8644
## 2107     8645
## 2108     8665
## 2109     8781
## 2110     8784
## 2111     8798
## 2112     8807
## 2113     8865
## 2114     8874
## 2115     8910
## 2116     8914
## 2117     8917
## 2118     8930
## 2119     8948
## 2120     8949
## 2121     8950
## 2122     8957
## 2123     8958
## 2124     8961
## 2125     8970
## 2126     8972
## 2127     8974
## 2128     8984
## 2129    26131
## 2130    26152
## 2131    26587
## 2132    26729
## 2133    26810
## 2134    27020
## 2135    27478
## 2136    27660
## 2137    27773
## 2138    27821
## 2139    27846
## 2140    27904
## 2141    30707
## 2142    30749
## 2143    30810
## 2144    30812
## 2145    30825
## 2146    31685
## 2147    31696
## 2148    32587
## 2149    33004
## 2150    33154
## 2151    33166
## 2152    33493
## 2153    33679
## 2154    33794
## 2155    34048
## 2156    34072
## 2157    34150
## 2158    34162
## 2159    34319
## 2160    34334
## 2161    34405
## 2162    34542
## 2163    35836
## 2164    35957
## 2165    36517
## 2166    36529
## 2167    37386
## 2168    37729
## 2169    37741
## 2170    38061
## 2171    38886
## 2172    39292
## 2173    40583
## 2174    40815
## 2175    41997
## 2176    42718
## 2177    44004
## 2178    44191
## 2179    44195
## 2180    44199
## 2181    44555
## 2182    44597
## 2183    44665
## 2184    44761
## 2185    44788
## 2186    45186
## 2187    45447
## 2188    45499
## 2189    45517
## 2190    45666
## 2191    45672
## 2192    45720
## 2193    45722
## 2194    45728
## 2195    45950
## 2196    46530
## 2197    46578
## 2198    46723
## 2199    46970
## 2200    46972
## 2201    46976
## 2202    47610
## 2203    47999
## 2204    48043
## 2205    48082
## 2206    48385
## 2207    48394
## 2208    48516
## 2209    48774
## 2210    48780
## 2211    49272
## 2212    49278
## 2213    49286
## 2214    50851
## 2215    50872
## 2216    51080
## 2217    51255
## 2218    51540
## 2219    51662
## 2220    52245
## 2221    52328
## 2222    52604
## 2223    52722
## 2224    52973
## 2225    53322
## 2226    53464
## 2227    53894
## 2228    53972
## 2229    53996
## 2230    54001
## 2231    54272
## 2232    54286
## 2233    54372
## 2234    54503
## 2235    54881
## 2236    55247
## 2237    55269
## 2238    55276
## 2239    55442
## 2240    55765
## 2241    55820
## 2242    55830
## 2243    56174
## 2244    56367
## 2245    56563
## 2246    56775
## 2247    56782
## 2248    57368
## 2249    57640
## 2250    57669
## 2251    58025
## 2252    58295
## 2253    58559
## 2254    58998
## 2255    59126
## 2256    59315
## 2257    59369
## 2258    59519
## 2259    59615
## 2260    59784
## 2261    59900
## 2262    60037
## 2263    60040
## 2264    60069
## 2265    60072
## 2266    60074
## 2267    60126
## 2268    60295
## 2269    60684
## 2270    60766
## 2271    61024
## 2272    61132
## 2273    61323
## 2274    61394
## 2275    62374
## 2276    62434
## 2277    62511
## 2278    63082
## 2279    63113
## 2280    63131
## 2281    63859
## 2282    64620
## 2283    64839
## 2284    64957
## 2285    65642
## 2286    65802
## 2287    66097
## 2288    66130
## 2289    66203
## 2290    66596
## 2291    66665
## 2292    66934
## 2293    67087
## 2294    67193
## 2295    67665
## 2296    67734
## 2297    67997
## 2298    68157
## 2299    68159
## 2300    68237
## 2301    68319
## 2302    68324
## 2303    68358
## 2304    68791
## 2305    68793
## 2306    68954
## 2307    69122
## 2308    69306
## 2309    69406
## 2310    69436
## 2311    69481
## 2312    69524
## 2313    69526
## 2314    70286
## 2315    70293
## 2316    70336
## 2317    70697
## 2318    70862
## 2319    71211
## 2320    71264
## 2321    71282
## 2322    71462
## 2323    71464
## 2324    71535
## 2325    71838
## 2326    72011
## 2327    72226
## 2328    72378
## 2329    72998
## 2330    73017
## 2331    73344
## 2332    74458
## 2333    74649
## 2334    74795
## 2335    74851
## 2336    76077
## 2337    76093
## 2338    76251
## 2339    76293
## 2340    76738
## 2341    77364
## 2342    77455
## 2343    77561
## 2344    78209
## 2345    78469
## 2346    78499
## 2347    78574
## 2348    79057
## 2349    79132
## 2350    79185
## 2351    79242
## 2352    79293
## 2353    79428
## 2354    79695
## 2355    79702
## 2356    80126
## 2357    80185
## 2358    80463
## 2359    80489
## 2360    80862
## 2361    80906
## 2362    81158
## 2363    81191
## 2364    81229
## 2365    81591
## 2366    81782
## 2367    81834
## 2368    81845
## 2369    81847
## 2370    81932
## 2371    82461
## 2372    82854
## 2373    83270
## 2374    83293
## 2375    83349
## 2376    83613
## 2377    83827
## 2378    84152
## 2379    84374
## 2380    84392
## 2381    84954
## 2382    85414
## 2383    85774
## 2384    86190
## 2385    86332
## 2386    86644
## 2387    86781
## 2388    86833
## 2389    86882
## 2390    86898
## 2391    86911
## 2392    87222
## 2393    87232
## 2394    87304
## 2395    87306
## 2396    87430
## 2397    87485
## 2398    87520
## 2399    87869
## 2400    87930
## 2401    88125
## 2402    88129
## 2403    88140
## 2404    88163
## 2405    88356
## 2406    88744
## 2407    88950
## 2408    89090
## 2409    89337
## 2410    89470
## 2411    89492
## 2412    89745
## 2413    89840
## 2414    90249
## 2415    90266
## 2416    90428
## 2417    90439
## 2418    90531
## 2419    90600
## 2420    90603
## 2421    90647
## 2422    90746
## 2423    90866
## 2424    90870
## 2425    91500
## 2426    91505
## 2427    91529
## 2428    91535
## 2429    91542
## 2430    91630
## 2431    91653
## 2432    91658
## 2433    91842
## 2434    91869
## 2435    92420
## 2436    92507
## 2437    93326
## 2438    93363
## 2439    93510
## 2440    93721
## 2441    93831
## 2442    93840
## 2443    94015
## 2444    94018
## 2445    94478
## 2446    94677
## 2447    94777
## 2448    94780
## 2449    94833
## 2450    94864
## 2451    94959
## 2452    95105
## 2453    95167
## 2454    95199
## 2455    95311
## 2456    95443
## 2457    95510
## 2458    95558
## 2459    95875
## 2460    96079
## 2461    96150
## 2462    96488
## 2463    96610
## 2464    96667
## 2465    96737
## 2466    97304
## 2467    97393
## 2468    97866
## 2469    97913
## 2470    97923
## 2471    97938
## 2472    98122
## 2473    98154
## 2474    98809
## 2475    98961
## 2476    99007
## 2477    99112
## 2478    99114
## 2479    99149
## 2480    99468
## 2481    99811
## 2482   100032
## 2483   100083
## 2484   100365
## 2485   100383
## 2486   100517
## 2487   100556
## 2488   100581
## 2489   100714
## 2490   100745
## 2491   101076
## 2492   101112
## 2493   101362
## 2494   101864
## 2495   101895
## 2496   102123
## 2497   102125
## 2498   102445
## 2499   102800
## 2500   102880
## 2501   102903
## 2502   103042
## 2503   103228
## 2504   103249
## 2505   103253
## 2506   103372
## 2507   103810
## 2508   104211
## 2509   104241
## 2510   104272
## 2511   104726
## 2512   104841
## 2513   104879
## 2514   105504
## 2515   106072
## 2516   106111
## 2517   106332
## 2518   106489
## 2519   106782
## 2520   106916
## 2521   106920
## 2522   107348
## 2523   107406
## 2524   107910
## 2525   108188
## 2526   108190
## 2527   108689
## 2528   108729
## 2529   108932
## 2530   108945
## 2531   109187
## 2532   109374
## 2533   109487
## 2534   109673
## 2535   109687
## 2536   109848
## 2537   110102
## 2538   110127
## 2539   110553
## 2540   110730
## 2541   110771
## 2542   111228
## 2543   111360
## 2544   111362
## 2545   111364
## 2546   111443
## 2547   111622
## 2548   111759
## 2549   111781
## 2550   112138
## 2551   112171
## 2552   112183
## 2553   112370
## 2554   112552
## 2555   112556
## 2556   112623
## 2557   112788
## 2558   112852
## 2559   112940
## 2560   113345
## 2561   113348
## 2562   113378
## 2563   113741
## 2564   114180
## 2565   114635
## 2566   115149
## 2567   115502
## 2568   115569
## 2569   115617
## 2570   115713
## 2571   116161
## 2572   116797
## 2573   116799
## 2574   116823
## 2575   116897
## 2576   117176
## 2577   117529
## 2578   117533
## 2579   118696
## 2580   119141
## 2581   119145
## 2582   120466
## 2583   120799
## 2584   121171
## 2585   121231
## 2586   122882
## 2587   122886
## 2588   122890
## 2589   122892
## 2590   122900
## 2591   122902
## 2592   122904
## 2593   122920
## 2594   122924
## 2595   127136
## 2596   128360
## 2597   129937
## 2598   130452
## 2599   130490
## 2600   130576
## 2601   130634
## 2602   131013
## 2603   132046
## 2604   132480
## 2605   132796
## 2606   132961
## 2607   134130
## 2608   134368
## 2609   134393
## 2610   134853
## 2611   135133
## 2612   135436
## 2613   135567
## 2614   135569
## 2615   136020
## 2616   136562
## 2617   136864
## 2618   137337
## 2619   137857
## 2620   138036
## 2621   139385
## 2622   139644
## 2623   139757
## 2624   139855
## 2625   140110
## 2626   140174
## 2627   140267
## 2628   140711
## 2629   140928
## 2630   142488
## 2631   142507
## 2632   143385
## 2633   145839
## 2634   145935
## 2635   146656
## 2636   148626
## 2637   149352
## 2638   149354
## 2639   149406
## 2640   152057
## 2641   152077
## 2642   152079
## 2643   152081
## 2644   155820
## 2645   156607
## 2646   156609
## 2647   157200
## 2648   157296
## 2649   157667
## 2650   158238
## 2651   158528
## 2652   159093
## 2653   159690
## 2654   159755
## 2655   159858
## 2656   159972
## 2657   160080
## 2658   160271
## 2659   160563
## 2660   160565
## 2661   160567
## 2662   161155
## 2663       50
## 2664      318
## 2665      337
## 2666      527
## 2667      750
## 2668     1653
## 2669     1704
## 2670     1961
## 2671     2012
## 2672     2278
## 2673     2539
## 2674     2706
## 2675     2797
## 2676     2858
## 2677     3623
## 2678     4014
## 2679     4231
## 2680     4246
## 2681     4718
## 2682     4738
## 2683     4772
## 2684     4823
## 2685     4995
## 2686     5349
## 2687     5445
## 2688     6016
## 2689     6711
## 2690     6874
## 2691     7346
## 2692        6
## 2693       25
## 2694       29
## 2695       32
## 2696       36
## 2697       47
## 2698       50
## 2699      111
## 2700      170
## 2701      172
## 2702      185
## 2703      194
## 2704      198
## 2705      223
## 2706      235
## 2707      247
## 2708      260
## 2709      288
## 2710      293
## 2711      296
## 2712      307
## 2713      318
## 2714      348
## 2715      356
## 2716      377
## 2717      431
## 2718      480
## 2719      482
## 2720      492
## 2721      527
## 2722      541
## 2723      555
## 2724      590
## 2725      593
## 2726      608
## 2727      680
## 2728      714
## 2729      736
## 2730      778
## 2731      858
## 2732      866
## 2733      903
## 2734      904
## 2735      908
## 2736      910
## 2737      912
## 2738      913
## 2739      922
## 2740      923
## 2741      924
## 2742      928
## 2743      930
## 2744      931
## 2745      942
## 2746      965
## 2747     1036
## 2748     1077
## 2749     1079
## 2750     1089
## 2751     1092
## 2752     1095
## 2753     1104
## 2754     1136
## 2755     1173
## 2756     1175
## 2757     1193
## 2758     1199
## 2759     1206
## 2760     1210
## 2761     1212
## 2762     1213
## 2763     1218
## 2764     1220
## 2765     1221
## 2766     1230
## 2767     1232
## 2768     1235
## 2769     1237
## 2770     1240
## 2771     1241
## 2772     1244
## 2773     1245
## 2774     1246
## 2775     1248
## 2776     1249
## 2777     1251
## 2778     1252
## 2779     1255
## 2780     1258
## 2781     1263
## 2782     1265
## 2783     1267
## 2784     1270
## 2785     1298
## 2786     1333
## 2787     1348
## 2788     1396
## 2789     1411
## 2790     1464
## 2791     1466
## 2792     1517
## 2793     1570
## 2794     1580
## 2795     1597
## 2796     1617
## 2797     1625
## 2798     1627
## 2799     1645
## 2800     1653
## 2801     1673
## 2802     1674
## 2803     1704
## 2804     1721
## 2805     1729
## 2806     1732
## 2807     1748
## 2808     1809
## 2809     1834
## 2810     1884
## 2811     1921
## 2812     1923
## 2813     1997
## 2814     2010
## 2815     2011
## 2816     2012
## 2817     2021
## 2818     2023
## 2819     2028
## 2820     2066
## 2821     2067
## 2822     2076
## 2823     2110
## 2824     2117
## 2825     2118
## 2826     2159
## 2827     2160
## 2828     2167
## 2829     2204
## 2830     2232
## 2831     2278
## 2832     2324
## 2833     2329
## 2834     2353
## 2835     2396
## 2836     2455
## 2837     2467
## 2838     2490
## 2839     2502
## 2840     2539
## 2841     2551
## 2842     2571
## 2843     2579
## 2844     2594
## 2845     2600
## 2846     2606
## 2847     2657
## 2848     2672
## 2849     2677
## 2850     2683
## 2851     2692
## 2852     2707
## 2853     2710
## 2854     2712
## 2855     2726
## 2856     2762
## 2857     2791
## 2858     2858
## 2859     2892
## 2860     2916
## 2861     2918
## 2862     2952
## 2863     2959
## 2864     2973
## 2865     2997
## 2866     3018
## 2867     3134
## 2868     3147
## 2869     3160
## 2870     3253
## 2871     3262
## 2872     3267
## 2873     3328
## 2874     3386
## 2875     3408
## 2876     3435
## 2877     3476
## 2878     3503
## 2879     3504
## 2880     3535
## 2881     3578
## 2882     3598
## 2883     3676
## 2884     3730
## 2885     3735
## 2886     3742
## 2887     3785
## 2888     3788
## 2889     3863
## 2890     3949
## 2891     3977
## 2892     3994
## 2893     3996
## 2894     4027
## 2895     4034
## 2896     4037
## 2897     4210
## 2898     4226
## 2899     4239
## 2900     4246
## 2901     4262
## 2902     4306
## 2903     4404
## 2904     4437
## 2905     4546
## 2906     4552
## 2907     4645
## 2908     4725
## 2909     4848
## 2910     4878
## 2911     4886
## 2912     4896
## 2913     4914
## 2914     4963
## 2915     4973
## 2916     4975
## 2917     4993
## 2918     4995
## 2919     5015
## 2920     5017
## 2921     5054
## 2922     5060
## 2923     5062
## 2924     5072
## 2925     5105
## 2926     5137
## 2927     5254
## 2928     5266
## 2929     5299
## 2930     5316
## 2931     5349
## 2932     5388
## 2933     5418
## 2934     5445
## 2935     5464
## 2936     5502
## 2937     5574
## 2938     5608
## 2939     5630
## 2940     5669
## 2941     5679
## 2942     5686
## 2943     5782
## 2944     5809
## 2945     5853
## 2946     5867
## 2947     5881
## 2948     5893
## 2949     5903
## 2950     5949
## 2951     5952
## 2952     6016
## 2953     6059
## 2954     6140
## 2955     6197
## 2956     6214
## 2957     6242
## 2958     6281
## 2959     6287
## 2960     6294
## 2961     6322
## 2962     6323
## 2963     6365
## 2964     6378
## 2965     6383
## 2966     6385
## 2967     6502
## 2968     6503
## 2969     6530
## 2970     6538
## 2971     6584
## 2972     6643
## 2973     6666
## 2974     6708
## 2975     6711
## 2976     6757
## 2977     6774
## 2978     6777
## 2979     6790
## 2980     6858
## 2981     6874
## 2982     6971
## 2983     6975
## 2984     6979
## 2985     6987
## 2986     6993
## 2987     7003
## 2988     7013
## 2989     7022
## 2990     7044
## 2991     7068
## 2992     7069
## 2993     7084
## 2994     7090
## 2995     7115
## 2996     7116
## 2997     7123
## 2998     7135
## 2999     7153
## 3000     7163
## 3001     7223
## 3002     7254
## 3003     7361
## 3004     7371
## 3005     7438
## 3006     7445
## 3007     7587
## 3008     7700
## 3009     7728
## 3010     7771
## 3011     7792
## 3012     7827
## 3013     7981
## 3014     7982
## 3015     7991
## 3016     8195
## 3017     8228
## 3018     8360
## 3019     8370
## 3020     8477
## 3021     8600
## 3022     8620
## 3023     8622
## 3024     8644
## 3025     8665
## 3026     8690
## 3027     8781
## 3028     8783
## 3029     8798
## 3030     8865
## 3031     8874
## 3032     8914
## 3033     8928
## 3034     8950
## 3035     8957
## 3036     8958
## 3037     8973
## 3038     8983
## 3039    27266
## 3040    27317
## 3041    27604
## 3042    27721
## 3043    27773
## 3044    27788
## 3045    27834
## 3046    31410
## 3047    31878
## 3048    31952
## 3049    32587
## 3050    33004
## 3051    33615
## 3052    33683
## 3053    34048
## 3054    34437
## 3055        5
## 3056        6
## 3057        7
## 3058        9
## 3059       14
## 3060       17
## 3061       18
## 3062       25
## 3063       32
## 3064       36
## 3065       52
## 3066       62
## 3067       74
## 3068       76
## 3069       79
## 3070       81
## 3071       85
## 3072       86
## 3073       92
## 3074       95
## 3075      100
## 3076      140
## 3077      141
## 3078      260
## 3079      376
## 3080      494
## 3081      608
## 3082      628
## 3083      640
## 3084      648
## 3085      653
## 3086      707
## 3087      708
## 3088      719
## 3089      733
## 3090      736
## 3091      743
## 3092      748
## 3093      762
## 3094      765
## 3095      780
## 3096      785
## 3097      786
## 3098      788
## 3099      802
## 3100      805
## 3101      818
## 3102      832
## 3103      849
## 3104      852
## 3105      880
## 3106        1
## 3107        2
## 3108        3
## 3109        4
## 3110        6
## 3111        7
## 3112        9
## 3113       10
## 3114       11
## 3115       14
## 3116       16
## 3117       21
## 3118       22
## 3119       23
## 3120       25
## 3121       29
## 3122       32
## 3123       34
## 3124       35
## 3125       36
## 3126       39
## 3127       42
## 3128       45
## 3129       47
## 3130       48
## 3131       50
## 3132       52
## 3133       57
## 3134       58
## 3135       63
## 3136       64
## 3137       70
## 3138       74
## 3139       89
## 3140       94
## 3141       95
## 3142       97
## 3143      101
## 3144      105
## 3145      110
## 3146      111
## 3147      112
## 3148      122
## 3149      125
## 3150      141
## 3151      145
## 3152      150
## 3153      153
## 3154      154
## 3155      159
## 3156      160
## 3157      162
## 3158      165
## 3159      166
## 3160      172
## 3161      176
## 3162      177
## 3163      179
## 3164      180
## 3165      194
## 3166      196
## 3167      198
## 3168      202
## 3169      206
## 3170      208
## 3171      209
## 3172      215
## 3173      223
## 3174      229
## 3175      230
## 3176      231
## 3177      235
## 3178      246
## 3179      247
## 3180      249
## 3181      253
## 3182      260
## 3183      261
## 3184      262
## 3185      266
## 3186      269
## 3187      276
## 3188      281
## 3189      283
## 3190      288
## 3191      292
## 3192      293
## 3193      296
## 3194      300
## 3195      306
## 3196      307
## 3197      308
## 3198      316
## 3199      318
## 3200      326
## 3201      328
## 3202      329
## 3203      332
## 3204      333
## 3205      334
## 3206      337
## 3207      339
## 3208      340
## 3209      344
## 3210      345
## 3211      346
## 3212      348
## 3213      349
## 3214      350
## 3215      353
## 3216      354
## 3217      356
## 3218      357
## 3219      361
## 3220      364
## 3221      365
## 3222      366
## 3223      367
## 3224      369
## 3225      371
## 3226      372
## 3227      373
## 3228      376
## 3229      377
## 3230      379
## 3231      380
## 3232      382
## 3233      383
## 3234      407
## 3235      412
## 3236      423
## 3237      428
## 3238      429
## 3239      431
## 3240      434
## 3241      440
## 3242      441
## 3243      445
## 3244      448
## 3245      450
## 3246      451
## 3247      454
## 3248      456
## 3249      457
## 3250      464
## 3251      465
## 3252      468
## 3253      471
## 3254      474
## 3255      475
## 3256      479
## 3257      480
## 3258      481
## 3259      482
## 3260      485
## 3261      491
## 3262      493
## 3263      494
## 3264      500
## 3265      501
## 3266      504
## 3267      507
## 3268      508
## 3269      509
## 3270      513
## 3271      515
## 3272      517
## 3273      519
## 3274      520
## 3275      522
## 3276      527
## 3277      529
## 3278      531
## 3279      534
## 3280      535
## 3281      537
## 3282      541
## 3283      547
## 3284      550
## 3285      551
## 3286      555
## 3287      562
## 3288      580
## 3289      586
## 3290      588
## 3291      589
## 3292      590
## 3293      592
## 3294      593
## 3295      594
## 3296      595
## 3297      596
## 3298      597
## 3299      599
## 3300      608
## 3301      610
## 3302      612
## 3303      628
## 3304      648
## 3305      653
## 3306      661
## 3307      662
## 3308      663
## 3309      674
## 3310      703
## 3311      724
## 3312      733
## 3313      736
## 3314      748
## 3315      750
## 3316      780
## 3317      784
## 3318      785
## 3319      786
## 3320      788
## 3321      799
## 3322      800
## 3323      802
## 3324      805
## 3325      858
## 3326      880
## 3327      891
## 3328      898
## 3329      902
## 3330      903
## 3331      904
## 3332      908
## 3333      911
## 3334      912
## 3335      913
## 3336      914
## 3337      915
## 3338      916
## 3339      917
## 3340      920
## 3341      923
## 3342      924
## 3343      928
## 3344      929
## 3345      930
## 3346      931
## 3347      933
## 3348      940
## 3349      950
## 3350      951
## 3351      953
## 3352      954
## 3353      955
## 3354      965
## 3355      966
## 3356      968
## 3357      969
## 3358      982
## 3359     1013
## 3360     1019
## 3361     1022
## 3362     1023
## 3363     1028
## 3364     1029
## 3365     1035
## 3366     1036
## 3367     1041
## 3368     1042
## 3369     1060
## 3370     1061
## 3371     1073
## 3372     1077
## 3373     1079
## 3374     1080
## 3375     1082
## 3376     1084
## 3377     1086
## 3378     1088
## 3379     1089
## 3380     1090
## 3381     1091
## 3382     1092
## 3383     1093
## 3384     1094
## 3385     1095
## 3386     1097
## 3387     1101
## 3388     1103
## 3389     1104
## 3390     1124
## 3391     1126
## 3392     1127
## 3393     1128
## 3394     1129
## 3395     1130
## 3396     1136
## 3397     1148
## 3398     1161
## 3399     1171
## 3400     1175
## 3401     1176
## 3402     1178
## 3403     1179
## 3404     1183
## 3405     1185
## 3406     1193
## 3407     1196
## 3408     1197
## 3409     1198
## 3410     1199
## 3411     1200
## 3412     1201
## 3413     1203
## 3414     1204
## 3415     1206
## 3416     1207
## 3417     1208
## 3418     1210
## 3419     1211
## 3420     1212
## 3421     1213
## 3422     1214
## 3423     1215
## 3424     1216
## 3425     1217
## 3426     1218
## 3427     1219
## 3428     1220
## 3429     1221
## 3430     1222
## 3431     1225
## 3432     1227
## 3433     1228
## 3434     1230
## 3435     1231
## 3436     1233
## 3437     1237
## 3438     1238
## 3439     1240
## 3440     1242
## 3441     1244
## 3442     1246
## 3443     1247
## 3444     1248
## 3445     1249
## 3446     1250
## 3447     1252
## 3448     1253
## 3449     1254
## 3450     1257
## 3451     1258
## 3452     1259
## 3453     1260
## 3454     1261
## 3455     1262
## 3456     1263
## 3457     1265
## 3458     1266
## 3459     1267
## 3460     1268
## 3461     1269
## 3462     1270
## 3463     1271
## 3464     1272
## 3465     1274
## 3466     1275
## 3467     1276
## 3468     1278
## 3469     1282
## 3470     1283
## 3471     1284
## 3472     1285
## 3473     1286
## 3474     1287
## 3475     1288
## 3476     1290
## 3477     1291
## 3478     1292
## 3479     1297
## 3480     1298
## 3481     1299
## 3482     1302
## 3483     1304
## 3484     1306
## 3485     1307
## 3486     1320
## 3487     1321
## 3488     1327
## 3489     1332
## 3490     1333
## 3491     1334
## 3492     1336
## 3493     1339
## 3494     1342
## 3495     1343
## 3496     1344
## 3497     1345
## 3498     1347
## 3499     1348
## 3500     1350
## 3501     1354
## 3502     1356
## 3503     1357
## 3504     1370
## 3505     1371
## 3506     1372
## 3507     1373
## 3508     1374
## 3509     1375
## 3510     1376
## 3511     1377
## 3512     1378
## 3513     1380
## 3514     1381
## 3515     1382
## 3516     1385
## 3517     1387
## 3518     1388
## 3519     1389
## 3520     1391
## 3521     1393
## 3522     1394
## 3523     1396
## 3524     1405
## 3525     1408
## 3526     1441
## 3527     2019
## 3528     4970
## 3529        1
## 3530       32
## 3531       34
## 3532      107
## 3533      110
## 3534      150
## 3535      153
## 3536      207
## 3537      231
## 3538      260
## 3539      296
## 3540      316
## 3541      318
## 3542      344
## 3543      356
## 3544      364
## 3545      367
## 3546      380
## 3547      457
## 3548      480
## 3549      497
## 3550      500
## 3551      527
## 3552      588
## 3553      590
## 3554      592
## 3555      593
## 3556      595
## 3557      597
## 3558      608
## 3559      671
## 3560      720
## 3561      736
## 3562      745
## 3563      750
## 3564      780
## 3565      858
## 3566      904
## 3567      905
## 3568      912
## 3569     1019
## 3570     1097
## 3571     1103
## 3572     1136
## 3573     1148
## 3574     1196
## 3575     1198
## 3576     1204
## 3577     1207
## 3578     1210
## 3579     1247
## 3580     1269
## 3581     1270
## 3582     1293
## 3583     1378
## 3584     1441
## 3585     1580
## 3586     1680
## 3587     1907
## 3588     1960
## 3589     2013
## 3590     2405
## 3591     2571
## 3592     2690
## 3593     2762
## 3594     2908
## 3595     2959
## 3596     3148
## 3597     3196
## 3598     3406
## 3599     3555
## 3600     3809
## 3601     4993
## 3602     5380
## 3603     5618
## 3604     5747
## 3605     6201
## 3606     6385
## 3607     6516
## 3608     6753
## 3609     7153
## 3610     7212
## 3611     7841
## 3612     8191
## 3613     8493
## 3614     8611
## 3615     8970
## 3616    26111
## 3617    31116
## 3618    32469
## 3619    38038
## 3620    47721
## 3621    51471
## 3622    54259
## 3623    58047
## 3624    58299
## 3625    59784
## 3626    64285
## 3627       10
## 3628       21
## 3629       32
## 3630       34
## 3631       36
## 3632       44
## 3633       47
## 3634       95
## 3635      112
## 3636      151
## 3637      181
## 3638      196
## 3639      208
## 3640      260
## 3641      266
## 3642      273
## 3643      288
## 3644      296
## 3645      316
## 3646      329
## 3647      333
## 3648      344
## 3649      356
## 3650      377
## 3651      379
## 3652      380
## 3653      393
## 3654      442
## 3655      457
## 3656      466
## 3657      480
## 3658      485
## 3659      509
## 3660      527
## 3661      541
## 3662      543
## 3663      551
## 3664      553
## 3665      586
## 3666      589
## 3667      590
## 3668      592
## 3669      593
## 3670      594
## 3671      595
## 3672      597
## 3673      610
## 3674      648
## 3675      733
## 3676      750
## 3677      780
## 3678      849
## 3679      858
## 3680      899
## 3681      908
## 3682      910
## 3683      912
## 3684      913
## 3685      914
## 3686      918
## 3687      919
## 3688      920
## 3689      921
## 3690      923
## 3691      924
## 3692      945
## 3693      948
## 3694      952
## 3695      953
## 3696      954
## 3697      969
## 3698     1012
## 3699     1019
## 3700     1022
## 3701     1028
## 3702     1031
## 3703     1032
## 3704     1035
## 3705     1036
## 3706     1079
## 3707     1080
## 3708     1088
## 3709     1089
## 3710     1090
## 3711     1091
## 3712     1097
## 3713     1103
## 3714     1124
## 3715     1125
## 3716     1127
## 3717     1129
## 3718     1135
## 3719     1136
## 3720     1148
## 3721     1173
## 3722     1175
## 3723     1193
## 3724     1196
## 3725     1198
## 3726     1199
## 3727     1200
## 3728     1203
## 3729     1206
## 3730     1208
## 3731     1210
## 3732     1214
## 3733     1217
## 3734     1221
## 3735     1222
## 3736     1224
## 3737     1225
## 3738     1228
## 3739     1231
## 3740     1234
## 3741     1240
## 3742     1246
## 3743     1250
## 3744     1252
## 3745     1253
## 3746     1254
## 3747     1256
## 3748     1259
## 3749     1263
## 3750     1265
## 3751     1266
## 3752     1270
## 3753     1275
## 3754     1281
## 3755     1282
## 3756     1283
## 3757     1287
## 3758     1288
## 3759     1291
## 3760     1292
## 3761     1295
## 3762     1296
## 3763     1297
## 3764     1298
## 3765     1301
## 3766     1302
## 3767     1303
## 3768     1320
## 3769     1321
## 3770     1327
## 3771     1334
## 3772     1345
## 3773     1346
## 3774     1350
## 3775     1370
## 3776     1371
## 3777     1372
## 3778     1373
## 3779     1374
## 3780     1375
## 3781     1376
## 3782     1380
## 3783     1387
## 3784     1388
## 3785     1394
## 3786     1395
## 3787     1427
## 3788     5060
## 3789       32
## 3790       44
## 3791       47
## 3792       48
## 3793       70
## 3794      153
## 3795      158
## 3796      163
## 3797      173
## 3798      208
## 3799      231
## 3800      235
## 3801      253
## 3802      260
## 3803      267
## 3804      296
## 3805      315
## 3806      355
## 3807      356
## 3808      442
## 3809      457
## 3810      480
## 3811      485
## 3812      541
## 3813      551
## 3814      552
## 3815      555
## 3816      586
## 3817      588
## 3818      589
## 3819      592
## 3820      593
## 3821      648
## 3822      784
## 3823      785
## 3824      858
## 3825     1080
## 3826     1089
## 3827     1097
## 3828     1101
## 3829     1148
## 3830     1196
## 3831     1198
## 3832     1200
## 3833     1201
## 3834     1208
## 3835     1210
## 3836     1214
## 3837     1215
## 3838     1240
## 3839     1255
## 3840     1263
## 3841     1270
## 3842     1291
## 3843     1320
## 3844     1339
## 3845     1356
## 3846     1371
## 3847     1372
## 3848     1374
## 3849     1375
## 3850     1376
## 3851     1377
## 3852     1387
## 3853     1391
## 3854     1527
## 3855     1544
## 3856     1580
## 3857     1608
## 3858     1625
## 3859     1641
## 3860     1645
## 3861     1682
## 3862     1693
## 3863     1721
## 3864     1722
## 3865     1769
## 3866     1799
## 3867     1876
## 3868     1884
## 3869     1909
## 3870     1917
## 3871     1923
## 3872     1997
## 3873     2006
## 3874     2011
## 3875     2023
## 3876     2081
## 3877     2115
## 3878     2174
## 3879     2232
## 3880     2288
## 3881     2291
## 3882     2301
## 3883     2340
## 3884     2402
## 3885     2431
## 3886     2459
## 3887     2502
## 3888     2542
## 3889     2571
## 3890     2605
## 3891     2616
## 3892     2617
## 3893     2657
## 3894     2672
## 3895     2683
## 3896     2700
## 3897     2701
## 3898     2710
## 3899     2712
## 3900     2716
## 3901     2717
## 3902     2723
## 3903     2762
## 3904     2763
## 3905     2858
## 3906     2881
## 3907     2953
## 3908     2959
## 3909     2985
## 3910     2987
## 3911     2990
## 3912     3033
## 3913     3052
## 3914     3081
## 3915     3082
## 3916     3147
## 3917     3176
## 3918     3213
## 3919     3253
## 3920     3285
## 3921     3300
## 3922     3354
## 3923     3355
## 3924     3408
## 3925     3438
## 3926     3527
## 3927     3535
## 3928     3578
## 3929     3623
## 3930     3697
## 3931     3751
## 3932     3793
## 3933     3809
## 3934     3826
## 3935     3868
## 3936     3977
## 3937     3994
## 3938     3996
## 3939     3999
## 3940     4011
## 3941     4015
## 3942     4027
## 3943     4105
## 3944     4226
## 3945     4239
## 3946     4262
## 3947     4306
## 3948     4370
## 3949     4383
## 3950     4643
## 3951     4701
## 3952     4720
## 3953     4776
## 3954     4886
## 3955     4896
## 3956     4963
## 3957     4975
## 3958     4993
## 3959     5010
## 3960     5026
## 3961     5219
## 3962     5266
## 3963     5349
## 3964     5400
## 3965     5445
## 3966     5459
## 3967     5464
## 3968     5630
## 3969     5679
## 3970     5816
## 3971     5872
## 3972     5903
## 3973     5952
## 3974     5989
## 3975     6286
## 3976     6333
## 3977     6365
## 3978     6373
## 3979     6502
## 3980     6539
## 3981     6541
## 3982     6754
## 3983     6874
## 3984     6893
## 3985     6934
## 3986     7143
## 3987     7147
## 3988     7153
## 3989     7360
## 3990     7373
## 3991     7438
## 3992     7454
## 3993     7482
## 3994     8360
## 3995     8368
## 3996     8636
## 3997     8798
## 3998     8947
## 3999     8950
## 4000     8957
## 4001     8961
## 4002    30793
## 4003    31184
## 4004    31696
## 4005    32587
## 4006    33493
## 4007    33794
## 4008    37729
## 4009        1
## 4010        6
## 4011       11
## 4012       16
## 4013       19
## 4014       20
## 4015       24
## 4016       32
## 4017       34
## 4018       47
## 4019       50
## 4020       58
## 4021       62
## 4022       89
## 4023      104
## 4024      110
## 4025      111
## 4026      150
## 4027      153
## 4028      154
## 4029      172
## 4030      185
## 4031      224
## 4032      235
## 4033      236
## 4034      246
## 4035      247
## 4036      252
## 4037      253
## 4038      260
## 4039      262
## 4040      265
## 4041      292
## 4042      293
## 4043      296
## 4044      300
## 4045      306
## 4046      307
## 4047      316
## 4048      318
## 4049      319
## 4050      337
## 4051      344
## 4052      345
## 4053      356
## 4054      380
## 4055      425
## 4056      431
## 4057      442
## 4058      457
## 4059      465
## 4060      471
## 4061      480
## 4062      485
## 4063      492
## 4064      497
## 4065      508
## 4066      509
## 4067      527
## 4068      532
## 4069      535
## 4070      539
## 4071      541
## 4072      586
## 4073      588
## 4074      589
## 4075      590
## 4076      592
## 4077      593
## 4078      595
## 4079      597
## 4080      605
## 4081      608
## 4082      648
## 4083      653
## 4084      668
## 4085      670
## 4086      745
## 4087      750
## 4088      778
## 4089      780
## 4090      788
## 4091      802
## 4092      805
## 4093      841
## 4094      858
## 4095      898
## 4096      899
## 4097      900
## 4098      903
## 4099      904
## 4100      905
## 4101      908
## 4102      909
## 4103      910
## 4104      911
## 4105      912
## 4106      913
## 4107      914
## 4108      920
## 4109      922
## 4110      923
## 4111      924
## 4112      926
## 4113      928
## 4114      930
## 4115      931
## 4116      933
## 4117      942
## 4118      948
## 4119      949
## 4120      952
## 4121      953
## 4122      954
## 4123      955
## 4124      965
## 4125      969
## 4126      971
## 4127     1035
## 4128     1036
## 4129     1041
## 4130     1059
## 4131     1061
## 4132     1077
## 4133     1078
## 4134     1080
## 4135     1084
## 4136     1089
## 4137     1090
## 4138     1096
## 4139     1097
## 4140     1101
## 4141     1103
## 4142     1104
## 4143     1136
## 4144     1172
## 4145     1175
## 4146     1176
## 4147     1178
## 4148     1183
## 4149     1185
## 4150     1188
## 4151     1193
## 4152     1196
## 4153     1197
## 4154     1198
## 4155     1199
## 4156     1201
## 4157     1202
## 4158     1203
## 4159     1204
## 4160     1206
## 4161     1207
## 4162     1208
## 4163     1210
## 4164     1211
## 4165     1212
## 4166     1213
## 4167     1217
## 4168     1218
## 4169     1219
## 4170     1221
## 4171     1222
## 4172     1225
## 4173     1227
## 4174     1228
## 4175     1230
## 4176     1231
## 4177     1232
## 4178     1233
## 4179     1234
## 4180     1235
## 4181     1237
## 4182     1240
## 4183     1241
## 4184     1243
## 4185     1244
## 4186     1246
## 4187     1247
## 4188     1248
## 4189     1250
## 4190     1251
## 4191     1252
## 4192     1254
## 4193     1256
## 4194     1258
## 4195     1260
## 4196     1262
## 4197     1263
## 4198     1265
## 4199     1266
## 4200     1267
## 4201     1269
## 4202     1270
## 4203     1272
## 4204     1277
## 4205     1280
## 4206     1281
## 4207     1284
## 4208     1287
## 4209     1288
## 4210     1291
## 4211     1293
## 4212     1304
## 4213     1305
## 4214     1307
## 4215     1333
## 4216     1343
## 4217     1348
## 4218     1354
## 4219     1356
## 4220     1377
## 4221     1380
## 4222     1387
## 4223     1391
## 4224     1393
## 4225     1394
## 4226     1408
## 4227     1411
## 4228     1438
## 4229     1464
## 4230     1499
## 4231     1500
## 4232     1515
## 4233     1527
## 4234     1544
## 4235     1552
## 4236     1556
## 4237     1562
## 4238     1580
## 4239     1584
## 4240     1608
## 4241     1617
## 4242     1625
## 4243     1673
## 4244     1682
## 4245     1693
## 4246     1704
## 4247     1721
## 4248     1722
## 4249     1732
## 4250     1735
## 4251     1748
## 4252     1792
## 4253     1797
## 4254     1835
## 4255     1860
## 4256     1873
## 4257     1876
## 4258     1900
## 4259     1907
## 4260     1917
## 4261     1927
## 4262     1931
## 4263     1932
## 4264     1935
## 4265     1941
## 4266     1944
## 4267     1945
## 4268     1946
## 4269     1947
## 4270     1949
## 4271     1950
## 4272     1951
## 4273     1952
## 4274     1953
## 4275     1954
## 4276     1955
## 4277     1956
## 4278     1957
## 4279     1958
## 4280     1959
## 4281     1960
## 4282     1961
## 4283     1962
## 4284     1997
## 4285     2002
## 4286     2010
## 4287     2011
## 4288     2012
## 4289     2019
## 4290     2022
## 4291     2023
## 4292     2027
## 4293     2028
## 4294     2067
## 4295     2068
## 4296     2115
## 4297     2126
## 4298     2132
## 4299     2143
## 4300     2174
## 4301     2176
## 4302     2178
## 4303     2181
## 4304     2183
## 4305     2186
## 4306     2194
## 4307     2203
## 4308     2205
## 4309     2231
## 4310     2248
## 4311     2273
## 4312     2278
## 4313     2289
## 4314     2291
## 4315     2313
## 4316     2321
## 4317     2324
## 4318     2329
## 4319     2333
## 4320     2334
## 4321     2336
## 4322     2351
## 4323     2353
## 4324     2357
## 4325     2360
## 4326     2361
## 4327     2394
## 4328     2396
## 4329     2406
## 4330     2424
## 4331     2467
## 4332     2474
## 4333     2501
## 4334     2502
## 4335     2539
## 4336     2542
## 4337     2571
## 4338     2575
## 4339     2580
## 4340     2599
## 4341     2600
## 4342     2617
## 4343     2628
## 4344     2640
## 4345     2644
## 4346     2648
## 4347     2657
## 4348     2692
## 4349     2699
## 4350     2702
## 4351     2712
## 4352     2716
## 4353     2721
## 4354     2724
## 4355     2726
## 4356     2728
## 4357     2729
## 4358     2730
## 4359     2731
## 4360     2739
## 4361     2746
## 4362     2762
## 4363     2805
## 4364     2858
## 4365     2871
## 4366     2890
## 4367     2905
## 4368     2908
## 4369     2918
## 4370     2932
## 4371     2947
## 4372     2952
## 4373     2953
## 4374     2959
## 4375     2970
## 4376     2976
## 4377     2987
## 4378     2997
## 4379     3006
## 4380     3019
## 4381     3020
## 4382     3052
## 4383     3053
## 4384     3067
## 4385     3081
## 4386     3082
## 4387     3083
## 4388     3088
## 4389     3089
## 4390     3095
## 4391     3100
## 4392     3114
## 4393     3147
## 4394     3152
## 4395     3155
## 4396     3159
## 4397     3160
## 4398     3168
## 4399     3176
## 4400     3201
## 4401     3245
## 4402     3246
## 4403     3248
## 4404     3252
## 4405     3267
## 4406     3307
## 4407     3310
## 4408     3317
## 4409     3365
## 4410     3371
## 4411     3386
## 4412     3405
## 4413     3408
## 4414     3415
## 4415     3424
## 4416     3435
## 4417     3448
## 4418     3462
## 4419     3468
## 4420     3471
## 4421     3475
## 4422     3481
## 4423     3489
## 4424     3498
## 4425     3503
## 4426     3504
## 4427     3510
## 4428     3535
## 4429     3546
## 4430     3559
## 4431     3569
## 4432     3578
## 4433     3618
## 4434     3623
## 4435     3629
## 4436     3668
## 4437     3671
## 4438     3681
## 4439     3730
## 4440     3736
## 4441     3741
## 4442     3751
## 4443     3753
## 4444     3788
## 4445     3801
## 4446     3844
## 4447     3871
## 4448     3897
## 4449     3910
## 4450     3949
## 4451     3983
## 4452     3989
## 4453     3992
## 4454     3994
## 4455     3996
## 4456     4007
## 4457     4008
## 4458     4011
## 4459     4014
## 4460     4022
## 4461     4027
## 4462     4034
## 4463     4037
## 4464     4103
## 4465     4148
## 4466     4167
## 4467     4223
## 4468     4225
## 4469     4226
## 4470     4235
## 4471     4267
## 4472     4278
## 4473     4282
## 4474     4297
## 4475     4308
## 4476     4310
## 4477     4312
## 4478     4343
## 4479     4344
## 4480     4359
## 4481     4370
## 4482     4378
## 4483     4432
## 4484     4447
## 4485     4458
## 4486     4564
## 4487     4571
## 4488     4641
## 4489     4720
## 4490     4816
## 4491     4823
## 4492     4848
## 4493     4857
## 4494     4865
## 4495     4878
## 4496     4881
## 4497     4886
## 4498     4896
## 4499     4901
## 4500     4914
## 4501     4963
## 4502     4967
## 4503     4973
## 4504     4975
## 4505     4976
## 4506     4978
## 4507     4979
## 4508     4993
## 4509     4995
## 4510     5013
## 4511     5014
## 4512     5015
## 4513     5060
## 4514     5073
## 4515     5096
## 4516     5114
## 4517     5135
## 4518     5147
## 4519     5177
## 4520     5222
## 4521     5225
## 4522     5266
## 4523     5291
## 4524     5299
## 4525     5304
## 4526     5348
## 4527     5349
## 4528     5367
## 4529     5373
## 4530     5377
## 4531     5378
## 4532     5385
## 4533     5388
## 4534     5445
## 4535     5446
## 4536     5463
## 4537     5464
## 4538     5470
## 4539     5489
## 4540     5502
## 4541     5599
## 4542     5618
## 4543     5633
## 4544     5669
## 4545     5673
## 4546     5679
## 4547     5682
## 4548     5810
## 4549     5816
## 4550     5878
## 4551     5881
## 4552     5882
## 4553     5902
## 4554     5940
## 4555     5949
## 4556     5952
## 4557     5954
## 4558     5956
## 4559     5971
## 4560     5989
## 4561     5991
## 4562     5992
## 4563     5995
## 4564     6001
## 4565     6008
## 4566     6016
## 4567     6162
## 4568     6197
## 4569     6214
## 4570     6218
## 4571     6235
## 4572     6281
## 4573     6323
## 4574     6333
## 4575     6365
## 4576     6377
## 4577     6404
## 4578     6415
## 4579     6440
## 4580     6537
## 4581     6539
## 4582     6552
## 4583     6591
## 4584     6599
## 4585     6611
## 4586     6620
## 4587     6641
## 4588     6643
## 4589     6666
## 4590     6669
## 4591     6708
## 4592     6709
## 4593     6711
## 4594     6783
## 4595     6787
## 4596     6796
## 4597     6807
## 4598     6867
## 4599     6870
## 4600     6873
## 4601     6874
## 4602     6881
## 4603     6890
## 4604     6918
## 4605     6932
## 4606     6934
## 4607     6944
## 4608     6947
## 4609     6953
## 4610     6954
## 4611     6975
## 4612     6981
## 4613     6982
## 4614     6985
## 4615     6987
## 4616     6993
## 4617     7004
## 4618     7008
## 4619     7013
## 4620     7038
## 4621     7042
## 4622     7063
## 4623     7070
## 4624     7072
## 4625     7088
## 4626     7090
## 4627     7104
## 4628     7132
## 4629     7136
## 4630     7139
## 4631     7147
## 4632     7153
## 4633     7160
## 4634     7161
## 4635     7162
## 4636     7234
## 4637     7265
## 4638     7323
## 4639     7347
## 4640     7361
## 4641     7371
## 4642     7419
## 4643     7438
## 4644     7458
## 4645     7569
## 4646     7587
## 4647     7713
## 4648     7748
## 4649     7759
## 4650     7766
## 4651     7771
## 4652     7942
## 4653     8019
## 4654     8042
## 4655     8125
## 4656     8154
## 4657     8195
## 4658     8239
## 4659     8338
## 4660     8368
## 4661     8376
## 4662     8464
## 4663     8507
## 4664     8529
## 4665     8636
## 4666     8656
## 4667     8873
## 4668     8910
## 4669     8949
## 4670     8955
## 4671     8958
## 4672     8966
## 4673     8970
## 4674     8973
## 4675     8984
## 4676    25753
## 4677    25769
## 4678    25805
## 4679    26052
## 4680    26131
## 4681    26242
## 4682    26729
## 4683    27266
## 4684    27317
## 4685    27721
## 4686    27803
## 4687    30707
## 4688    30749
## 4689    30793
## 4690    30812
## 4691    30820
## 4692    31101
## 4693    31658
## 4694    32587
## 4695    32892
## 4696    33162
## 4697    33166
## 4698    33493
## 4699    33794
## 4700    33903
## 4701    34048
## 4702    34143
## 4703    34326
## 4704    34437
## 4705    36517
## 4706    36529
## 4707    36535
## 4708    37733
## 4709    37736
## 4710    37741
## 4711    38038
## 4712    39183
## 4713    39231
## 4714    39292
## 4715    39869
## 4716    40278
## 4717    40583
## 4718    40629
## 4719    40815
## 4720    40819
## 4721    41285
## 4722    41569
## 4723    41571
## 4724    41863
## 4725    41997
## 4726    42004
## 4727    42418
## 4728    42734
## 4729    44191
## 4730    44204
## 4731    45186
## 4732    45447
## 4733    45722
## 4734    48385
## 4735        6
## 4736       36
## 4737       81
## 4738       95
## 4739      150
## 4740      165
## 4741      296
## 4742      316
## 4743      356
## 4744      380
## 4745      457
## 4746      588
## 4747      590
## 4748      592
## 4749      610
## 4750      648
## 4751      736
## 4752      780
## 4753      786
## 4754     1034
## 4755     1161
## 4756        3
## 4757       32
## 4758       78
## 4759      104
## 4760      260
## 4761      494
## 4762      608
## 4763      653
## 4764      663
## 4765      707
## 4766      778
## 4767      780
## 4768      784
## 4769      786
## 4770      788
## 4771      802
## 4772      832
## 4773      842
## 4774     1073
## 4775     1354
## 4776     1356
## 4777     1358
## 4778     1391
## 4779     1405
## 4780     1409
## 4781     1483
## 4782        1
## 4783       32
## 4784       47
## 4785       50
## 4786       63
## 4787       69
## 4788      153
## 4789      165
## 4790      260
## 4791      296
## 4792      316
## 4793      318
## 4794      344
## 4795      356
## 4796      367
## 4797      377
## 4798      380
## 4799      457
## 4800      480
## 4801      500
## 4802      555
## 4803      589
## 4804      593
## 4805      608
## 4806      648
## 4807      720
## 4808      733
## 4809      778
## 4810      780
## 4811      858
## 4812     1036
## 4813     1089
## 4814     1196
## 4815     1198
## 4816     1210
## 4817     1405
## 4818     1527
## 4819     1580
## 4820     1653
## 4821     1687
## 4822     1732
## 4823     1753
## 4824     1831
## 4825     1884
## 4826     2028
## 4827     2329
## 4828     2355
## 4829     2542
## 4830     2571
## 4831     2692
## 4832     2858
## 4833     2959
## 4834     3108
## 4835     3114
## 4836     3147
## 4837     3275
## 4838     3481
## 4839     3578
## 4840     3744
## 4841     4011
## 4842     4019
## 4843     4027
## 4844     4161
## 4845     4226
## 4846     4262
## 4847     4306
## 4848     4776
## 4849     4844
## 4850     4865
## 4851     4963
## 4852     4973
## 4853     4979
## 4854     4995
## 4855     5010
## 4856     5110
## 4857     5218
## 4858     5418
## 4859     5608
## 4860     5617
## 4861     5903
## 4862     5952
## 4863     5954
## 4864     5989
## 4865     6016
## 4866     6333
## 4867     6539
## 4868     6708
## 4869     6867
## 4870     6870
## 4871     6874
## 4872     7323
## 4873     7361
## 4874     7438
## 4875     7445
## 4876     8368
## 4877     8665
## 4878     8784
## 4879     8798
## 4880     8874
## 4881     8961
## 4882    27376
## 4883    27831
## 4884    30810
## 4885    31410
## 4886    31878
## 4887    32587
## 4888    33794
## 4889    34437
## 4890    36529
## 4891    37731
## 4892    37741
## 4893    38038
## 4894    38061
## 4895    41997
## 4896    44191
## 4897    44195
## 4898    44199
## 4899    44665
## 4900    46976
## 4901    47610
## 4902    48516
## 4903    48774
## 4904    48780
## 4905    49272
## 4906    49278
## 4907    49530
## 4908    50851
## 4909    50872
## 4910    51255
## 4911    51662
## 4912    52604
## 4913    52952
## 4914    53129
## 4915    53972
## 4916    54286
## 4917    54503
## 4918    55118
## 4919    55167
## 4920    55247
## 4921    55276
## 4922    55280
## 4923    55765
## 4924    55820
## 4925    56782
## 4926    57669
## 4927    58559
## 4928    59315
## 4929    59369
## 4930    59387
## 4931    59784
## 4932    60069
## 4933    60684
## 4934    61024
## 4935    61323
## 4936    62849
## 4937    63082
## 4938    65514
## 4939    67997
## 4940    68157
## 4941    68358
## 4942    68954
## 4943    69122
## 4944    70533
## 4945    71464
## 4946    72998
## 4947    73017
## 4948    73587
## 4949    79132
## 4950    80489
## 4951    82459
## 4952    91542
## 4953    92259
## 4954       50
## 4955       73
## 4956      111
## 4957      296
## 4958      527
## 4959      593
## 4960     1213
## 4961     1343
## 4962     1584
## 4963     1610
## 4964     1639
## 4965     1704
## 4966     1721
## 4967     1892
## 4968     2356
## 4969     2391
## 4970     2396
## 4971     2501
## 4972     2502
## 4973     2710
## 4974     2712
## 4975     2762
## 4976     2858
## 4977       21
## 4978       58
## 4979      110
## 4980      345
## 4981      898
## 4982      899
## 4983      902
## 4984      903
## 4985      904
## 4986      908
## 4987      909
## 4988      913
## 4989      920
## 4990      924
## 4991      926
## 4992      933
## 4993      953
## 4994     1059
## 4995     1079
## 4996     1094
## 4997     1203
## 4998     1206
## 4999     1219
## 5000     1225
## 5001     1250
## 5002     1252
## 5003     1267
## 5004     1296
## 5005     1300
## 5006     1366
## 5007     1610
## 5008     1617
## 5009     1674
## 5010     1831
## 5011     1883
## 5012     1945
## 5013     1956
## 5014     1962
## 5015     2019
## 5016     2028
## 5017     2109
## 5018     2202
## 5019     2291
## 5020     2300
## 5021     2324
## 5022     2406
## 5023     2470
## 5024     2571
## 5025     2583
## 5026     2662
## 5027      778
## 5028     1569
## 5029     1681
## 5030     1717
## 5031     2065
## 5032     2367
## 5033     2384
## 5034     2459
## 5035     2513
## 5036     2571
## 5037     2713
## 5038     2717
## 5039     2942
## 5040     3720
## 5041     5065
## 5042     6365
## 5043     6502
## 5044     6934
## 5045    27822
## 5046    51662
## 5047    58559
## 5048    73268
## 5049        1
## 5050        2
## 5051        6
## 5052        8
## 5053       11
## 5054       14
## 5055       16
## 5056       18
## 5057       21
## 5058       23
## 5059       25
## 5060       32
## 5061       34
## 5062       42
## 5063       45
## 5064       47
## 5065       50
## 5066       52
## 5067       60
## 5068       70
## 5069       78
## 5070      100
## 5071      110
## 5072      111
## 5073      118
## 5074      141
## 5075      150
## 5076      158
## 5077      161
## 5078      162
## 5079      165
## 5080      170
## 5081      196
## 5082      203
## 5083      208
## 5084      209
## 5085      224
## 5086      227
## 5087      228
## 5088      235
## 5089      253
## 5090      254
## 5091      260
## 5092      261
## 5093      272
## 5094      281
## 5095      282
## 5096      288
## 5097      296
## 5098      300
## 5099      317
## 5100      318
## 5101      337
## 5102      344
## 5103      348
## 5104      349
## 5105      350
## 5106      356
## 5107      357
## 5108      364
## 5109      368
## 5110      369
## 5111      371
## 5112      377
## 5113      380
## 5114      382
## 5115      410
## 5116      412
## 5117      413
## 5118      419
## 5119      424
## 5120      425
## 5121      426
## 5122      428
## 5123      432
## 5124      434
## 5125      440
## 5126      445
## 5127      451
## 5128      454
## 5129      457
## 5130      459
## 5131      463
## 5132      471
## 5133      472
## 5134      474
## 5135      477
## 5136      480
## 5137      485
## 5138      492
## 5139      500
## 5140      507
## 5141      508
## 5142      509
## 5143      515
## 5144      517
## 5145      518
## 5146      523
## 5147      527
## 5148      531
## 5149      532
## 5150      534
## 5151      535
## 5152      538
## 5153      539
## 5154      540
## 5155      541
## 5156      553
## 5157      555
## 5158      556
## 5159      581
## 5160      586
## 5161      587
## 5162      588
## 5163      589
## 5164      590
## 5165      592
## 5166      593
## 5167      594
## 5168      595
## 5169      596
## 5170      597
## 5171      608
## 5172      628
## 5173      640
## 5174      647
## 5175      661
## 5176      707
## 5177      733
## 5178      736
## 5179      750
## 5180      762
## 5181      765
## 5182      767
## 5183      780
## 5184      782
## 5185      800
## 5186      805
## 5187      806
## 5188      832
## 5189      858
## 5190      869
## 5191      898
## 5192      899
## 5193      903
## 5194      904
## 5195      908
## 5196      912
## 5197      913
## 5198      914
## 5199      919
## 5200      920
## 5201      921
## 5202      922
## 5203      923
## 5204      924
## 5205      928
## 5206      947
## 5207      950
## 5208      953
## 5209      954
## 5210      969
## 5211      971
## 5212      996
## 5213     1006
## 5214     1010
## 5215     1012
## 5216     1013
## 5217     1017
## 5218     1018
## 5219     1025
## 5220     1027
## 5221     1028
## 5222     1035
## 5223     1036
## 5224     1042
## 5225     1061
## 5226     1073
## 5227     1078
## 5228     1079
## 5229     1081
## 5230     1082
## 5231     1084
## 5232     1086
## 5233     1088
## 5234     1089
## 5235     1090
## 5236     1091
## 5237     1092
## 5238     1093
## 5239     1094
## 5240     1095
## 5241     1096
## 5242     1097
## 5243     1101
## 5244     1104
## 5245     1114
## 5246     1120
## 5247     1124
## 5248     1126
## 5249     1129
## 5250     1135
## 5251     1171
## 5252     1179
## 5253     1181
## 5254     1186
## 5255     1189
## 5256     1193
## 5257     1196
## 5258     1197
## 5259     1198
## 5260     1200
## 5261     1206
## 5262     1207
## 5263     1208
## 5264     1210
## 5265     1212
## 5266     1213
## 5267     1214
## 5268     1219
## 5269     1220
## 5270     1221
## 5271     1222
## 5272     1225
## 5273     1226
## 5274     1227
## 5275     1228
## 5276     1231
## 5277     1234
## 5278     1235
## 5279     1240
## 5280     1242
## 5281     1244
## 5282     1245
## 5283     1246
## 5284     1247
## 5285     1250
## 5286     1252
## 5287     1258
## 5288     1259
## 5289     1263
## 5290     1265
## 5291     1266
## 5292     1267
## 5293     1270
## 5294     1271
## 5295     1272
## 5296     1276
## 5297     1277
## 5298     1278
## 5299     1283
## 5300     1285
## 5301     1286
## 5302     1291
## 5303     1292
## 5304     1302
## 5305     1303
## 5306     1304
## 5307     1307
## 5308     1320
## 5309     1321
## 5310     1327
## 5311     1332
## 5312     1333
## 5313     1334
## 5314     1339
## 5315     1343
## 5316     1345
## 5317     1346
## 5318     1350
## 5319     1352
## 5320     1358
## 5321     1366
## 5322     1370
## 5323     1377
## 5324     1378
## 5325     1380
## 5326     1385
## 5327     1387
## 5328     1388
## 5329     1390
## 5330     1393
## 5331     1394
## 5332     1395
## 5333     1396
## 5334     1399
## 5335     1422
## 5336     1438
## 5337     1440
## 5338     1459
## 5339     1461
## 5340     1466
## 5341     1485
## 5342     1488
## 5343     1508
## 5344     1517
## 5345     1523
## 5346     1552
## 5347     1562
## 5348     1566
## 5349     1580
## 5350     1584
## 5351     1588
## 5352     1589
## 5353     1598
## 5354     1608
## 5355     1610
## 5356     1611
## 5357     1614
## 5358     1617
## 5359     1620
## 5360     1624
## 5361     1625
## 5362     1645
## 5363     1672
## 5364     1673
## 5365     1674
## 5366     1682
## 5367     1686
## 5368     1690
## 5369     1694
## 5370     1701
## 5371     1704
## 5372     1711
## 5373     1721
## 5374     1726
## 5375     1729
## 5376     1732
## 5377     1747
## 5378     1783
## 5379     1784
## 5380     1785
## 5381     1791
## 5382     1798
## 5383     1805
## 5384     1810
## 5385     1834
## 5386     1864
## 5387     1873
## 5388     1876
## 5389     1882
## 5390     1884
## 5391     1892
## 5392     1912
## 5393     1917
## 5394     1923
## 5395     1943
## 5396     1945
## 5397     1947
## 5398     1951
## 5399     1952
## 5400     1953
## 5401     1954
## 5402     1955
## 5403     1956
## 5404     1957
## 5405     1958
## 5406     1960
## 5407     1961
## 5408     1962
## 5409     1965
## 5410     1968
## 5411     1982
## 5412     1994
## 5413     1997
## 5414     2000
## 5415     2001
## 5416     2002
## 5417     2003
## 5418     2009
## 5419     2011
## 5420     2012
## 5421     2013
## 5422     2015
## 5423     2023
## 5424     2024
## 5425     2025
## 5426     2028
## 5427     2054
## 5428     2064
## 5429     2065
## 5430     2070
## 5431     2076
## 5432     2078
## 5433     2081
## 5434     2082
## 5435     2083
## 5436     2088
## 5437     2094
## 5438     2105
## 5439     2108
## 5440     2109
## 5441     2112
## 5442     2114
## 5443     2115
## 5444     2116
## 5445     2117
## 5446     2118
## 5447     2120
## 5448     2121
## 5449     2122
## 5450     2124
## 5451     2126
## 5452     2136
## 5453     2144
## 5454     2145
## 5455     2146
## 5456     2148
## 5457     2159
## 5458     2160
## 5459     2166
## 5460     2174
## 5461     2183
## 5462     2184
## 5463     2188
## 5464     2193
## 5465     2194
## 5466     2231
## 5467     2236
## 5468     2240
## 5469     2243
## 5470     2245
## 5471     2247
## 5472     2249
## 5473     2252
## 5474     2253
## 5475     2255
## 5476     2259
## 5477     2263
## 5478     2264
## 5479     2267
## 5480     2268
## 5481     2269
## 5482     2278
## 5483     2286
## 5484     2289
## 5485     2291
## 5486     2296
## 5487     2300
## 5488     2301
## 5489     2302
## 5490     2307
## 5491     2311
## 5492     2313
## 5493     2320
## 5494     2321
## 5495     2329
## 5496     2334
## 5497     2336
## 5498     2346
## 5499     2347
## 5500     2352
## 5501     2353
## 5502     2355
## 5503     2367
## 5504     2369
## 5505     2371
## 5506     2374
## 5507     2376
## 5508     2389
## 5509     2391
## 5510     2396
## 5511     2398
## 5512     2402
## 5513     2403
## 5514     2407
## 5515     2409
## 5516     2410
## 5517     2411
## 5518     2412
## 5519     2417
## 5520     2418
## 5521     2420
## 5522     2424
## 5523     2427
## 5524     2432
## 5525     2433
## 5526     2435
## 5527     2454
## 5528     2457
## 5529     2463
## 5530     2468
## 5531     2470
## 5532     2474
## 5533     2490
## 5534     2505
## 5535     2513
## 5536     2517
## 5537     2518
## 5538     2520
## 5539     2521
## 5540     2523
## 5541     2524
## 5542     2528
## 5543     2529
## 5544     2530
## 5545     2531
## 5546     2532
## 5547     2533
## 5548     2535
## 5549     2539
## 5550     2551
## 5551     2561
## 5552     2571
## 5553     2574
## 5554     2577
## 5555     2598
## 5556     2599
## 5557     2605
## 5558     2611
## 5559     2616
## 5560     2617
## 5561     2639
## 5562     2640
## 5563     2641
## 5564     2642
## 5565     2664
## 5566     2671
## 5567     2687
## 5568     2688
## 5569     2701
## 5570     2702
## 5571     2707
## 5572     2712
## 5573     2716
## 5574     2729
## 5575     2730
## 5576     2738
## 5577     2739
## 5578     2741
## 5579     2746
## 5580     2749
## 5581     2750
## 5582     2757
## 5583     2762
## 5584     2763
## 5585     2770
## 5586     2782
## 5587     2787
## 5588     2790
## 5589     2791
## 5590     2793
## 5591     2794
## 5592     2795
## 5593     2797
## 5594     2802
## 5595     2803
## 5596     2804
## 5597     2805
## 5598     2819
## 5599     2829
## 5600     2841
## 5601     2851
## 5602     2852
## 5603     2856
## 5604     2858
## 5605     2861
## 5606     2871
## 5607     2875
## 5608     2881
## 5609     2883
## 5610     2890
## 5611     2908
## 5612     2912
## 5613     2916
## 5614     2917
## 5615     2918
## 5616     2929
## 5617     2942
## 5618     2944
## 5619     2947
## 5620     2950
## 5621     2952
## 5622     2956
## 5623     2959
## 5624     2966
## 5625     2967
## 5626     2971
## 5627     2973
## 5628     2976
## 5629     2977
## 5630     2985
## 5631     2987
## 5632     2989
## 5633     2991
## 5634     3006
## 5635     3015
## 5636     3019
## 5637     3020
## 5638     3032
## 5639     3035
## 5640     3038
## 5641     3039
## 5642     3044
## 5643     3053
## 5644     3063
## 5645     3068
## 5646     3071
## 5647     3072
## 5648     3074
## 5649     3081
## 5650     3082
## 5651     3087
## 5652     3095
## 5653     3098
## 5654     3101
## 5655     3102
## 5656     3104
## 5657     3105
## 5658     3107
## 5659     3108
## 5660     3111
## 5661     3114
## 5662     3120
## 5663     3130
## 5664     3138
## 5665     3141
## 5666     3144
## 5667     3147
## 5668     3152
## 5669     3156
## 5670     3160
## 5671     3167
## 5672     3169
## 5673     3173
## 5674     3174
## 5675     3176
## 5676     3185
## 5677     3197
## 5678     3198
## 5679     3204
## 5680     3206
## 5681     3210
## 5682     3218
## 5683     3219
## 5684     3244
## 5685     3246
## 5686     3247
## 5687     3249
## 5688     3252
## 5689     3253
## 5690     3255
## 5691     3256
## 5692     3257
## 5693     3258
## 5694     3263
## 5695     3269
## 5696     3274
## 5697     3286
## 5698     3296
## 5699     3298
## 5700     3308
## 5701     3316
## 5702     3334
## 5703     3354
## 5704     3358
## 5705     3359
## 5706     3360
## 5707     3361
## 5708     3362
## 5709     3363
## 5710     3370
## 5711     3385
## 5712     3386
## 5713     3391
## 5714     3394
## 5715     3395
## 5716     3418
## 5717     3420
## 5718     3421
## 5719     3426
## 5720     3428
## 5721     3441
## 5722     3445
## 5723     3448
## 5724     3451
## 5725     3468
## 5726     3476
## 5727     3478
## 5728     3483
## 5729     3489
## 5730     3494
## 5731     3498
## 5732     3499
## 5733     3500
## 5734     3504
## 5735     3505
## 5736     3506
## 5737     3507
## 5738     3513
## 5739     3524
## 5740     3526
## 5741     3528
## 5742     3529
## 5743     3535
## 5744     3536
## 5745     3537
## 5746     3543
## 5747     3545
## 5748     3546
## 5749     3548
## 5750     3549
## 5751     3551
## 5752     3556
## 5753     3557
## 5754     3566
## 5755     3578
## 5756     3608
## 5757     3613
## 5758     3614
## 5759     3618
## 5760     3638
## 5761     3649
## 5762     3671
## 5763     3683
## 5764     3684
## 5765     3685
## 5766     3686
## 5767     3688
## 5768     3701
## 5769     3702
## 5770     3704
## 5771     3712
## 5772     3713
## 5773     3724
## 5774     3734
## 5775     3735
## 5776     3751
## 5777     3753
## 5778     3763
## 5779     3783
## 5780     3791
## 5781     3804
## 5782     3812
## 5783     3826
## 5784     3834
## 5785     3844
## 5786     3852
## 5787     3859
## 5788     3873
## 5789     3897
## 5790     3927
## 5791     3948
## 5792     3952
## 5793     3957
## 5794     3983
## 5795     3994
## 5796     3996
## 5797     4002
## 5798     4007
## 5799     4008
## 5800     4009
## 5801     4011
## 5802     4012
## 5803     4014
## 5804     4018
## 5805     4022
## 5806     4025
## 5807     4027
## 5808     4029
## 5809     4033
## 5810     4034
## 5811     4037
## 5812     4039
## 5813     4041
## 5814     4055
## 5815     4060
## 5816     4062
## 5817     4063
## 5818     4085
## 5819     4086
## 5820     4088
## 5821     4090
## 5822     4102
## 5823     4111
## 5824     4122
## 5825     4126
## 5826     4128
## 5827     4132
## 5828     4146
## 5829     4148
## 5830     4167
## 5831     4190
## 5832     4211
## 5833     4214
## 5834     4226
## 5835     4228
## 5836     4239
## 5837     4246
## 5838     4262
## 5839     4263
## 5840     4276
## 5841     4280
## 5842     4291
## 5843     4292
## 5844     4306
## 5845     4308
## 5846     4310
## 5847     4316
## 5848     4318
## 5849     4321
## 5850     4322
## 5851     4326
## 5852     4333
## 5853     4344
## 5854     4345
## 5855     4352
## 5856     4354
## 5857     4361
## 5858     4370
## 5859     4378
## 5860     4396
## 5861     4406
## 5862     4409
## 5863     4410
## 5864     4447
## 5865     4464
## 5866     4465
## 5867     4474
## 5868     4482
## 5869     4486
## 5870     4487
## 5871     4488
## 5872     4489
## 5873     4491
## 5874     4495
## 5875     4496
## 5876     4498
## 5877     4499
## 5878     4503
## 5879     4522
## 5880     4524
## 5881     4526
## 5882     4528
## 5883     4557
## 5884     4564
## 5885     4570
## 5886     4573
## 5887     4608
## 5888     4615
## 5889     4617
## 5890     4621
## 5891     4627
## 5892     4628
## 5893     4629
## 5894     4639
## 5895     4643
## 5896     4661
## 5897     4681
## 5898     4700
## 5899     4709
## 5900     4710
## 5901     4713
## 5902     4714
## 5903     4728
## 5904     4733
## 5905     4751
## 5906     4776
## 5907     4787
## 5908     4803
## 5909     4815
## 5910     4830
## 5911     4832
## 5912     4835
## 5913     4881
## 5914     4886
## 5915     4889
## 5916     4890
## 5917     4896
## 5918     4898
## 5919     4929
## 5920     4932
## 5921     4941
## 5922     4951
## 5923     4954
## 5924     4960
## 5925     4963
## 5926     4971
## 5927     4978
## 5928     4979
## 5929     4993
## 5930     4995
## 5931     5015
## 5932     5027
## 5933     5043
## 5934     5049
## 5935     5060
## 5936     5061
## 5937     5064
## 5938     5111
## 5939     5120
## 5940     5122
## 5941     5125
## 5942     5127
## 5943     5152
## 5944     5161
## 5945     5172
## 5946     5187
## 5947     5193
## 5948     5198
## 5949     5208
## 5950     5214
## 5951     5237
## 5952     5247
## 5953     5250
## 5954     5269
## 5955     5276
## 5956     5277
## 5957     5293
## 5958     5297
## 5959     5299
## 5960     5303
## 5961     5307
## 5962     5308
## 5963     5309
## 5964     5334
## 5965     5335
## 5966     5344
## 5967     5359
## 5968     5364
## 5969     5366
## 5970     5382
## 5971     5388
## 5972     5391
## 5973     5400
## 5974     5445
## 5975     5452
## 5976     5464
## 5977     5471
## 5978     5502
## 5979     5506
## 5980     5534
## 5981     5544
## 5982     5548
## 5983     5561
## 5984     5564
## 5985     5581
## 5986     5620
## 5987     5630
## 5988     5655
## 5989     5670
## 5990     5679
## 5991     5680
## 5992     5689
## 5993     5694
## 5994     5696
## 5995     5699
## 5996     5703
## 5997     5705
## 5998     5707
## 5999     5712
## 6000     5723
## 6001     5729
## 6002     5732
## 6003     5742
## 6004     5745
## 6005     5773
## 6006     5812
## 6007     5843
## 6008     5846
## 6009     5847
## 6010     5854
## 6011     5857
## 6012     5859
## 6013     5869
## 6014     5900
## 6015     5902
## 6016     5923
## 6017     5926
## 6018     5927
## 6019     5933
## 6020     5938
## 6021     5940
## 6022     5945
## 6023     5956
## 6024     5959
## 6025     5960
## 6026     5961
## 6027     5962
## 6028     5968
## 6029     5989
## 6030     5991
## 6031     6001
## 6032     6027
## 6033     6084
## 6034     6096
## 6035     6101
## 6036     6103
## 6037     6115
## 6038     6127
## 6039     6180
## 6040     6186
## 6041     6212
## 6042     6233
## 6043     6234
## 6044     6237
## 6045     6238
## 6046     6240
## 6047     6263
## 6048     6281
## 6049     6308
## 6050     6318
## 6051     6345
## 6052     6413
## 6053     6419
## 6054     6422
## 6055     6436
## 6056     6440
## 6057     6452
## 6058     6473
## 6059     6565
## 6060       31
## 6061       32
## 6062       50
## 6063      111
## 6064      260
## 6065      296
## 6066      318
## 6067      372
## 6068      379
## 6069      527
## 6070      541
## 6071      778
## 6072      858
## 6073      904
## 6074     1089
## 6075     1091
## 6076     1186
## 6077     1197
## 6078     1206
## 6079     1208
## 6080     1221
## 6081     1234
## 6082     1299
## 6083     1378
## 6084     1416
## 6085     1957
## 6086     1967
## 6087     2028
## 6088     2248
## 6089     2329
## 6090     2502
## 6091     2571
## 6092     2692
## 6093     2959
## 6094     2997
## 6095     3072
## 6096     3087
## 6097     3698
## 6098     3755
## 6099     3897
## 6100     3911
## 6101     4886
## 6102     4979
## 6103     4993
## 6104     5418
## 6105     5952
## 6106     5995
## 6107     6539
## 6108     6711
## 6109     7153
## 6110     7361
## 6111     8961
## 6112    33154
## 6113    33794
## 6114    44191
## 6115    44195
## 6116    48394
## 6117    50872
## 6118    54503
## 6119    55280
## 6120    55820
## 6121    58559
## 6122    59315
## 6123    64614
## 6124    72226
## 6125    72998
## 6126    74789
## 6127    76093
## 6128    76251
## 6129        2
## 6130       19
## 6131       31
## 6132       44
## 6133      110
## 6134      150
## 6135      153
## 6136      158
## 6137      165
## 6138      168
## 6139      173
## 6140      204
## 6141      208
## 6142      225
## 6143      231
## 6144      252
## 6145      261
## 6146      266
## 6147      292
## 6148      296
## 6149      300
## 6150      316
## 6151      317
## 6152      333
## 6153      337
## 6154      344
## 6155      349
## 6156      350
## 6157      356
## 6158      364
## 6159      367
## 6160      377
## 6161      380
## 6162      410
## 6163      420
## 6164      428
## 6165      432
## 6166      434
## 6167      440
## 6168      442
## 6169      457
## 6170      480
## 6171      553
## 6172      588
## 6173      589
## 6174      590
## 6175      592
## 6176      595
## 6177       19
## 6178       88
## 6179      157
## 6180      231
## 6181      344
## 6182      377
## 6183      532
## 6184      562
## 6185      832
## 6186      851
## 6187      908
## 6188     1060
## 6189     1091
## 6190     1120
## 6191     1186
## 6192     1196
## 6193     1197
## 6194     1198
## 6195     1230
## 6196     1258
## 6197     1259
## 6198     1285
## 6199     1291
## 6200     1347
## 6201     1359
## 6202     1394
## 6203     1407
## 6204     1717
## 6205     1760
## 6206     1784
## 6207     1967
## 6208     1974
## 6209     1982
## 6210     1983
## 6211     1984
## 6212     1994
## 6213     2005
## 6214     2006
## 6215     2060
## 6216     2064
## 6217     2088
## 6218     2107
## 6219     2145
## 6220     2170
## 6221     2193
## 6222     2329
## 6223     2371
## 6224     2395
## 6225     2470
## 6226     2502
## 6227     2507
## 6228     2541
## 6229     2599
## 6230     2617
## 6231     2689
## 6232     2706
## 6233     2787
## 6234     2793
## 6235     2795
## 6236     2888
## 6237     2891
## 6238     2917
## 6239     2918
## 6240     2926
## 6241     2959
## 6242     2997
## 6243     3007
## 6244     3157
## 6245     3273
## 6246     3298
## 6247     3317
## 6248     3408
## 6249     3481
## 6250     3552
## 6251     3566
## 6252     3568
## 6253     3608
## 6254     3617
## 6255     3747
## 6256     3752
## 6257     3785
## 6258     3794
## 6259     3852
## 6260     3858
## 6261     3865
## 6262     3868
## 6263     3893
## 6264     3897
## 6265     3910
## 6266     3911
## 6267     4016
## 6268     4017
## 6269     4027
## 6270     4214
## 6271     4247
## 6272     4248
## 6273     4251
## 6274     4333
## 6275     4340
## 6276     4378
## 6277     4388
## 6278     4447
## 6279     4450
## 6280     4452
## 6281     4483
## 6282     4488
## 6283     4502
## 6284     4509
## 6285     4558
## 6286     4621
## 6287     4622
## 6288     4641
## 6289     4643
## 6290     4649
## 6291     4652
## 6292     4662
## 6293     4678
## 6294     4679
## 6295     4718
## 6296     4728
## 6297     4809
## 6298     4878
## 6299     4890
## 6300     4898
## 6301     4929
## 6302     4956
## 6303     4963
## 6304     4974
## 6305     4975
## 6306     4988
## 6307     5015
## 6308     5074
## 6309     5106
## 6310     5282
## 6311     5339
## 6312     5483
## 6313     5669
## 6314     5673
## 6315        6
## 6316       21
## 6317       32
## 6318       39
## 6319       47
## 6320       50
## 6321       70
## 6322      110
## 6323      150
## 6324      198
## 6325      253
## 6326      260
## 6327      288
## 6328      293
## 6329      296
## 6330      316
## 6331      337
## 6332      377
## 6333      407
## 6334      442
## 6335      482
## 6336      527
## 6337      541
## 6338      555
## 6339      556
## 6340      562
## 6341      581
## 6342      589
## 6343      593
## 6344      595
## 6345      599
## 6346      608
## 6347      610
## 6348      678
## 6349      724
## 6350      750
## 6351      858
## 6352      912
## 6353      913
## 6354      919
## 6355      923
## 6356      924
## 6357      940
## 6358      969
## 6359     1036
## 6360     1059
## 6361     1089
## 6362     1090
## 6363     1092
## 6364     1097
## 6365     1103
## 6366     1104
## 6367     1120
## 6368     1129
## 6369     1130
## 6370     1147
## 6371     1178
## 6372     1179
## 6373     1193
## 6374     1196
## 6375     1198
## 6376     1200
## 6377     1201
## 6378     1204
## 6379     1206
## 6380     1207
## 6381     1208
## 6382     1213
## 6383     1214
## 6384     1215
## 6385     1219
## 6386     1220
## 6387     1221
## 6388     1222
## 6389     1231
## 6390     1234
## 6391     1240
## 6392     1247
## 6393     1250
## 6394     1252
## 6395     1253
## 6396     1254
## 6397     1258
## 6398     1259
## 6399     1262
## 6400     1263
## 6401     1267
## 6402     1270
## 6403     1272
## 6404     1276
## 6405     1287
## 6406     1298
## 6407     1299
## 6408     1320
## 6409     1321
## 6410     1339
## 6411     1340
## 6412     1358
## 6413     1387
## 6414     1396
## 6415     1407
## 6416     1464
## 6417     1527
## 6418     1580
## 6419     1589
## 6420     1597
## 6421     1610
## 6422     1617
## 6423     1645
## 6424     1653
## 6425     1676
## 6426     1690
## 6427     1754
## 6428     1923
## 6429     1931
## 6430     1952
## 6431     1954
## 6432     1965
## 6433     1997
## 6434     2009
## 6435     2028
## 6436     2064
## 6437     2076
## 6438     2105
## 6439     2288
## 6440     2289
## 6441     2311
## 6442     2338
## 6443     2353
## 6444     2366
## 6445     2396
## 6446     2407
## 6447     2527
## 6448     2528
## 6449     2529
## 6450     2553
## 6451     2571
## 6452     2599
## 6453     2644
## 6454     2648
## 6455     2657
## 6456     2662
## 6457     2716
## 6458     2762
## 6459     2793
## 6460     2797
## 6461     2858
## 6462     2863
## 6463     2871
## 6464     2901
## 6465     2908
## 6466     2916
## 6467     2921
## 6468     2944
## 6469     2949
## 6470     2951
## 6471     2971
## 6472     2985
## 6473     2987
## 6474     3032
## 6475     3035
## 6476     3062
## 6477     3066
## 6478     3074
## 6479     3168
## 6480     3196
## 6481     3256
## 6482     3286
## 6483     3361
## 6484     3386
## 6485     3418
## 6486     3467
## 6487     3468
## 6488     3471
## 6489     3504
## 6490     3508
## 6491     3527
## 6492     3551
## 6493     3634
## 6494     3702
## 6495     3703
## 6496     3706
## 6497     3727
## 6498     3811
## 6499     3917
## 6500     3927
## 6501     5060
## 6502       24
## 6503      230
## 6504      247
## 6505      468
## 6506      724
## 6507      838
## 6508      914
## 6509     1029
## 6510     1047
## 6511     1188
## 6512     1231
## 6513     1249
## 6514     1267
## 6515     2105
## 6516     2278
## 6517     2289
## 6518     2336
## 6519     2968
## 6520     3072
## 6521     3755
## 6522        6
## 6523       16
## 6524       18
## 6525       21
## 6526       25
## 6527       31
## 6528       32
## 6529       36
## 6530       41
## 6531       45
## 6532       50
## 6533       52
## 6534       55
## 6535       57
## 6536       58
## 6537       68
## 6538      111
## 6539      144
## 6540      145
## 6541      147
## 6542      151
## 6543      165
## 6544      216
## 6545      223
## 6546      232
## 6547      236
## 6548      242
## 6549      246
## 6550      248
## 6551      249
## 6552      252
## 6553      253
## 6554      256
## 6555      260
## 6556      261
## 6557      265
## 6558      272
## 6559      273
## 6560      277
## 6561      282
## 6562      288
## 6563      293
## 6564      296
## 6565      300
## 6566      306
## 6567      307
## 6568      308
## 6569      312
## 6570      315
## 6571      318
## 6572      321
## 6573      334
## 6574      345
## 6575      348
## 6576      350
## 6577      356
## 6578      357
## 6579      362
## 6580      368
## 6581      372
## 6582      381
## 6583      382
## 6584      412
## 6585      420
## 6586      431
## 6587      432
## 6588      434
## 6589      440
## 6590      454
## 6591      457
## 6592      469
## 6593      475
## 6594      480
## 6595      481
## 6596      491
## 6597      508
## 6598      509
## 6599      515
## 6600      521
## 6601      524
## 6602      527
## 6603      531
## 6604      532
## 6605      534
## 6606      539
## 6607      540
## 6608      543
## 6609      551
## 6610      586
## 6611      587
## 6612      588
## 6613      590
## 6614      592
## 6615      593
## 6616      597
## 6617      640
## 6618      720
## 6619      778
## 6620      788
## 6621      838
## 6622     1036
## 6623     1150
## 6624     1356
## 6625     1367
## 6626        1
## 6627      364
## 6628      595
## 6629      902
## 6630      912
## 6631      920
## 6632      940
## 6633     1193
## 6634     1196
## 6635     1246
## 6636     1307
## 6637     1907
## 6638     2028
## 6639     2081
## 6640     2085
## 6641     2273
## 6642     2858
## 6643     3357
## 6644     3481
## 6645     3538
## 6646     3564
## 6647     3751
## 6648     3948
## 6649     3977
## 6650     3996
## 6651     4011
## 6652     4014
## 6653     4015
## 6654     4018
## 6655     4034
## 6656     4054
## 6657     4069
## 6658       16
## 6659       47
## 6660      110
## 6661      293
## 6662      296
## 6663      306
## 6664      318
## 6665      356
## 6666      364
## 6667      365
## 6668      367
## 6669      527
## 6670      588
## 6671      590
## 6672      593
## 6673      778
## 6674      838
## 6675      858
## 6676      926
## 6677     1078
## 6678     1080
## 6679     1136
## 6680     1172
## 6681     1213
## 6682     1221
## 6683     1244
## 6684     1289
## 6685     1682
## 6686     1704
## 6687     2000
## 6688     2025
## 6689     2068
## 6690     2075
## 6691     2092
## 6692     2131
## 6693     2194
## 6694     2324
## 6695     2571
## 6696     2641
## 6697     2686
## 6698     2750
## 6699     2858
## 6700     2959
## 6701     3328
## 6702     3578
## 6703     3677
## 6704     4114
## 6705     4226
## 6706     4422
## 6707     4862
## 6708     4936
## 6709     4973
## 6710     4993
## 6711     4995
## 6712     5349
## 6713     5418
## 6714     5952
## 6715     6107
## 6716     6365
## 6717     6539
## 6718     6870
## 6719     6874
## 6720     6953
## 6721     7063
## 6722     7089
## 6723     7153
## 6724     7234
## 6725     7327
## 6726     7396
## 6727     7438
## 6728     7936
## 6729     7941
## 6730     8154
## 6731     8197
## 6732     8239
## 6733     8656
## 6734    26587
## 6735    33794
## 6736    44555
## 6737    48682
## 6738    49530
## 6739    55118
## 6740    55247
## 6741    58559
## 6742    59447
## 6743    60069
## 6744    64614
## 6745    69761
## 6746    71180
## 6747    73344
## 6748    76111
## 6749    79132
## 6750    86781
## 6751    89759
## 6752    96829
## 6753    97826
## 6754    98587
## 6755   100843
## 6756   101070
## 6757   102753
## 6758   103980
## 6759   105197
## 6760   105355
## 6761   105769
## 6762   106487
## 6763   106782
## 6764   107555
## 6765   109374
## 6766   110102
## 6767   110586
## 6768   134130
## 6769        6
## 6770       10
## 6771       16
## 6772       21
## 6773       22
## 6774       31
## 6775       47
## 6776       50
## 6777       69
## 6778       70
## 6779       73
## 6780       76
## 6781      110
## 6782      145
## 6783      150
## 6784      153
## 6785      160
## 6786      162
## 6787      165
## 6788      168
## 6789      170
## 6790      175
## 6791      177
## 6792      180
## 6793      188
## 6794      198
## 6795      220
## 6796      223
## 6797      231
## 6798      253
## 6799      273
## 6800      285
## 6801      288
## 6802      293
## 6803      296
## 6804      315
## 6805      316
## 6806      328
## 6807      330
## 6808      332
## 6809      333
## 6810      338
## 6811      344
## 6812      353
## 6813      366
## 6814      380
## 6815      426
## 6816      434
## 6817      457
## 6818      553
## 6819      555
## 6820      588
## 6821      590
## 6822      592
## 6823      593
## 6824      595
## 6825      606
## 6826      611
## 6827      648
## 6828      662
## 6829      663
## 6830      743
## 6831       50
## 6832      260
## 6833     1136
## 6834     1196
## 6835     1197
## 6836     1198
## 6837     2959
## 6838     4226
## 6839     4993
## 6840     7153
## 6841     7361
## 6842     8874
## 6843     8961
## 6844    33794
## 6845    38061
## 6846    44191
## 6847    48516
## 6848    48774
## 6849    48780
## 6850    49272
## 6851    51255
## 6852    51540
## 6853    55820
## 6854    58559
## 6855    68157
## 6856    68237
## 6857    68954
## 6858    70286
## 6859    74458
## 6860    79132
## 6861    79702
## 6862    99114
## 6863   106920
## 6864   109487
## 6865   112556
## 6866   116797
## 6867   122882
## 6868   122886
## 6869   122904
## 6870   127202
## 6871   134130
## 6872   152077
## 6873   152081
## 6874        2
## 6875       29
## 6876      110
## 6877      130
## 6878      165
## 6879      172
## 6880      173
## 6881      196
## 6882      208
## 6883      233
## 6884      253
## 6885      260
## 6886      262
## 6887      316
## 6888      327
## 6889      329
## 6890      332
## 6891      353
## 6892      356
## 6893      377
## 6894      380
## 6895      426
## 6896      435
## 6897      442
## 6898      457
## 6899      541
## 6900      592
## 6901      610
## 6902      648
## 6903      674
## 6904      736
## 6905      748
## 6906      780
## 6907      849
## 6908      917
## 6909      919
## 6910      924
## 6911      986
## 6912     1037
## 6913     1073
## 6914     1077
## 6915     1097
## 6916     1127
## 6917     1129
## 6918     1196
## 6919     1200
## 6920     1206
## 6921     1210
## 6922     1214
## 6923     1220
## 6924     1222
## 6925     1240
## 6926     1270
## 6927     1298
## 6928     1302
## 6929     1320
## 6930     1333
## 6931     1356
## 6932     1371
## 6933     1372
## 6934     1373
## 6935     1374
## 6936     1375
## 6937     1376
## 6938     1437
## 6939     1527
## 6940     1545
## 6941     1552
## 6942     1580
## 6943     1591
## 6944     1676
## 6945     1690
## 6946     1719
## 6947     1747
## 6948     1748
## 6949     1772
## 6950     1779
## 6951     1876
## 6952     1880
## 6953     1917
## 6954     1965
## 6955     1997
## 6956     2001
## 6957     2003
## 6958     2009
## 6959     2011
## 6960     2012
## 6961     2025
## 6962     2105
## 6963     2117
## 6964     2174
## 6965     2232
## 6966     2311
## 6967     2322
## 6968     2454
## 6969     2455
## 6970     2520
## 6971     2521
## 6972     2522
## 6973     2528
## 6974     2529
## 6975     2530
## 6976     2531
## 6977     2532
## 6978     2536
## 6979     2553
## 6980     2571
## 6981     2600
## 6982     2640
## 6983     2641
## 6984     2642
## 6985     2729
## 6986     2746
## 6987     2808
## 6988     2858
## 6989     2877
## 6990     2916
## 6991     2918
## 6992     2950
## 6993     3033
## 6994     3156
## 6995     3175
## 6996     3253
## 6997     3300
## 6998     3354
## 6999     3471
## 7000     3479
## 7001     3556
## 7002     3593
## 7003     3638
## 7004     3698
## 7005     3699
## 7006     3702
## 7007     3703
## 7008     3704
## 7009     3745
## 7010     3793
## 7011     3802
## 7012     3863
## 7013     3910
## 7014     3937
## 7015     3986
## 7016     4039
## 7017     4232
## 7018     4306
## 7019     4370
## 7020     4443
## 7021     4446
## 7022     4553
## 7023     4625
## 7024     4678
## 7025     4691
## 7026     4789
## 7027     4811
## 7028     4874
## 7029     4936
## 7030     5219
## 7031     5349
## 7032     5445
## 7033     5459
## 7034     5463
## 7035     5490
## 7036     5518
## 7037     5522
## 7038     5618
## 7039     5694
## 7040     5705
## 7041     5881
## 7042     5903
## 7043     5981
## 7044     6116
## 7045     6157
## 7046     6264
## 7047     6303
## 7048     6316
## 7049     6333
## 7050     6365
## 7051     6385
## 7052     6502
## 7053     6537
## 7054     6541
## 7055     6645
## 7056     6678
## 7057     6725
## 7058     6863
## 7059     6934
## 7060     6951
## 7061     6979
## 7062     7001
## 7063     7060
## 7064     7164
## 7065     7373
## 7066     7817
## 7067     7991
## 7068     8371
## 7069     8499
## 7070     8633
## 7071     8644
## 7072     8861
## 7073      110
## 7074      165
## 7075      260
## 7076      296
## 7077      318
## 7078      349
## 7079      356
## 7080      380
## 7081      457
## 7082      480
## 7083      508
## 7084      527
## 7085      588
## 7086      589
## 7087      648
## 7088      733
## 7089      780
## 7090     1036
## 7091     1097
## 7092     1196
## 7093     1198
## 7094     1200
## 7095     1210
## 7096     1291
## 7097     1320
## 7098     1370
## 7099     1527
## 7100     1573
## 7101     1704
## 7102     1721
## 7103     2028
## 7104     2571
## 7105     2916
## 7106     2985
## 7107     3793
## 7108     3996
## 7109     4886
## 7110     4993
## 7111     5349
## 7112     5952
## 7113     7153
## 7114     7502
## 7115     8636
## 7116     8961
## 7117    33794
## 7118    40815
## 7119    44191
## 7120    48394
## 7121    48516
## 7122    58559
## 7123    59315
## 7124    63082
## 7125    68358
## 7126    69844
## 7127    70286
## 7128    73017
## 7129    74458
## 7130    76093
## 7131    79132
## 7132    87232
## 7133    89745
## 7134    91529
## 7135    98809
## 7136   106489
## 7137   106782
## 7138   109487
## 7139   111759
## 7140   112852
## 7141   122886
## 7142   134853
## 7143        1
## 7144       34
## 7145       39
## 7146       70
## 7147      104
## 7148      110
## 7149      216
## 7150      223
## 7151      231
## 7152      339
## 7153      356
## 7154      480
## 7155      500
## 7156      524
## 7157      527
## 7158      585
## 7159      588
## 7160      589
## 7161      608
## 7162      837
## 7163      838
## 7164     1035
## 7165     1210
## 7166     1380
## 7167     1457
## 7168     1476
## 7169     1513
## 7170     1517
## 7171     1544
## 7172     1569
## 7173     1580
## 7174     1612
## 7175     1673
## 7176     1726
## 7177     1777
## 7178     1806
## 7179     1821
## 7180     1883
## 7181     1895
## 7182     1907
## 7183     1958
## 7184     1968
## 7185     1997
## 7186     2000
## 7187     2003
## 7188     2004
## 7189     2054
## 7190     2081
## 7191     2082
## 7192     2109
## 7193     2144
## 7194     2150
## 7195     2160
## 7196     2291
## 7197     2321
## 7198     2355
## 7199     2384
## 7200     2390
## 7201     2395
## 7202     2396
## 7203     2447
## 7204     2454
## 7205     2455
## 7206     2496
## 7207     2539
## 7208     2622
## 7209     2671
## 7210     2683
## 7211     2688
## 7212     2690
## 7213     2700
## 7214     2706
## 7215     2723
## 7216     2770
## 7217     2791
## 7218     2804
## 7219     2836
## 7220     2858
## 7221     2879
## 7222     2978
## 7223     2997
## 7224     3005
## 7225     3052
## 7226     3114
## 7227     3156
## 7228     3160
## 7229     3173
## 7230     3189
## 7231     3247
## 7232     3254
## 7233     3255
## 7234     3286
## 7235     3301
## 7236     3409
## 7237     3450
## 7238     3481
## 7239     3510
## 7240     3515
## 7241     3525
## 7242     3535
## 7243     3555
## 7244     3624
## 7245     3712
## 7246     3753
## 7247     3773
## 7248     3868
## 7249     3869
## 7250     3917
## 7251     3948
## 7252     3969
## 7253        1
## 7254        3
## 7255        5
## 7256        6
## 7257       17
## 7258       25
## 7259       32
## 7260       62
## 7261       95
## 7262      104
## 7263      135
## 7264      141
## 7265      260
## 7266      494
## 7267      628
## 7268      637
## 7269      648
## 7270      733
## 7271      736
## 7272      780
## 7273      786
## 7274      788
## 7275      802
## 7276      805
## 7277     1047
## 7278      520
## 7279      899
## 7280      903
## 7281     1199
## 7282     1333
## 7283     1639
## 7284     1673
## 7285     1748
## 7286     2572
## 7287     2692
## 7288     2699
## 7289     3052
## 7290     3160
## 7291     3307
## 7292     3753
## 7293     4235
## 7294     4246
## 7295     4995
## 7296     5878
## 7297     7064
## 7298    26151
## 7299       73
## 7300      355
## 7301      724
## 7302     1270
## 7303     1359
## 7304     1515
## 7305     1707
## 7306     1965
## 7307     2153
## 7308     2379
## 7309     2381
## 7310     2383
## 7311     2398
## 7312     2539
## 7313     2541
## 7314     2605
## 7315     2804
## 7316     3157
## 7317     3247
## 7318     3868
## 7319     4993
## 7320     5952
## 7321     7004
## 7322     7153
## 7323     8387
## 7324    26614
## 7325    33615
## 7326    33794
## 7327    49530
## 7328    50872
## 7329    58559
## 7330    59018
## 7331    79132
## 7332    80463
## 7333    81834
## 7334    88125
## 7335    89745
## 7336    91529
## 7337    98124
## 7338        1
## 7339        2
## 7340       10
## 7341       32
## 7342       39
## 7343       50
## 7344       95
## 7345      110
## 7346      150
## 7347      153
## 7348      160
## 7349      161
## 7350      165
## 7351      173
## 7352      208
## 7353      231
## 7354      236
## 7355      253
## 7356      266
## 7357      288
## 7358      292
## 7359      296
## 7360      300
## 7361      315
## 7362      316
## 7363      329
## 7364      344
## 7365      349
## 7366      380
## 7367      410
## 7368      420
## 7369      434
## 7370      442
## 7371      457
## 7372      588
## 7373      592
## 7374      593
## 7375      595
## 7376        1
## 7377        2
## 7378       34
## 7379      110
## 7380      111
## 7381      158
## 7382      163
## 7383      223
## 7384      231
## 7385      288
## 7386      293
## 7387      296
## 7388      344
## 7389      356
## 7390      364
## 7391      367
## 7392      480
## 7393      501
## 7394      527
## 7395      541
## 7396      562
## 7397      593
## 7398      595
## 7399      648
## 7400      673
## 7401      741
## 7402      778
## 7403      784
## 7404      858
## 7405      924
## 7406     1097
## 7407     1127
## 7408     1148
## 7409     1175
## 7410     1185
## 7411     1206
## 7412     1214
## 7413     1222
## 7414     1240
## 7415     1258
## 7416     1270
## 7417     1274
## 7418     1293
## 7419     1407
## 7420     1485
## 7421     1499
## 7422     1527
## 7423     1544
## 7424     1580
## 7425     1591
## 7426     1676
## 7427     1682
## 7428     1721
## 7429     1732
## 7430     1784
## 7431     1882
## 7432     1884
## 7433     1917
## 7434     1921
## 7435     1923
## 7436     1997
## 7437     2006
## 7438     2167
## 7439     2232
## 7440     2288
## 7441     2291
## 7442     2294
## 7443     2318
## 7444     2324
## 7445     2329
## 7446     2355
## 7447     2455
## 7448     2542
## 7449     2571
## 7450     2617
## 7451     2692
## 7452     2700
## 7453     2706
## 7454     2710
## 7455     2722
## 7456     2762
## 7457     2840
## 7458     2959
## 7459     2987
## 7460     2997
## 7461     3000
## 7462     3114
## 7463     3147
## 7464     3527
## 7465     3578
## 7466     3677
## 7467     3717
## 7468     3745
## 7469     3751
## 7470     3793
## 7471     3949
## 7472     3968
## 7473     4011
## 7474     4016
## 7475     4022
## 7476     4226
## 7477     4270
## 7478     4306
## 7479     4369
## 7480     4446
## 7481     4720
## 7482     4878
## 7483     4886
## 7484     4902
## 7485     4973
## 7486     4975
## 7487     4993
## 7488     4995
## 7489     5010
## 7490     5146
## 7491     5218
## 7492     5225
## 7493     5349
## 7494     5459
## 7495     5502
## 7496     5570
## 7497     5618
## 7498     5669
## 7499     5679
## 7500     5690
## 7501     5902
## 7502     5903
## 7503     5952
## 7504     5971
## 7505     5995
## 7506     6016
## 7507     6214
## 7508     6223
## 7509     6242
## 7510     6283
## 7511     6291
## 7512     6350
## 7513     6365
## 7514     6373
## 7515     6377
## 7516     6539
## 7517     6711
## 7518     6857
## 7519     6890
## 7520     6934
## 7521     6953
## 7522     7099
## 7523     7147
## 7524     7153
## 7525     7235
## 7526     7254
## 7527     7256
## 7528     7360
## 7529     7361
## 7530     7373
## 7531     7382
## 7532     7982
## 7533     8132
## 7534     8157
## 7535     8360
## 7536     8376
## 7537     8582
## 7538     8636
## 7539     8645
## 7540     8784
## 7541     8807
## 7542     8874
## 7543     8906
## 7544     8907
## 7545     8950
## 7546     8957
## 7547     8961
## 7548     8965
## 7549    26662
## 7550    26776
## 7551    27156
## 7552    27523
## 7553    27660
## 7554    27713
## 7555    27722
## 7556    27731
## 7557    27773
## 7558    27800
## 7559    27801
## 7560    27838
## 7561    27846
## 7562    27850
## 7563    27878
## 7564    30793
## 7565    30867
## 7566    31410
## 7567    31435
## 7568    31658
## 7569    31878
## 7570    32031
## 7571    32554
## 7572    32562
## 7573    32587
## 7574    33154
## 7575    33166
## 7576    33615
## 7577    33679
## 7578    34323
## 7579    34405
## 7580    36276
## 7581    36535
## 7582    37729
## 7583    37830
## 7584    38038
## 7585    40629
## 7586    41569
## 7587    41769
## 7588    42723
## 7589    44022
## 7590    44191
## 7591    44397
## 7592    44555
## 7593    44633
## 7594    44828
## 7595    44974
## 7596    45431
## 7597    45517
## 7598    45720
## 7599    45950
## 7600    46578
## 7601    46948
## 7602    46976
## 7603    47099
## 7604    47124
## 7605    47404
## 7606    47610
## 7607    47999
## 7608    48043
## 7609    48082
## 7610    48385
## 7611    48394
## 7612    48414
## 7613    48774
## 7614    48780
## 7615    48982
## 7616    48997
## 7617    49278
## 7618    50583
## 7619    50601
## 7620    50872
## 7621    51255
## 7622    51540
## 7623    51662
## 7624    52281
## 7625    52287
## 7626    52319
## 7627    52328
## 7628    52458
## 7629    52722
## 7630    53121
## 7631    53326
## 7632    53460
## 7633    53519
## 7634    53883
## 7635    53894
## 7636    53996
## 7637    54272
## 7638    54503
## 7639    54995
## 7640    55247
## 7641    55280
## 7642    55442
## 7643    55444
## 7644    55768
## 7645    55814
## 7646    55908
## 7647    55995
## 7648    56069
## 7649    56095
## 7650    56145
## 7651    56174
## 7652    56339
## 7653    56367
## 7654    56607
## 7655    56757
## 7656    56782
## 7657    56908
## 7658    57274
## 7659    57368
## 7660    57453
## 7661    57504
## 7662    57640
## 7663    57669
## 7664    57980
## 7665    58299
## 7666    58347
## 7667    58554
## 7668    58559
## 7669    59118
## 7670    59141
## 7671    59315
## 7672    59387
## 7673    59684
## 7674    59784
## 7675    60069
## 7676    60126
## 7677    60161
## 7678    60291
## 7679    60684
## 7680    60763
## 7681    61240
## 7682    61323
## 7683    62203
## 7684    62250
## 7685    62956
## 7686    62999
## 7687    63082
## 7688    63131
## 7689    63808
## 7690    63859
## 7691    64575
## 7692    64716
## 7693    64957
## 7694    64969
## 7695    64983
## 7696    64993
## 7697    65037
## 7698    65261
## 7699    65514
## 7700    66097
## 7701    66371
## 7702    67197
## 7703    67255
## 7704    67408
## 7705    67734
## 7706    68157
## 7707    68237
## 7708    68358
## 7709    68945
## 7710    68954
## 7711    69122
## 7712    69526
## 7713    69644
## 7714    69712
## 7715    69757
## 7716    70159
## 7717    70286
## 7718    70533
## 7719    70567
## 7720    71033
## 7721    71057
## 7722    71264
## 7723    71282
## 7724    71379
## 7725    71462
## 7726    71468
## 7727    71520
## 7728    71535
## 7729    71579
## 7730    71899
## 7731    72104
## 7732    72209
## 7733    72393
## 7734    72731
## 7735    72741
## 7736    72998
## 7737    73017
## 7738    73268
## 7739    73321
## 7740    73392
## 7741    73664
## 7742    73881
## 7743    74228
## 7744    74677
## 7745    74789
## 7746    76093
## 7747    76173
## 7748    76251
## 7749    77307
## 7750    77427
## 7751    77561
## 7752    77837
## 7753    78499
## 7754    79029
## 7755    79091
## 7756    79132
## 7757    79357
## 7758    79702
## 7759    79868
## 7760    80463
## 7761    80586
## 7762    80831
## 7763    80862
## 7764    80906
## 7765    81018
## 7766    81562
## 7767    81564
## 7768    81591
## 7769    81845
## 7770    81847
## 7771    82461
## 7772    82667
## 7773    83132
## 7774    83134
## 7775    83803
## 7776    84152
## 7777    84187
## 7778    84772
## 7779    84944
## 7780    84952
## 7781    85412
## 7782    85414
## 7783    85510
## 7784    85736
## 7785    85774
## 7786    85788
## 7787    85796
## 7788    86298
## 7789    86332
## 7790    86347
## 7791    86721
## 7792    87222
## 7793    87232
## 7794    87306
## 7795    87430
## 7796    87520
## 7797    88140
## 7798    88744
## 7799    89745
## 7800    89837
## 7801    90469
## 7802    90531
## 7803    90647
## 7804    90746
## 7805    91414
## 7806    91529
## 7807    91542
## 7808    92058
## 7809    92420
## 7810    93272
## 7811    93838
## 7812    93840
## 7813    95167
## 7814    95311
## 7815    95375
## 7816    95510
## 7817    95543
## 7818    95858
## 7819    95875
## 7820    96281
## 7821    96606
## 7822    96610
## 7823    96737
## 7824    96821
## 7825    97188
## 7826    97225
## 7827    97752
## 7828    97913
## 7829    97921
## 7830    97938
## 7831    97957
## 7832    98056
## 7833    98243
## 7834    98809
## 7835    99114
## 7836    99145
## 7837   100556
## 7838   101142
## 7839   102125
## 7840   102445
## 7841   103042
## 7842   103228
## 7843   103249
## 7844   103253
## 7845   103299
## 7846   103335
## 7847   103688
## 7848   104841
## 7849   106002
## 7850   106072
## 7851   106204
## 7852   106489
## 7853   106696
## 7854   107406
## 7855   107769
## 7856   107953
## 7857   108190
## 7858   108945
## 7859   109487
## 7860   109578
## 7861   109673
## 7862   109846
## 7863   109848
## 7864   109850
## 7865   110102
## 7866   110127
## 7867   110501
## 7868   110553
## 7869   110591
## 7870   110655
## 7871   110730
## 7872   111362
## 7873   111364
## 7874   111659
## 7875   111759
## 7876   112175
## 7877   112370
## 7878   112515
## 7879   112623
## 7880   112852
## 7881   113741
## 7882   114180
## 7883   114935
## 7884   115149
## 7885   115534
## 7886   115617
## 7887   115624
## 7888   118696
## 7889        2
## 7890       60
## 7891      161
## 7892      173
## 7893      258
## 7894      303
## 7895      329
## 7896      356
## 7897      421
## 7898      466
## 7899      524
## 7900      590
## 7901      592
## 7902      653
## 7903      674
## 7904      688
## 7905      733
## 7906      736
## 7907      750
## 7908      780
## 7909      897
## 7910      912
## 7911      919
## 7912      920
## 7913      952
## 7914      969
## 7915      976
## 7916     1017
## 7917     1073
## 7918     1085
## 7919     1127
## 7920     1129
## 7921     1196
## 7922     1197
## 7923     1198
## 7924     1204
## 7925     1208
## 7926     1210
## 7927     1242
## 7928     1254
## 7929     1262
## 7930     1272
## 7931     1287
## 7932     1291
## 7933     1374
## 7934     1375
## 7935     1376
## 7936     1391
## 7937     1580
## 7938     1676
## 7939     1927
## 7940     2013
## 7941     2054
## 7942     2088
## 7943     2094
## 7944     2105
## 7945     2115
## 7946     2161
## 7947     2202
## 7948     2287
## 7949     2366
## 7950     2402
## 7951     2406
## 7952     2414
## 7953     2430
## 7954     2471
## 7955     2524
## 7956     2537
## 7957     2662
## 7958     2669
## 7959     2748
## 7960     2815
## 7961     2816
## 7962     2817
## 7963     2871
## 7964     2941
## 7965     2944
## 7966     2968
## 7967     2987
## 7968     3062
## 7969     3066
## 7970     3196
## 7971     3247
## 7972     3269
## 7973     3406
## 7974     3412
## 7975     3417
## 7976     3441
## 7977     3461
## 7978     3519
## 7979     3628
## 7980     3643
## 7981     3755
## 7982     3836
## 7983     3927
## 7984     3959
## 7985     4042
## 7986     4047
## 7987     5060
## 7988       10
## 7989       21
## 7990       39
## 7991       47
## 7992       95
## 7993      110
## 7994      150
## 7995      160
## 7996      161
## 7997      165
## 7998      185
## 7999      208
## 8000      231
## 8001      253
## 8002      282
## 8003      292
## 8004      296
## 8005      315
## 8006      316
## 8007      337
## 8008      339
## 8009      344
## 8010      349
## 8011      356
## 8012      357
## 8013      367
## 8014      368
## 8015      377
## 8016      380
## 8017      420
## 8018      434
## 8019      440
## 8020      442
## 8021      454
## 8022      457
## 8023      480
## 8024      509
## 8025      527
## 8026      539
## 8027      553
## 8028      587
## 8029      589
## 8030      590
## 8031      597
## 8032      780
## 8033      786
## 8034      913
## 8035     1636
## 8036     1888
## 8037     1948
## 8038     1959
## 8039     1968
## 8040     2369
## 8041     2396
## 8042     2605
## 8043     2670
## 8044     2683
## 8045     2688
## 8046     2699
## 8047     2701
## 8048     2713
## 8049     2722
## 8050     2724
## 8051     2734
## 8052     2761
## 8053     2763
## 8054     2826
## 8055     2827
## 8056     2840
## 8057     2841
## 8058     2881
## 8059     2987
## 8060     3157
## 8061     3175
## 8062     3219
## 8063     3510
## 8064     3543
## 8065      357
## 8066      365
## 8067      461
## 8068      866
## 8069     1088
## 8070     1295
## 8071     1614
## 8072     1639
## 8073     1735
## 8074     1969
## 8075     2338
## 8076     2396
## 8077     2408
## 8078     2806
## 8079     2858
## 8080     3155
## 8081     3255
## 8082     3793
## 8083     3854
## 8084     3967
## 8085     3987
## 8086     3996
## 8087     4014
## 8088     4228
## 8089     4246
## 8090     4896
## 8091     4973
## 8092     5222
## 8093     5296
## 8094     5380
## 8095     5525
## 8096     5791
## 8097     5812
## 8098     5816
## 8099     5878
## 8100     5992
## 8101     6058
## 8102     6218
## 8103     6370
## 8104     6539
## 8105     6776
## 8106     6807
## 8107     6942
## 8108     7160
## 8109     7615
## 8110     8368
## 8111     8781
## 8112     8918
## 8113     8966
## 8114     8983
## 8115    27020
## 8116    27721
## 8117    30825
## 8118    31408
## 8119    37727
## 8120    38886
## 8121    39183
## 8122    40815
## 8123    41571
## 8124    43744
## 8125    44555
## 8126    45447
## 8127    50872
## 8128    51094
## 8129    52545
## 8130    54001
## 8131    55451
## 8132    60950
## 8133      111
## 8134      165
## 8135      238
## 8136      392
## 8137      420
## 8138      421
## 8139      484
## 8140      968
## 8141     1193
## 8142     1370
## 8143     1580
## 8144     1610
## 8145     1772
## 8146     1911
## 8147     1917
## 8148     1995
## 8149     2002
## 8150     2093
## 8151     2336
## 8152     2368
## 8153     2394
## 8154     2396
## 8155     2412
## 8156     2433
## 8157     2470
## 8158     2690
## 8159     2699
## 8160     2700
## 8161     2709
## 8162     2710
## 8163     2716
## 8164     2717
## 8165     2720
## 8166     2761
## 8167     2762
## 8168     2840
## 8169     2912
## 8170     2986
## 8171     2987
## 8172     2997
## 8173     3107
## 8174     3114
## 8175     3160
## 8176     3178
## 8177     3274
## 8178     3434
## 8179      318
## 8180     1027
## 8181     1088
## 8182     1201
## 8183     1203
## 8184     1333
## 8185     1680
## 8186     2150
## 8187     2471
## 8188     2571
## 8189     2991
## 8190     3258
## 8191     3462
## 8192     3638
## 8193     3906
## 8194     4467
## 8195     4963
## 8196     5418
## 8197     6378
## 8198     8533
## 8199     8665
## 8200    26160
## 8201    26294
## 8202    30749
## 8203    33794
## 8204    44197
## 8205    44199
## 8206    48516
## 8207    48660
## 8208    48780
## 8209    48997
## 8210    54286
## 8211    55820
## 8212    56941
## 8213    58803
## 8214    60069
## 8215    68157
## 8216    69640
## 8217    71899
## 8218    77846
## 8219    78499
## 8220    79132
## 8221    91355
## 8222    96655
## 8223        1
## 8224        5
## 8225        6
## 8226        7
## 8227        9
## 8228       32
## 8229       65
## 8230       74
## 8231       79
## 8232       95
## 8233      100
## 8234      104
## 8235      112
## 8236      141
## 8237      260
## 8238      376
## 8239      494
## 8240      608
## 8241      609
## 8242      637
## 8243      648
## 8244      653
## 8245      707
## 8246      708
## 8247      719
## 8248      724
## 8249      733
## 8250      736
## 8251      737
## 8252      761
## 8253      780
## 8254      784
## 8255      786
## 8256      788
## 8257      802
## 8258      805
## 8259      832
## 8260     1073
## 8261        1
## 8262       10
## 8263       16
## 8264       21
## 8265       29
## 8266       39
## 8267       47
## 8268       50
## 8269      101
## 8270      104
## 8271      111
## 8272      147
## 8273      160
## 8274      176
## 8275      216
## 8276      223
## 8277      231
## 8278      246
## 8279      250
## 8280      260
## 8281      292
## 8282      293
## 8283      296
## 8284      318
## 8285      333
## 8286      337
## 8287      342
## 8288      356
## 8289      377
## 8290      441
## 8291      442
## 8292      456
## 8293      457
## 8294      480
## 8295      527
## 8296      529
## 8297      541
## 8298      586
## 8299      593
## 8300      673
## 8301      750
## 8302      778
## 8303      916
## 8304      919
## 8305      922
## 8306      923
## 8307      924
## 8308      926
## 8309      942
## 8310      951
## 8311      953
## 8312     1036
## 8313     1060
## 8314     1073
## 8315     1089
## 8316     1094
## 8317     1095
## 8318     1097
## 8319     1120
## 8320     1136
## 8321     1172
## 8322     1193
## 8323     1196
## 8324     1197
## 8325     1198
## 8326     1201
## 8327     1206
## 8328     1207
## 8329     1208
## 8330     1209
## 8331     1210
## 8332     1213
## 8333     1222
## 8334     1225
## 8335     1226
## 8336     1228
## 8337     1230
## 8338     1235
## 8339     1240
## 8340     1244
## 8341     1247
## 8342     1250
## 8343     1252
## 8344     1256
## 8345     1258
## 8346     1259
## 8347     1263
## 8348     1265
## 8349     1266
## 8350     1270
## 8351     1283
## 8352     1285
## 8353     1288
## 8354     1291
## 8355     1302
## 8356     1304
## 8357     1307
## 8358     1358
## 8359     1380
## 8360     1387
## 8361     1393
## 8362     1449
## 8363     1466
## 8364     1608
## 8365     1617
## 8366     1673
## 8367     1676
## 8368     1682
## 8369     1704
## 8370     1721
## 8371     1732
## 8372     1784
## 8373     1907
## 8374     1923
## 8375     1947
## 8376     1952
## 8377     1953
## 8378     1954
## 8379     1957
## 8380     1958
## 8381     1961
## 8382     1968
## 8383     2000
## 8384     2005
## 8385     2006
## 8386     2011
## 8387     2028
## 8388     2042
## 8389     2052
## 8390     2060
## 8391     2072
## 8392     2082
## 8393     2115
## 8394     2144
## 8395     2186
## 8396     2194
## 8397     2248
## 8398     2253
## 8399     2300
## 8400     2321
## 8401     2324
## 8402     2329
## 8403     2395
## 8404     2420
## 8405     2502
## 8406     2542
## 8407     2572
## 8408     2599
## 8409     2617
## 8410     2694
## 8411     2700
## 8412     2716
## 8413     2746
## 8414     2761
## 8415     2791
## 8416     2797
## 8417     2804
## 8418     2858
## 8419     2863
## 8420     2918
## 8421     2925
## 8422     2947
## 8423     2951
## 8424     2953
## 8425     2959
## 8426     3034
## 8427     3039
## 8428     3072
## 8429     3079
## 8430     3086
## 8431     3089
## 8432     3098
## 8433     3104
## 8434     3114
## 8435     3152
## 8436     3160
## 8437     3210
## 8438     3253
## 8439     3255
## 8440     3268
## 8441     3360
## 8442     3361
## 8443     3365
## 8444     3421
## 8445     3424
## 8446     3468
## 8447     3480
## 8448     3489
## 8449     3504
## 8450     3552
## 8451     3606
## 8452     3608
## 8453     3653
## 8454     3671
## 8455     3683
## 8456     3751
## 8457     3783
## 8458     3791
## 8459     3868
## 8460     3897
## 8461     3916
## 8462     3972
## 8463     3988
## 8464     4016
## 8465     4022
## 8466     4027
## 8467     4034
## 8468     4054
## 8469     4085
## 8470     4091
## 8471     4102
## 8472     4226
## 8473     4262
## 8474     4306
## 8475     4370
## 8476     4406
## 8477     4447
## 8478     4571
## 8479     4649
## 8480     4771
## 8481     4776
## 8482     4816
## 8483     4848
## 8484     4878
## 8485     4881
## 8486     4886
## 8487     4896
## 8488     4973
## 8489     4993
## 8490     5103
## 8491     5377
## 8492     5401
## 8493     5418
## 8494     5445
## 8495     5673
## 8496     5785
## 8497     5816
## 8498     5902
## 8499     5952
## 8500     5970
## 8501     5995
## 8502     6003
## 8503     6016
## 8504     6188
## 8505     6373
## 8506     6377
## 8507     6618
## 8508     6732
## 8509     6796
## 8510     6863
## 8511     6867
## 8512     6870
## 8513     6873
## 8514     6874
## 8515     6932
## 8516     6936
## 8517     6942
## 8518     6978
## 8519     7018
## 8520     7022
## 8521     7036
## 8522     7072
## 8523     7132
## 8524     7147
## 8525     7153
## 8526     7263
## 8527     7361
## 8528     7438
## 8529     7451
## 8530     8360
## 8531     8368
## 8532     8376
## 8533     8528
## 8534     8641
## 8535     8665
## 8536     8784
## 8537     8807
## 8538     8874
## 8539     8914
## 8540     8917
## 8541     8961
## 8542     8972
## 8543    26084
## 8544    26471
## 8545    27253
## 8546    27773
## 8547    32587
## 8548    32598
## 8549    33166
## 8550    33495
## 8551    33660
## 8552    33794
## 8553    33880
## 8554    34162
## 8555    34528
## 8556    35836
## 8557    37733
## 8558    38038
## 8559    38061
## 8560    38886
## 8561    39292
## 8562    40629
## 8563    40815
## 8564    41566
## 8565    44191
## 8566    44199
## 8567    46578
## 8568    46948
## 8569    46970
## 8570    47099
## 8571    48322
## 8572    48516
## 8573    48698
## 8574    48982
## 8575    49272
## 8576    50514
## 8577    50872
## 8578    51255
## 8579    51540
## 8580    51662
## 8581    52245
## 8582    52435
## 8583    53123
## 8584    53125
## 8585    54001
## 8586    54256
## 8587    54286
## 8588    54503
## 8589    54881
## 8590    55052
## 8591    55118
## 8592    55247
## 8593    55765
## 8594    55805
## 8595    55820
## 8596    56174
## 8597    56333
## 8598    56367
## 8599    56757
## 8600    56782
## 8601    57532
## 8602    57669
## 8603    58025
## 8604    58559
## 8605    59118
## 8606    59315
## 8607    59369
## 8608    60684
## 8609    60756
## 8610    60950
## 8611    61024
## 8612    61132
## 8613    63082
## 8614    63113
## 8615    63131
## 8616    64969
## 8617    64983
## 8618    65188
## 8619    67087
## 8620    67734
## 8621    67997
## 8622    68157
## 8623    68954
## 8624    69122
## 8625    69306
## 8626    69844
## 8627    70286
## 8628    70293
## 8629    70728
## 8630    71264
## 8631    71466
## 8632    71535
## 8633    71579
## 8634    72011
## 8635    72171
## 8636    72226
## 8637    72720
## 8638    73023
## 8639    74275
## 8640    74416
## 8641    74754
## 8642    74916
## 8643    76111
## 8644    76251
## 8645    78499
## 8646    79091
## 8647    79132
## 8648    79592
## 8649    79677
## 8650    79702
## 8651    80463
## 8652    80549
## 8653    81156
## 8654    81562
## 8655    81591
## 8656    81834
## 8657    83086
## 8658    83976
## 8659    84116
## 8660    85414
## 8661    85438
## 8662    86000
## 8663    86884
## 8664    86911
## 8665    87232
## 8666    87304
## 8667    87522
## 8668    87869
## 8669    88125
## 8670    88744
## 8671    88810
## 8672    88812
## 8673    89492
## 8674    89759
## 8675    90374
## 8676    90376
## 8677    90600
## 8678    90947
## 8679    91199
## 8680    91529
## 8681    92420
## 8682    93270
## 8683    93422
## 8684    93443
## 8685    93510
## 8686    93512
## 8687    93721
## 8688    94896
## 8689    94959
## 8690    95088
## 8691    95441
## 8692    95510
## 8693    96079
## 8694    96110
## 8695    96467
## 8696    96728
## 8697    96829
## 8698    96911
## 8699    97306
## 8700    97836
## 8701    97866
## 8702    97921
## 8703    97923
## 8704    97938
## 8705    99114
## 8706    99117
## 8707    99764
## 8708    99917
## 8709   100272
## 8710   100556
## 8711   101577
## 8712   102123
## 8713   102800
## 8714   102993
## 8715   103141
## 8716   103279
## 8717   103624
## 8718   103688
## 8719   104944
## 8720   105197
## 8721   105429
## 8722   105715
## 8723   105844
## 8724   106062
## 8725   106100
## 8726   106144
## 8727   106332
## 8728   106438
## 8729   106916
## 8730   106920
## 8731   107141
## 8732   107348
## 8733   107978
## 8734   108156
## 8735   108932
## 8736   110461
## 8737   111362
## 8738   111617
## 8739   112138
## 8740   112183
## 8741   112421
## 8742   112515
## 8743   112552
## 8744   112556
## 8745   112852
## 8746   113064
## 8747   113453
## 8748   113705
## 8749   113829
## 8750   113862
## 8751   114074
## 8752   114342
## 8753   114635
## 8754   115569
## 8755   116797
## 8756   122882
## 8757   122886
## 8758   127108
## 8759   127152
## 8760   127198
## 8761   127206
## 8762   128360
## 8763   128620
## 8764   131168
## 8765   133771
## 8766   134170
## 8767   134853
## 8768   136864
## 8769   139116
## 8770   139385
## 8771   139757
## 8772   140715
## 8773   141890
## 8774   142422
## 8775   142488
## 8776   146656
## 8777   148626
## 8778   148881
## 8779   152081
## 8780   155392
## 8781   156609
## 8782   160590
## 8783       11
## 8784       17
## 8785       21
## 8786       34
## 8787      110
## 8788      151
## 8789      163
## 8790      164
## 8791      260
## 8792      265
## 8793      293
## 8794      318
## 8795      337
## 8796      350
## 8797      356
## 8798      357
## 8799      380
## 8800      440
## 8801      468
## 8802      497
## 8803      509
## 8804      527
## 8805      534
## 8806      538
## 8807      555
## 8808      590
## 8809      592
## 8810      608
## 8811      635
## 8812      648
## 8813      728
## 8814      800
## 8815      858
## 8816      914
## 8817      921
## 8818     1007
## 8819     1009
## 8820     1028
## 8821     1035
## 8822     1036
## 8823     1073
## 8824     1079
## 8825     1080
## 8826     1081
## 8827     1088
## 8828     1091
## 8829     1092
## 8830     1094
## 8831     1097
## 8832     1101
## 8833     1124
## 8834     1125
## 8835     1127
## 8836     1128
## 8837     1129
## 8838     1130
## 8839     1135
## 8840     1136
## 8841     1148
## 8842     1185
## 8843     1186
## 8844     1193
## 8845     1194
## 8846     1196
## 8847     1197
## 8848     1198
## 8849     1200
## 8850     1208
## 8851     1214
## 8852     1220
## 8853     1221
## 8854     1222
## 8855     1224
## 8856     1225
## 8857     1227
## 8858     1234
## 8859     1240
## 8860     1242
## 8861     1243
## 8862     1246
## 8863     1252
## 8864     1258
## 8865     1259
## 8866     1263
## 8867     1265
## 8868     1270
## 8869     1272
## 8870     1275
## 8871     1278
## 8872     1286
## 8873     1288
## 8874     1291
## 8875     1296
## 8876     1299
## 8877     1302
## 8878     1307
## 8879     1321
## 8880     1323
## 8881     1326
## 8882     1327
## 8883     1345
## 8884     1346
## 8885     1347
## 8886     1350
## 8887     1357
## 8888     1358
## 8889     1378
## 8890     1380
## 8891     1387
## 8892     1393
## 8893     1394
## 8894     1408
## 8895     1422
## 8896     1459
## 8897     1476
## 8898     1587
## 8899     1589
## 8900     1597
## 8901     1617
## 8902     1625
## 8903     1641
## 8904     1645
## 8905     1663
## 8906     1674
## 8907     1704
## 8908     1719
## 8909     1721
## 8910     1732
## 8911     1754
## 8912     1784
## 8913     1892
## 8914     1909
## 8915     1914
## 8916     1917
## 8917     1918
## 8918     1923
## 8919     1947
## 8920     1951
## 8921     1953
## 8922     1954
## 8923     1955
## 8924     1956
## 8925     1957
## 8926     1958
## 8927     1961
## 8928     1962
## 8929     1964
## 8930     1967
## 8931     1968
## 8932     1974
## 8933     1975
## 8934     1977
## 8935     1978
## 8936     1979
## 8937     1981
## 8938     1982
## 8939     1983
## 8940     1984
## 8941     1987
## 8942     1994
## 8943     1995
## 8944     1996
## 8945     1997
## 8946     2000
## 8947     2001
## 8948     2003
## 8949     2005
## 8950     2006
## 8951     2009
## 8952     2013
## 8953     2020
## 8954     2027
## 8955     2028
## 8956     2037
## 8957     2044
## 8958     2054
## 8959     2070
## 8960     2088
## 8961     2097
## 8962     2100
## 8963     2109
## 8964     2110
## 8965     2111
## 8966     2114
## 8967     2115
## 8968     2118
## 8969     2121
## 8970     2122
## 8971     2125
## 8972     2130
## 8973     2143
## 8974     2144
## 8975     2153
## 8976     2161
## 8977     2163
## 8978     2174
## 8979     2178
## 8980     2193
## 8981     2194
## 8982     2240
## 8983     2245
## 8984     2268
## 8985     2288
## 8986     2291
## 8987     2300
## 8988     2301
## 8989     2302
## 8990     2313
## 8991     5060
## 8992       11
## 8993       19
## 8994      150
## 8995      344
## 8996      410
## 8997      415
## 8998      616
## 8999      748
## 9000      909
## 9001      924
## 9002      940
## 9003      952
## 9004      965
## 9005      969
## 9006      999
## 9007     1007
## 9008     1019
## 9009     1021
## 9010     1127
## 9011     1200
## 9012     1203
## 9013     1214
## 9014     1225
## 9015     1230
## 9016     1269
## 9017     1320
## 9018     1321
## 9019     1367
## 9020     1459
## 9021     1499
## 9022     1517
## 9023     1608
## 9024     1690
## 9025     1784
## 9026     1917
## 9027     1927
## 9028     2015
## 9029     2016
## 9030     2072
## 9031     2085
## 9032     2124
## 9033     2133
## 9034     2153
## 9035     2163
## 9036     2180
## 9037     2202
## 9038     2311
## 9039     2475
## 9040     2505
## 9041     2520
## 9042     2522
## 9043     2551
## 9044     2683
## 9045     2788
## 9046     2791
## 9047     2792
## 9048     2817
## 9049     2827
## 9050     2846
## 9051     3070
## 9052     3153
## 9053     3251
## 9054     3420
## 9055     3421
## 9056     3510
## 9057     3524
## 9058     3535
## 9059     3555
## 9060     3649
## 9061     3672
## 9062     3701
## 9063     3706
## 9064     3710
## 9065       11
## 9066       32
## 9067       50
## 9068      111
## 9069      150
## 9070      223
## 9071      231
## 9072      292
## 9073      296
## 9074      300
## 9075      318
## 9076      367
## 9077      380
## 9078      410
## 9079      412
## 9080      480
## 9081      527
## 9082      541
## 9083      586
## 9084      590
## 9085      593
## 9086      720
## 9087      745
## 9088      858
## 9089      912
## 9090      919
## 9091     1136
## 9092     1148
## 9093     1193
## 9094     1213
## 9095     1221
## 9096     1356
## 9097     1673
## 9098     1722
## 9099     1923
## 9100     1961
## 9101     1968
## 9102     2028
## 9103     2105
## 9104     2161
## 9105     2167
## 9106     2193
## 9107     2194
## 9108     2302
## 9109     2329
## 9110     2396
## 9111     2470
## 9112     2542
## 9113     2617
## 9114     2640
## 9115     2671
## 9116     2683
## 9117     2692
## 9118     2716
## 9119     2763
## 9120     2797
## 9121     2858
## 9122     2959
## 9123     2997
## 9124     3253
## 9125     3578
## 9126     3623
## 9127     3751
## 9128     3911
## 9129     3948
## 9130     4306
## 9131     4993
## 9132     5060
## 9133     5349
## 9134     5952
## 9135     6787
## 9136     7040
## 9137     7153
## 9138     7361
## 9139     8961
## 9140    26695
## 9141    33794
## 9142    34153
## 9143       16
## 9144       21
## 9145      111
## 9146      163
## 9147      173
## 9148      235
## 9149      466
## 9150      541
## 9151      608
## 9152      653
## 9153      720
## 9154      745
## 9155      858
## 9156     1080
## 9157     1090
## 9158     1208
## 9159     1209
## 9160     1219
## 9161     1221
## 9162     1380
## 9163     1485
## 9164     1653
## 9165     1673
## 9166     1732
## 9167     2012
## 9168     2115
## 9169     2174
## 9170     2324
## 9171     2640
## 9172     2710
## 9173     2797
## 9174     3018
## 9175     3160
## 9176     3608
## 9177     3726
## 9178     3949
## 9179     4973
## 9180     5060
## 9181     5618
## 9182     5690
## 9183     5945
## 9184     5952
## 9185     5959
## 9186     5995
## 9187     6350
## 9188     6502
## 9189     6957
## 9190     7361
## 9191     7387
## 9192     8638
## 9193     8981
## 9194    27773
## 9195    27801
## 9196    27803
## 9197    30749
## 9198        2
## 9199       34
## 9200       48
## 9201       50
## 9202      104
## 9203      158
## 9204      231
## 9205      317
## 9206      364
## 9207      500
## 9208      551
## 9209      585
## 9210      586
## 9211      587
## 9212      588
## 9213      592
## 9214      593
## 9215      594
## 9216      595
## 9217      596
## 9218      616
## 9219      661
## 9220      673
## 9221      801
## 9222      919
## 9223      953
## 9224     1010
## 9225     1022
## 9226     1028
## 9227     1029
## 9228     1035
## 9229     1059
## 9230     1073
## 9231     1097
## 9232     1136
## 9233     1197
## 9234     1207
## 9235     1220
## 9236     1367
## 9237     1380
## 9238     1500
## 9239     1580
## 9240     1777
## 9241     1907
## 9242     1954
## 9243     1968
## 9244     2018
## 9245     2054
## 9246     2078
## 9247     2080
## 9248     2081
## 9249     2085
## 9250     2087
## 9251     2123
## 9252     2144
## 9253     2161
## 9254     2174
## 9255     2273
## 9256     2300
## 9257     2355
## 9258     2384
## 9259     2502
## 9260     2571
## 9261     2572
## 9262     2716
## 9263     2761
## 9264     2804
## 9265     2857
## 9266     2918
## 9267     2953
## 9268     3114
## 9269     3668
## 9270     3751
## 9271     3988
## 9272     4016
## 9273     4025
## 9274     4232
## 9275     4246
## 9276     4306
## 9277     4333
## 9278     4701
## 9279     4886
## 9280     4890
## 9281     4896
## 9282     4993
## 9283     5299
## 9284     5349
## 9285     5444
## 9286     5449
## 9287     5459
## 9288     5481
## 9289     5618
## 9290     5693
## 9291     5816
## 9292     5952
## 9293     5971
## 9294     6218
## 9295     6350
## 9296     6373
## 9297     6377
## 9298     6539
## 9299     6743
## 9300     6863
## 9301     6936
## 9302     7004
## 9303     7153
## 9304     7161
## 9305     7451
## 9306     8360
## 9307     8368
## 9308     8376
## 9309     8464
## 9310     8544
## 9311     8961
## 9312     8970
## 9313    26662
## 9314    27706
## 9315    30793
## 9316    33004
## 9317    33615
## 9318    33660
## 9319    33679
## 9320    33794
## 9321    34150
## 9322    34162
## 9323    40629
## 9324    40815
## 9325    41566
## 9326    44191
## 9327    44195
## 9328    45431
## 9329    45517
## 9330    45720
## 9331    45722
## 9332    46578
## 9333    46970
## 9334    46972
## 9335    46976
## 9336    47610
## 9337    48394
## 9338    48780
## 9339    50872
## 9340    52973
## 9341    53121
## 9342    53125
## 9343    53322
## 9344    53464
## 9345    53996
## 9346    54001
## 9347    54272
## 9348    55566
## 9349    55830
## 9350    56030
## 9351    56171
## 9352    56174
## 9353    56367
## 9354    56757
## 9355    57640
## 9356    57669
## 9357    58025
## 9358    58559
## 9359    58998
## 9360    59315
## 9361    60069
## 9362    60074
## 9363    60126
## 9364      111
## 9365      260
## 9366      318
## 9367     1196
## 9368     1210
## 9369     1270
## 9370     2028
## 9371     2918
## 9372     2959
## 9373     4226
## 9374     5418
## 9375     6016
## 9376     8665
## 9377    48774
## 9378    49530
## 9379    54286
## 9380    58559
## 9381    68157
## 9382    68237
## 9383    69481
## 9384    70286
## 9385    70862
## 9386    79132
## 9387    81591
## 9388    85414
## 9389    91535
## 9390    92259
## 9391    97304
## 9392   101864
## 9393   101947
## 9394   103228
## 9395   104374
## 9396   104841
## 9397   106782
## 9398   106920
## 9399   109487
## 9400   111759
## 9401   112183
## 9402   112290
## 9403   112552
## 9404   114662
## 9405   115149
## 9406   115569
## 9407   115713
## 9408   119145
## 9409   120637
## 9410   122882
## 9411   122900
## 9412   134130
## 9413   134853
## 9414   139644
## 9415   146656
## 9416   160438
## 9417        1
## 9418       11
## 9419       16
## 9420       58
## 9421      112
## 9422      150
## 9423      151
## 9424      246
## 9425      260
## 9426      315
## 9427      318
## 9428      380
## 9429      432
## 9430      457
## 9431      480
## 9432      515
## 9433      520
## 9434      592
## 9435      593
## 9436      720
## 9437      832
## 9438     1015
## 9439     1059
## 9440     1080
## 9441     1105
## 9442     1193
## 9443     1198
## 9444     1214
## 9445     1221
## 9446     1230
## 9447     1234
## 9448     1259
## 9449     1304
## 9450     1307
## 9451     1356
## 9452     1372
## 9453     1374
## 9454     1376
## 9455     1408
## 9456     1474
## 9457     1513
## 9458     1517
## 9459     1573
## 9460     1610
## 9461     1639
## 9462     1641
## 9463     1917
## 9464     1954
## 9465     1961
## 9466     2004
## 9467     2046
## 9468     2116
## 9469     2174
## 9470     2268
## 9471     2302
## 9472     2393
## 9473     2571
## 9474     2628
## 9475     2640
## 9476     2699
## 9477     2710
## 9478     2762
## 9479     2791
## 9480     2797
## 9481     2858
## 9482     2918
## 9483     2959
## 9484     2987
## 9485     2997
## 9486     3114
## 9487     3176
## 9488     3328
## 9489     3408
## 9490     3471
## 9491     3481
## 9492     3578
## 9493     3751
## 9494     3793
## 9495     3868
## 9496     3869
## 9497     3897
## 9498     3996
## 9499     4022
## 9500     4306
## 9501     4367
## 9502     4369
## 9503     4446
## 9504     4846
## 9505     4993
## 9506     5349
## 9507     5952
## 9508     6333
## 9509     6541
## 9510     6711
## 9511     6863
## 9512     7153
## 9513     7318
## 9514      110
## 9515      150
## 9516      153
## 9517      165
## 9518      168
## 9519      231
## 9520      253
## 9521      266
## 9522      296
## 9523      318
## 9524      329
## 9525      344
## 9526      349
## 9527      356
## 9528      380
## 9529      434
## 9530      457
## 9531      590
## 9532      592
## 9533      593
## 9534      595
## 9535      260
## 9536      858
## 9537      909
## 9538      920
## 9539      924
## 9540     1077
## 9541     1078
## 9542     1084
## 9543     1210
## 9544     1221
## 9545     1230
## 9546     1238
## 9547     1256
## 9548     1270
## 9549     1278
## 9550     1288
## 9551     1292
## 9552     1299
## 9553     1304
## 9554     1952
## 9555     1956
## 9556     2064
## 9557     2289
## 9558     2863
## 9559     2871
## 9560     2971
## 9561     5060
## 9562       21
## 9563       22
## 9564      105
## 9565      110
## 9566      260
## 9567      356
## 9568      377
## 9569      457
## 9570      480
## 9571      589
## 9572      593
## 9573      608
## 9574      832
## 9575      858
## 9576      908
## 9577     1036
## 9578     1092
## 9579     1129
## 9580     1179
## 9581     1196
## 9582     1198
## 9583     1200
## 9584     1203
## 9585     1240
## 9586     1249
## 9587     1270
## 9588     1275
## 9589     1573
## 9590     1580
## 9591     1625
## 9592     1732
## 9593     1954
## 9594     2000
## 9595     2058
## 9596     2117
## 9597     2194
## 9598     2268
## 9599     2391
## 9600     2455
## 9601     2456
## 9602     2571
## 9603     2605
## 9604     2858
## 9605     2947
## 9606     2985
## 9607     3527
## 9608     3633
## 9609     3763
## 9610     3957
## 9611        1
## 9612        6
## 9613       12
## 9614       16
## 9615       17
## 9616       18
## 9617       28
## 9618       34
## 9619       42
## 9620       43
## 9621       60
## 9622       62
## 9623       86
## 9624       88
## 9625       94
## 9626       95
## 9627      104
## 9628      107
## 9629      110
## 9630      112
## 9631      141
## 9632      151
## 9633      198
## 9634      238
## 9635      260
## 9636      265
## 9637      266
## 9638      272
## 9639      277
## 9640      279
## 9641      280
## 9642      282
## 9643      288
## 9644      293
## 9645      294
## 9646      296
## 9647      314
## 9648      316
## 9649      318
## 9650      337
## 9651      350
## 9652      353
## 9653      356
## 9654      362
## 9655      364
## 9656      368
## 9657      383
## 9658      412
## 9659      431
## 9660      434
## 9661      452
## 9662      454
## 9663      457
## 9664      474
## 9665      475
## 9666      480
## 9667      491
## 9668      493
## 9669      509
## 9670      515
## 9671      524
## 9672      531
## 9673      541
## 9674      553
## 9675      586
## 9676      587
## 9677      589
## 9678      590
## 9679      592
## 9680      593
## 9681      595
## 9682      597
## 9683      609
## 9684      610
## 9685      613
## 9686      616
## 9687      628
## 9688      631
## 9689      637
## 9690      648
## 9691      650
## 9692      653
## 9693      664
## 9694      694
## 9695      707
## 9696      708
## 9697      709
## 9698      711
## 9699      719
## 9700      724
## 9701      733
## 9702      736
## 9703      743
## 9704      780
## 9705      784
## 9706      788
## 9707      849
## 9708      852
## 9709     1027
## 9710     1035
## 9711     1073
## 9712     1084
## 9713     1097
## 9714        1
## 9715        2
## 9716       11
## 9717      150
## 9718      260
## 9719      317
## 9720      318
## 9721      356
## 9722      367
## 9723      380
## 9724      454
## 9725      457
## 9726      468
## 9727      480
## 9728      500
## 9729      527
## 9730      539
## 9731      541
## 9732      586
## 9733      587
## 9734      590
## 9735      592
## 9736      597
## 9737      778
## 9738      780
## 9739      904
## 9740      908
## 9741      912
## 9742      914
## 9743      933
## 9744      934
## 9745      953
## 9746     1035
## 9747     1073
## 9748     1097
## 9749     1185
## 9750     1196
## 9751     1197
## 9752     1198
## 9753     1200
## 9754     1231
## 9755     1265
## 9756     1270
## 9757     1278
## 9758     1291
## 9759     1292
## 9760     1302
## 9761     1376
## 9762     1393
## 9763     1409
## 9764     1580
## 9765     1608
## 9766     1721
## 9767     1923
## 9768     1951
## 9769     1959
## 9770     2174
## 9771     2384
## 9772     2420
## 9773     2468
## 9774     2469
## 9775     2716
## 9776     2746
## 9777     2762
## 9778     2779
## 9779     2791
## 9780     2797
## 9781     2918
## 9782     2968
## 9783     3072
## 9784     3148
## 9785     3247
## 9786     3510
## 9787     3578
## 9788     3699
## 9789     3755
## 9790     4187
## 9791     4306
## 9792     4886
## 9793     4963
## 9794     4992
## 9795     4993
## 9796     4995
## 9797     5218
## 9798     5299
## 9799     5349
## 9800     5418
## 9801     5816
## 9802     5952
## 9803     5989
## 9804     5995
## 9805     6218
## 9806     6297
## 9807     6373
## 9808     6377
## 9809     6539
## 9810     6863
## 9811     6874
## 9812     7147
## 9813     7153
## 9814     7361
## 9815     8360
## 9816     8529
## 9817     8623
## 9818     8636
## 9819     8865
## 9820     8961
## 9821     8972
## 9822    26025
## 9823    26562
## 9824    30707
## 9825    30749
## 9826    30812
## 9827    31374
## 9828    31658
## 9829    31685
## 9830    33004
## 9831    45431
## 9832    45517
## 9833    45668
## 9834    46976
## 9835    54259
## 9836    56367
## 9837        1
## 9838        2
## 9839        5
## 9840       19
## 9841       34
## 9842       39
## 9843       48
## 9844      104
## 9845      158
## 9846      231
## 9847      262
## 9848      296
## 9849      318
## 9850      344
## 9851      356
## 9852      357
## 9853      364
## 9854      374
## 9855      410
## 9856      500
## 9857      527
## 9858      586
## 9859      587
## 9860      595
## 9861      596
## 9862      597
## 9863      788
## 9864      919
## 9865      934
## 9866     1020
## 9867     1028
## 9868     1035
## 9869     1073
## 9870     1193
## 9871     1265
## 9872     1270
## 9873     1513
## 9874     1682
## 9875     1704
## 9876     1721
## 9877     1954
## 9878     1968
## 9879     2011
## 9880     2012
## 9881     2028
## 9882     2054
## 9883     2059
## 9884     2136
## 9885     2240
## 9886     2302
## 9887     2321
## 9888     2355
## 9889     2379
## 9890     2706
## 9891     2918
## 9892     2987
## 9893     3114
## 9894     3253
## 9895     3668
## 9896     3791
## 9897     3821
## 9898     3948
## 9899     3977
## 9900     4254
## 9901     4306
## 9902     4878
## 9903     4886
## 9904     4896
## 9905     4993
## 9906     5308
## 9907     5349
## 9908     5816
## 9909     5952
## 9910     6377
## 9911     6539
## 9912     7153
## 9913     7361
## 9914     8961
## 9915    58047
## 9916    68554
## 9917    69757
## 9918        1
## 9919        3
## 9920        5
## 9921        7
## 9922        9
## 9923       12
## 9924       14
## 9925       17
## 9926       25
## 9927       26
## 9928       32
## 9929       36
## 9930       52
## 9931       58
## 9932       61
## 9933       62
## 9934       63
## 9935       65
## 9936       76
## 9937       79
## 9938       81
## 9939       82
## 9940       86
## 9941       88
## 9942       92
## 9943       95
## 9944      100
## 9945      104
## 9946      107
## 9947      112
## 9948      135
## 9949      141
## 9950      376
## 9951      494
## 9952      608
## 9953      609
## 9954      613
## 9955      628
## 9956      631
## 9957      637
## 9958      640
## 9959      648
## 9960      653
## 9961      661
## 9962      663
## 9963      667
## 9964      671
## 9965      673
## 9966      694
## 9967      704
## 9968      707
## 9969      708
## 9970      711
## 9971      719
## 9972      724
## 9973      733
## 9974      736
## 9975      737
## 9976      743
## 9977      745
## 9978      748
## 9979      761
## 9980      762
## 9981      780
## 9982      784
## 9983      785
## 9984      786
## 9985      788
## 9986      799
## 9987      802
## 9988      805
## 9989      810
## 9990      832
## 9991      839
## 9992      849
## 9993      852
## 9994      880
## 9995      891
## 9996     1059
## 9997     1061
## 9998     1073
## 9999     1356
## 10000    1367
## 10001     581
## 10002     589
## 10003     908
## 10004    1171
## 10005    1259
## 10006    1284
## 10007    1617
## 10008    1673
## 10009    1957
## 10010    2858
## 10011    3098
## 10012    3125
## 10013    3160
## 10014    3422
## 10015    3481
## 10016    3626
## 10017    3920
## 10018    3925
## 10019    3930
## 10020    3932
## 10021    3963
## 10022    3965
## 10023    3966
## 10024       1
## 10025       2
## 10026      47
## 10027      50
## 10028     110
## 10029     150
## 10030     260
## 10031     296
## 10032     318
## 10033     356
## 10034     480
## 10035     527
## 10036     541
## 10037     593
## 10038     608
## 10039     778
## 10040     858
## 10041     912
## 10042     924
## 10043    1036
## 10044    1196
## 10045    1200
## 10046    1206
## 10047    1208
## 10048    1213
## 10049    1221
## 10050    1222
## 10051    1246
## 10052    1258
## 10053    1270
## 10054    1682
## 10055    1961
## 10056    2006
## 10057    2028
## 10058    2324
## 10059    2395
## 10060    2571
## 10061    2628
## 10062    2692
## 10063    2762
## 10064    2858
## 10065    2918
## 10066    2959
## 10067    3114
## 10068    3481
## 10069    3578
## 10070    3717
## 10071    3753
## 10072    3793
## 10073    3897
## 10074    3949
## 10075    3996
## 10076    4011
## 10077    4018
## 10078    4022
## 10079    4025
## 10080    4027
## 10081    4226
## 10082    4246
## 10083    4262
## 10084    4306
## 10085    4447
## 10086    4720
## 10087    4878
## 10088    4886
## 10089    4963
## 10090    4973
## 10091    4979
## 10092    4993
## 10093    4995
## 10094    5218
## 10095    5349
## 10096    5378
## 10097    5418
## 10098    5445
## 10099    5679
## 10100    5903
## 10101    5952
## 10102    5989
## 10103    5995
## 10104    6333
## 10105    6377
## 10106    6502
## 10107    6539
## 10108    6711
## 10109    6863
## 10110    6874
## 10111    6934
## 10112    7143
## 10113    7147
## 10114    7153
## 10115    7254
## 10116    7361
## 10117    7438
## 10118    7458
## 10119    7502
## 10120    8644
## 10121    8874
## 10122    8950
## 10123    8961
## 10124   31696
## 10125   33794
## 10126   36529
## 10127   41566
## 10128   44191
## 10129   44195
## 10130   45447
## 10131   46578
## 10132   47610
## 10133   48385
## 10134   48394
## 10135   48516
## 10136   49272
## 10137   50872
## 10138   51255
## 10139   51540
## 10140   51662
## 10141   52281
## 10142   52722
## 10143   52973
## 10144   53000
## 10145   53125
## 10146   53322
## 10147   53519
## 10148   53972
## 10149   53996
## 10150   54001
## 10151   54259
## 10152   54272
## 10153   54286
## 10154   54503
## 10155   54997
## 10156   55247
## 10157   55269
## 10158   55765
## 10159   55820
## 10160   56174
## 10161   56367
## 10162   56757
## 10163   56782
## 10164   58559
## 10165   59315
## 10166   60069
## 10167   61323
## 10168   64957
## 10169   68157
## 10170   68319
## 10171   68358
## 10172   68954
## 10173   69122
## 10174   72998
## 10175   74458
## 10176   79132
## 10177   79702
## 10178   81562
## 10179   81591
## 10180   82459
## 10181   86882
## 10182   88140
## 10183   88744
## 10184   89492
## 10185   89745
## 10186   91529
## 10187   92259
## 10188   94959
## 10189   97752
## 10190   97938
## 10191   99114
## 10192  102445
## 10193  103249
## 10194  104374
## 10195  104841
## 10196  105844
## 10197  106100
## 10198  106920
## 10199  109487
## 10200  112552
## 10201  112852
## 10202  114662
## 10203  115713
## 10204  116797
## 10205  117176
## 10206  122882
## 10207  122886
## 10208  122904
## 10209  122920
## 10210  134130
## 10211  136864
## 10212  139385
## 10213  142488
## 10214  156607
## 10215       1
## 10216       2
## 10217       6
## 10218      10
## 10219      15
## 10220      16
## 10221      19
## 10222      21
## 10223      25
## 10224      31
## 10225      32
## 10226      34
## 10227      36
## 10228      39
## 10229      44
## 10230      47
## 10231      48
## 10232      50
## 10233      60
## 10234      63
## 10235      65
## 10236      69
## 10237      70
## 10238      98
## 10239     101
## 10240     104
## 10241     107
## 10242     110
## 10243     111
## 10244     112
## 10245     145
## 10246     147
## 10247     150
## 10248     153
## 10249     158
## 10250     160
## 10251     163
## 10252     165
## 10253     168
## 10254     169
## 10255     172
## 10256     173
## 10257     175
## 10258     177
## 10259     180
## 10260     185
## 10261     193
## 10262     198
## 10263     208
## 10264     215
## 10265     216
## 10266     223
## 10267     231
## 10268     233
## 10269     235
## 10270     239
## 10271     246
## 10272     247
## 10273     253
## 10274     256
## 10275     258
## 10276     260
## 10277     266
## 10278     267
## 10279     288
## 10280     292
## 10281     293
## 10282     296
## 10283     300
## 10284     316
## 10285     318
## 10286     319
## 10287     322
## 10288     327
## 10289     333
## 10290     337
## 10291     338
## 10292     344
## 10293     349
## 10294     352
## 10295     353
## 10296     356
## 10297     364
## 10298     367
## 10299     368
## 10300     374
## 10301     377
## 10302     380
## 10303     407
## 10304     409
## 10305     410
## 10306     413
## 10307     428
## 10308     431
## 10309     435
## 10310     441
## 10311     442
## 10312     456
## 10313     457
## 10314     466
## 10315     471
## 10316     474
## 10317     480
## 10318     481
## 10319     482
## 10320     485
## 10321     493
## 10322     497
## 10323     500
## 10324     502
## 10325     507
## 10326     508
## 10327     510
## 10328     514
## 10329     520
## 10330     522
## 10331     527
## 10332     541
## 10333     551
## 10334     553
## 10335     555
## 10336     575
## 10337     585
## 10338     586
## 10339     588
## 10340     589
## 10341     590
## 10342     592
## 10343     593
## 10344     594
## 10345     595
## 10346     596
## 10347     597
## 10348     608
## 10349     610
## 10350     628
## 10351     631
## 10352     648
## 10353     653
## 10354     673
## 10355     694
## 10356     704
## 10357     708
## 10358     719
## 10359     733
## 10360     735
## 10361     736
## 10362     737
## 10363     741
## 10364     742
## 10365     745
## 10366     748
## 10367     761
## 10368     778
## 10369     780
## 10370     784
## 10371     785
## 10372     786
## 10373     788
## 10374     799
## 10375     802
## 10376     832
## 10377     849
## 10378     858
## 10379     880
## 10380     904
## 10381     909
## 10382     919
## 10383     924
## 10384     940
## 10385     968
## 10386    1015
## 10387    1020
## 10388    1022
## 10389    1025
## 10390    1027
## 10391    1029
## 10392    1032
## 10393    1033
## 10394    1036
## 10395    1049
## 10396    1059
## 10397    1060
## 10398    1061
## 10399    1080
## 10400    1089
## 10401    1090
## 10402    1093
## 10403    1094
## 10404    1097
## 10405    1101
## 10406    1120
## 10407    1127
## 10408    1129
## 10409    1136
## 10410    1148
## 10411    1185
## 10412    1186
## 10413    1193
## 10414    1194
## 10415    1196
## 10416    1197
## 10417    1198
## 10418    1199
## 10419    1200
## 10420    1201
## 10421    1203
## 10422    1204
## 10423    1206
## 10424    1208
## 10425    1210
## 10426    1213
## 10427    1214
## 10428    1215
## 10429    1218
## 10430    1220
## 10431    1221
## 10432    1222
## 10433    1225
## 10434    1228
## 10435    1240
## 10436    1241
## 10437    1242
## 10438    1245
## 10439    1246
## 10440    1252
## 10441    1255
## 10442    1257
## 10443    1258
## 10444    1259
## 10445    1261
## 10446    1262
## 10447    1263
## 10448    1265
## 10449    1266
## 10450    1270
## 10451    1274
## 10452    1275
## 10453    1282
## 10454    1285
## 10455    1288
## 10456    1291
## 10457    1293
## 10458    1298
## 10459    1299
## 10460    1302
## 10461    1320
## 10462    1321
## 10463    1339
## 10464    1342
## 10465    1343
## 10466    1345
## 10467    1347
## 10468    1350
## 10469    1356
## 10470    1358
## 10471    1359
## 10472    1367
## 10473    1370
## 10474    1372
## 10475    1374
## 10476    1377
## 10477    1380
## 10478    1387
## 10479    1391
## 10480    1393
## 10481    1394
## 10482    1396
## 10483    1405
## 10484    1407
## 10485    1408
## 10486    1438
## 10487    1456
## 10488    1464
## 10489    1466
## 10490    1479
## 10491    1485
## 10492    1499
## 10493    1500
## 10494    1515
## 10495    1517
## 10496    1527
## 10497    1544
## 10498    1552
## 10499    1562
## 10500    1566
## 10501    1573
## 10502    1580
## 10503    1584
## 10504    1587
## 10505    1590
## 10506    1591
## 10507    1595
## 10508    1597
## 10509    1599
## 10510    1603
## 10511    1608
## 10512    1617
## 10513    1625
## 10514    1639
## 10515    1644
## 10516    1645
## 10517    1653
## 10518    1673
## 10519    1674
## 10520    1676
## 10521    1681
## 10522    1682
## 10523    1690
## 10524    1704
## 10525    1707
## 10526    1721
## 10527    1729
## 10528    1732
## 10529    1748
## 10530    1752
## 10531    1753
## 10532    1760
## 10533    1762
## 10534    1777
## 10535    1779
## 10536    1784
## 10537    1785
## 10538    1792
## 10539    1826
## 10540    1840
## 10541    1858
## 10542    1862
## 10543    1876
## 10544    1882
## 10545    1884
## 10546    1909
## 10547    1911
## 10548    1912
## 10549    1916
## 10550    1917
## 10551    1920
## 10552    1923
## 10553    1953
## 10554    1954
## 10555    1961
## 10556    1965
## 10557    1967
## 10558    1968
## 10559    1974
## 10560    1982
## 10561    1991
## 10562    1994
## 10563    1997
## 10564    2000
## 10565    2003
## 10566    2004
## 10567    2005
## 10568    2006
## 10569    2009
## 10570    2011
## 10571    2012
## 10572    2018
## 10573    2021
## 10574    2023
## 10575    2028
## 10576    2033
## 10577    2052
## 10578    2054
## 10579    2058
## 10580    2060
## 10581    2076
## 10582    2078
## 10583    2080
## 10584    2081
## 10585    2082
## 10586    2087
## 10587    2089
## 10588    2090
## 10589    2093
## 10590    2096
## 10591    2105
## 10592    2115
## 10593    2123
## 10594    2124
## 10595    2134
## 10596    2138
## 10597    2139
## 10598    2140
## 10599    2142
## 10600    2143
## 10601    2144
## 10602    2148
## 10603    2150
## 10604    2159
## 10605    2161
## 10606    2164
## 10607    2167
## 10608    2174
## 10609    2193
## 10610    2194
## 10611    2195
## 10612    2231
## 10613    2232
## 10614    2248
## 10615    2252
## 10616    2273
## 10617    2278
## 10618    2288
## 10619    2289
## 10620    2291
## 10621    2294
## 10622    2302
## 10623    2305
## 10624    2315
## 10625    2318
## 10626    2321
## 10627    2324
## 10628    2327
## 10629    2329
## 10630    2335
## 10631    2340
## 10632    2353
## 10633    2355
## 10634    2360
## 10635    2378
## 10636    2387
## 10637    2391
## 10638    2394
## 10639    2395
## 10640    2396
## 10641    2402
## 10642    2403
## 10643    2404
## 10644    2406
## 10645    2409
## 10646    2410
## 10647    2411
## 10648    2412
## 10649    2420
## 10650    2421
## 10651    2422
## 10652    2424
## 10653    2427
## 10654    2428
## 10655    2429
## 10656    2431
## 10657    2451
## 10658    2455
## 10659    2459
## 10660    2460
## 10661    2467
## 10662    2470
## 10663    2490
## 10664    2495
## 10665    2502
## 10666    2528
## 10667    2529
## 10668    2541
## 10669    2542
## 10670    2551
## 10671    2555
## 10672    2560
## 10673    2571
## 10674    2572
## 10675    2580
## 10676    2582
## 10677    2596
## 10678    2599
## 10679    2605
## 10680    2606
## 10681    2617
## 10682    2628
## 10683    2657
## 10684    2671
## 10685    2683
## 10686    2687
## 10687    2692
## 10688    2694
## 10689    2699
## 10690    2700
## 10691    2701
## 10692    2706
## 10693    2707
## 10694    2710
## 10695    2712
## 10696    2713
## 10697    2716
## 10698    2717
## 10699    2720
## 10700    2722
## 10701    2723
## 10702    2724
## 10703    2728
## 10704    2734
## 10705    2746
## 10706    2761
## 10707    2762
## 10708    2770
## 10709    2791
## 10710    2797
## 10711    2798
## 10712    2804
## 10713    2808
## 10714    2841
## 10715    2858
## 10716    2860
## 10717    2862
## 10718    2867
## 10719    2871
## 10720    2872
## 10721    2879
## 10722    2890
## 10723    2900
## 10724    2901
## 10725    2915
## 10726    2916
## 10727    2918
## 10728    2921
## 10729    2924
## 10730    2947
## 10731    2948
## 10732    2951
## 10733    2952
## 10734    2953
## 10735    2959
## 10736    2968
## 10737    2974
## 10738    2985
## 10739    2987
## 10740    2997
## 10741    3006
## 10742    3013
## 10743    3016
## 10744    3018
## 10745    3019
## 10746    3020
## 10747    3033
## 10748    3034
## 10749    3036
## 10750    3052
## 10751    3070
## 10752    3081
## 10753    3082
## 10754    3101
## 10755    3104
## 10756    3108
## 10757    3113
## 10758    3114
## 10759    3146
## 10760    3147
## 10761    3153
## 10762    3160
## 10763    3173
## 10764    3174
## 10765    3175
## 10766    3178
## 10767    3210
## 10768    3213
## 10769    3252
## 10770    3253
## 10771    3254
## 10772    3255
## 10773    3256
## 10774    3263
## 10775    3265
## 10776    3267
## 10777    3273
## 10778    3275
## 10779    3298
## 10780    3300
## 10781    3328
## 10782    3360
## 10783    3361
## 10784    3362
## 10785    3363
## 10786    3424
## 10787    3426
## 10788    3438
## 10789    3439
## 10790    3440
## 10791    3448
## 10792    3471
## 10793    3476
## 10794    3479
## 10795    3481
## 10796    3489
## 10797    3499
## 10798    3527
## 10799    3535
## 10800    3552
## 10801    3554
## 10802    3555
## 10803    3573
## 10804    3574
## 10805    3578
## 10806    3581
## 10807    3593
## 10808    3617
## 10809    3623
## 10810    3671
## 10811    3681
## 10812    3687
## 10813    3688
## 10814    3696
## 10815    3698
## 10816    3702
## 10817    3703
## 10818    3704
## 10819    3706
## 10820    3717
## 10821    3727
## 10822    3728
## 10823    3735
## 10824    3740
## 10825    3745
## 10826    3751
## 10827    3752
## 10828    3753
## 10829    3755
## 10830    3761
## 10831    3785
## 10832    3793
## 10833    3821
## 10834    3826
## 10835    3843
## 10836    3852
## 10837    3861
## 10838    3882
## 10839    3897
## 10840    3916
## 10841    3917
## 10842    3948
## 10843    3949
## 10844    3950
## 10845    3955
## 10846    3961
## 10847    3962
## 10848    3967
## 10849    3970
## 10850    3972
## 10851    3977
## 10852    3979
## 10853    3986
## 10854    3994
## 10855    3996
## 10856    4002
## 10857    4006
## 10858    4007
## 10859    4011
## 10860    4014
## 10861    4015
## 10862    4018
## 10863    4019
## 10864    4022
## 10865    4025
## 10866    4027
## 10867    4034
## 10868    4054
## 10869    4069
## 10870    4085
## 10871    4103
## 10872    4105
## 10873    4128
## 10874    4135
## 10875    4148
## 10876    4214
## 10877    4223
## 10878    4226
## 10879    4232
## 10880    4239
## 10881    4246
## 10882    4255
## 10883    4262
## 10884    4270
## 10885    4275
## 10886    4299
## 10887    4306
## 10888    4308
## 10889    4310
## 10890    4340
## 10891    4343
## 10892    4344
## 10893    4351
## 10894    4361
## 10895    4367
## 10896    4369
## 10897    4370
## 10898    4378
## 10899    4388
## 10900    4415
## 10901    4437
## 10902    4438
## 10903    4441
## 10904    4443
## 10905    4444
## 10906    4447
## 10907    4448
## 10908    4454
## 10909    4467
## 10910    4488
## 10911    4519
## 10912    4533
## 10913    4553
## 10914    4571
## 10915    4577
## 10916    4614
## 10917    4618
## 10918    4619
## 10919    4621
## 10920    4624
## 10921    4638
## 10922    4641
## 10923    4642
## 10924    4643
## 10925    4697
## 10926    4701
## 10927    4713
## 10928    4718
## 10929    4720
## 10930    4728
## 10931    4734
## 10932    4744
## 10933    4775
## 10934    4776
## 10935    4800
## 10936    4816
## 10937    4823
## 10938    4846
## 10939    4848
## 10940    4855
## 10941    4865
## 10942    4873
## 10943    4874
## 10944    4878
## 10945    4886
## 10946    4890
## 10947    4896
## 10948    4899
## 10949    4915
## 10950    4963
## 10951    4974
## 10952    4975
## 10953    4979
## 10954    4980
## 10955    4987
## 10956    4989
## 10957    4993
## 10958    4995
## 10959    5010
## 10960    5014
## 10961    5025
## 10962    5040
## 10963    5055
## 10964    5064
## 10965    5094
## 10966    5103
## 10967    5110
## 10968    5139
## 10969    5146
## 10970    5151
## 10971    5152
## 10972    5159
## 10973    5165
## 10974    5205
## 10975    5210
## 10976    5218
## 10977    5219
## 10978    5244
## 10979    5266
## 10980    5283
## 10981    5294
## 10982    5299
## 10983    5313
## 10984    5329
## 10985    5349
## 10986    5378
## 10987    5388
## 10988    5401
## 10989    5418
## 10990    5445
## 10991    5449
## 10992    5452
## 10993    5459
## 10994    5463
## 10995    5464
## 10996    5481
## 10997    5502
## 10998    5504
## 10999    5507
## 11000    5524
## 11001    5540
## 11002    5541
## 11003    5572
## 11004    5574
## 11005    5585
## 11006    5617
## 11007    5618
## 11008    5621
## 11009    5630
## 11010    5666
## 11011    5669
## 11012    5673
## 11013    5679
## 11014    5690
## 11015    5691
## 11016    5734
## 11017    5735
## 11018    5736
## 11019    5737
## 11020    5746
## 11021    5810
## 11022    5816
## 11023    5882
## 11024    5902
## 11025    5903
## 11026    5942
## 11027    5943
## 11028    5952
## 11029    5954
## 11030    5955
## 11031    5956
## 11032    5959
## 11033    5989
## 11034    5991
## 11035    6016
## 11036    6025
## 11037    6155
## 11038    6156
## 11039    6157
## 11040    6188
## 11041    6212
## 11042    6213
## 11043    6218
## 11044    6223
## 11045    6281
## 11046    6287
## 11047    6298
## 11048    6303
## 11049    6323
## 11050    6333
## 11051    6338
## 11052    6365
## 11053    6373
## 11054    6377
## 11055    6378
## 11056    6379
## 11057    6383
## 11058    6440
## 11059    6502
## 11060    6503
## 11061    6534
## 11062    6537
## 11063    6539
## 11064    6548
## 11065    6559
## 11066    6564
## 11067    6565
## 11068    6566
## 11069    6582
## 11070    6586
## 11071    6593
## 11072    6595
## 11073    6602
## 11074    6615
## 11075    6659
## 11076    6664
## 11077    6695
## 11078    6707
## 11079    6708
## 11080    6711
## 11081    6731
## 11082    6754
## 11083    6755
## 11084    6774
## 11085    6796
## 11086    6803
## 11087    6807
## 11088    6816
## 11089    6820
## 11090    6857
## 11091    6863
## 11092    6870
## 11093    6874
## 11094    6887
## 11095    6888
## 11096    6902
## 11097    6934
## 11098    6936
## 11099    6947
## 11100    6952
## 11101    6953
## 11102    6957
## 11103    6977
## 11104    7001
## 11105    7007
## 11106    7022
## 11107    7036
## 11108    7045
## 11109    7046
## 11110    7063
## 11111    7090
## 11112    7099
## 11113    7117
## 11114    7137
## 11115    7143
## 11116    7147
## 11117    7153
## 11118    7161
## 11119    7235
## 11120    7254
## 11121    7285
## 11122    7293
## 11123    7308
## 11124    7317
## 11125    7318
## 11126    7324
## 11127    7325
## 11128    7346
## 11129    7360
## 11130    7361
## 11131    7367
## 11132    7373
## 11133    7387
## 11134    7411
## 11135    7419
## 11136    7438
## 11137    7445
## 11138    7454
## 11139    7458
## 11140    7481
## 11141    7482
## 11142    7502
## 11143    7701
## 11144    7743
## 11145    7802
## 11146    7842
## 11147    7844
## 11148    7845
## 11149    7846
## 11150    7915
## 11151    7976
## 11152    7984
## 11153    7987
## 11154    8131
## 11155    8340
## 11156    8360
## 11157    8361
## 11158    8363
## 11159    8368
## 11160    8371
## 11161    8372
## 11162    8373
## 11163    8376
## 11164    8507
## 11165    8526
## 11166    8528
## 11167    8529
## 11168    8531
## 11169    8622
## 11170    8636
## 11171    8638
## 11172    8640
## 11173    8641
## 11174    8644
## 11175    8665
## 11176    8783
## 11177    8784
## 11178    8798
## 11179    8807
## 11180    8810
## 11181    8811
## 11182    8854
## 11183    8859
## 11184    8861
## 11185    8874
## 11186    8906
## 11187    8910
## 11188    8914
## 11189    8917
## 11190    8928
## 11191    8947
## 11192    8949
## 11193    8950
## 11194    8957
## 11195    8961
## 11196    8972
## 11197    8984
## 11198   25962
## 11199   26258
## 11200   26403
## 11201   26480
## 11202   26547
## 11203   26585
## 11204   26603
## 11205   26606
## 11206   26684
## 11207   26704
## 11208   26729
## 11209   26736
## 11210   26842
## 11211   27002
## 11212   27022
## 11213   27032
## 11214   27109
## 11215   27317
## 11216   27369
## 11217   27478
## 11218   27555
## 11219   27604
## 11220   27611
## 11221   27646
## 11222   27660
## 11223   27704
## 11224   27706
## 11225   27772
## 11226   27773
## 11227   27778
## 11228   27793
## 11229   27800
## 11230   27801
## 11231   27808
## 11232   27831
## 11233   27904
## 11234   30707
## 11235   30749
## 11236   30810
## 11237   30812
## 11238   30820
## 11239   30825
## 11240   31150
## 11241   31225
## 11242   31290
## 11243   31422
## 11244   31431
## 11245   31435
## 11246   31685
## 11247   31696
## 11248   31878
## 11249   32352
## 11250   32387
## 11251   32587
## 11252   32596
## 11253   33004
## 11254   33162
## 11255   33164
## 11256   33166
## 11257   33171
## 11258   33493
## 11259   33679
## 11260   33794
## 11261   33834
## 11262   34048
## 11263   34150
## 11264   34162
## 11265   34319
## 11266   34405
## 11267   34437
## 11268   34530
## 11269   35836
## 11270   36519
## 11271   36529
## 11272   36708
## 11273   37386
## 11274   37731
## 11275   37733
## 11276   38061
## 11277   39381
## 11278   39446
## 11279   40278
## 11280   40574
## 11281   40629
## 11282   40732
## 11283   40815
## 11284   41285
## 11285   41566
## 11286   41569
## 11287   41997
## 11288   42011
## 11289   42723
## 11290   42725
## 11291   43838
## 11292   43919
## 11293   43921
## 11294   43936
## 11295   44191
## 11296   44195
## 11297   44199
## 11298   44245
## 11299   44397
## 11300   44665
## 11301   44761
## 11302   44972
## 11303   44974
## 11304   45183
## 11305   45186
## 11306   45447
## 11307   45506
## 11308   45666
## 11309   45672
## 11310   45722
## 11311   45726
## 11312   45728
## 11313   46322
## 11314   46335
## 11315   46337
## 11316   46578
## 11317   46865
## 11318   46965
## 11319   46970
## 11320   46972
## 11321   46976
## 11322   47099
## 11323   47200
## 11324   47610
## 11325   47640
## 11326   47815
## 11327   47997
## 11328   48043
## 11329   48304
## 11330   48385
## 11331   48394
## 11332   48516
## 11333   48591
## 11334   48696
## 11335   48744
## 11336   48774
## 11337   48780
## 11338   48877
## 11339   49272
## 11340   49278
## 11341   49526
## 11342   49528
## 11343   49530
## 11344   49649
## 11345   49651
## 11346   49817
## 11347   50641
## 11348   50651
## 11349   50794
## 11350   50798
## 11351   50806
## 11352   50872
## 11353   51255
## 11354   51277
## 11355   51540
## 11356   51662
## 11357   51931
## 11358   51937
## 11359   52245
## 11360   52281
## 11361   52328
## 11362   52458
## 11363   52462
## 11364   52604
## 11365   52722
## 11366   52952
## 11367   52973
## 11368   53000
## 11369   53121
## 11370   53125
## 11371   53318
## 11372   53322
## 11373   53468
## 11374   53519
## 11375   53550
## 11376   53972
## 11377   53996
## 11378   54001
## 11379   54190
## 11380   54272
## 11381   54286
## 11382   54290
## 11383   54331
## 11384   54503
## 11385   54648
## 11386   54745
## 11387   54995
## 11388   54997
## 11389   55052
## 11390   55094
## 11391   55207
## 11392   55232
## 11393   55245
## 11394   55247
## 11395   55269
## 11396   55290
## 11397   55577
## 11398   55721
## 11399   55765
## 11400   55805
## 11401   55820
## 11402   55830
## 11403   55995
## 11404   56003
## 11405   56145
## 11406   56174
## 11407   56251
## 11408   56367
## 11409   56587
## 11410   56757
## 11411   56775
## 11412   56782
## 11413   56801
## 11414   57368
## 11415   57528
## 11416   57532
## 11417   57640
## 11418   57669
## 11419   58025
## 11420   58146
## 11421   58293
## 11422   58295
## 11423   58301
## 11424   58315
## 11425   58351
## 11426   58559
## 11427   58627
## 11428   58803
## 11429   58975
## 11430   58998
## 11431   59014
## 11432   59022
## 11433   59315
## 11434   59369
## 11435   59387
## 11436   59615
## 11437   59784
## 11438   59900
## 11439   59995
## 11440   60037
## 11441   60069
## 11442   60072
## 11443   60074
## 11444   60126
## 11445   60161
## 11446   60293
## 11447   60487
## 11448   60609
## 11449   60684
## 11450   60753
## 11451   60756
## 11452   61024
## 11453   61132
## 11454   61248
## 11455   61323
## 11456   61348
## 11457   61394
## 11458   62394
## 11459   62434
## 11460   62801
## 11461   62912
## 11462   62956
## 11463   63072
## 11464   63082
## 11465   63113
## 11466   63131
## 11467   63540
## 11468   63826
## 11469   63876
## 11470   63992
## 11471   64197
## 11472   64508
## 11473   64614
## 11474   64716
## 11475   64839
## 11476   64900
## 11477   64957
## 11478   64983
## 11479   65126
## 11480   65310
## 11481   65514
## 11482   65982
## 11483   66066
## 11484   66090
## 11485   66297
## 11486   66335
## 11487   66934
## 11488   67252
## 11489   67255
## 11490   67665
## 11491   67695
## 11492   67734
## 11493   67923
## 11494   68073
## 11495   68157
## 11496   68159
## 11497   68237
## 11498   68319
## 11499   68358
## 11500   68444
## 11501   68554
## 11502   68901
## 11503   68952
## 11504   68954
## 11505   68959
## 11506   68965
## 11507   69122
## 11508   69306
## 11509   69481
## 11510   69640
## 11511   69685
## 11512   69746
## 11513   69757
## 11514   69844
## 11515   70286
## 11516   70465
## 11517   70946
## 11518   71057
## 11519   71106
## 11520   71135
## 11521   71248
## 11522   71379
## 11523   71429
## 11524   71466
## 11525   71520
## 11526   71533
## 11527   71535
## 11528   71745
## 11529   71838
## 11530   72011
## 11531   72171
## 11532   72226
## 11533   72603
## 11534   72641
## 11535   72733
## 11536   72998
## 11537   73023
## 11538   73268
## 11539   73321
## 11540   73759
## 11541   74416
## 11542   74458
## 11543   74545
## 11544   74851
## 11545   74944
## 11546   74948
## 11547   75813
## 11548   76060
## 11549   76077
## 11550   76093
## 11551   76251
## 11552   76272
## 11553   77561
## 11554   77800
## 11555   77837
## 11556   77866
## 11557   78209
## 11558   78266
## 11559   78349
## 11560   78469
## 11561   78499
## 11562   78574
## 11563   78772
## 11564   79008
## 11565   79057
## 11566   79091
## 11567   79132
## 11568   79242
## 11569   79251
## 11570   79274
## 11571   79357
## 11572   79553
## 11573   79695
## 11574   79702
## 11575   79720
## 11576   79879
## 11577   80083
## 11578   80219
## 11579   80463
## 11580   80489
## 11581   80693
## 11582   80831
## 11583   80846
## 11584   81083
## 11585   81562
## 11586   81564
## 11587   81591
## 11588   81660
## 11589   81788
## 11590   81834
## 11591   81932
## 11592   82041
## 11593   82459
## 11594   82527
## 11595   82667
## 11596   83134
## 11597   83613
## 11598   84152
## 11599   84772
## 11600   84944
## 11601   85342
## 11602   85401
## 11603   85414
## 11604   85788
## 11605   85881
## 11606   86142
## 11607   86644
## 11608   86882
## 11609   87192
## 11610   87232
## 11611   87234
## 11612   87298
## 11613   87306
## 11614   87869
## 11615   88118
## 11616   88125
## 11617   88129
## 11618   88140
## 11619   88163
## 11620   88744
## 11621   89039
## 11622   89085
## 11623   89343
## 11624   89470
## 11625   89745
## 11626   89774
## 11627   89864
## 11628   90376
## 11629   90430
## 11630   90439
## 11631   90531
## 11632   91485
## 11633   91500
## 11634   91529
## 11635   91630
## 11636   91658
## 11637   91976
## 11638   92309
## 11639   93320
## 11640   93363
## 11641   93443
## 11642   93510
## 11643   93831
## 11644   93838
## 11645   93840
## 11646   93855
## 11647   94018
## 11648   94070
## 11649   94677
## 11650   94833
## 11651   94864
## 11652   94959
## 11653   95088
## 11654   95147
## 11655   95165
## 11656   95182
## 11657   95441
## 11658   95473
## 11659   95475
## 11660   95499
## 11661   95510
## 11662   95558
## 11663   95780
## 11664   95782
## 11665   95875
## 11666   95963
## 11667   95965
## 11668   96004
## 11669   96007
## 11670   96079
## 11671   96110
## 11672   96281
## 11673   96432
## 11674   96588
## 11675   96610
## 11676   96737
## 11677   96811
## 11678   96821
## 11679   97306
## 11680   97752
## 11681   97860
## 11682   97913
## 11683   97921
## 11684   97923
## 11685   97938
## 11686   98607
## 11687   98809
## 11688   98829
## 11689   98961
## 11690   99112
## 11691   99114
## 11692   99145
## 11693   99728
## 11694  100159
## 11695  100383
## 11696  100714
## 11697  101525
## 11698  101864
## 11699  102033
## 11700  102123
## 11701  102194
## 11702  102252
## 11703  102407
## 11704  102445
## 11705  102716
## 11706  102993
## 11707  103042
## 11708  103048
## 11709  103228
## 11710  103249
## 11711  103253
## 11712  103384
## 11713  103624
## 11714  103688
## 11715  103772
## 11716  104841
## 11717  104913
## 11718  104944
## 11719  105213
## 11720  105504
## 11721  106002
## 11722  106022
## 11723  106100
## 11724  106487
## 11725  106489
## 11726  106491
## 11727  106782
## 11728  106916
## 11729  106918
## 11730  106920
## 11731  107069
## 11732  107348
## 11733  107406
## 11734  107953
## 11735  107999
## 11736  108090
## 11737  108190
## 11738  108583
## 11739  108932
## 11740  108981
## 11741  109074
## 11742  109374
## 11743  109487
## 11744  109850
## 11745  109895
## 11746  110127
## 11747  110348
## 11748  110501
## 11749  110882
## 11750  111360
## 11751  111362
## 11752  111364
## 11753  111624
## 11754  111659
## 11755  111759
## 11756  111781
## 11757  111921
## 11758  112183
## 11759  112290
## 11760  112515
## 11761  112552
## 11762  112556
## 11763  112623
## 11764  112818
## 11765  112852
## 11766  113252
## 11767  113348
## 11768  113573
## 11769  114060
## 11770  114180
## 11771  114662
## 11772  114670
## 11773  114935
## 11774  115122
## 11775  115149
## 11776  115216
## 11777  115569
## 11778  115713
## 11779  115877
## 11780  115881
## 11781  116397
## 11782  116797
## 11783  116823
## 11784  117123
## 11785  117176
## 11786  117529
## 11787  118082
## 11788  118696
## 11789  119145
## 11790  120466
## 11791  121231
## 11792  122882
## 11793  122886
## 11794  122890
## 11795  122900
## 11796  122904
## 11797  122924
## 11798  126006
## 11799  127198
## 11800  128360
## 11801  130642
## 11802  130682
## 11803  133771
## 11804  134130
## 11805  135887
## 11806  137857
## 11807  139130
## 11808  139385
## 11809  139644
## 11810  140267
## 11811  140715
## 11812  141718
## 11813  141866
## 11814  146656
## 11815  148626
## 11816  152077
## 11817  152091
## 11818  152844
## 11819  156726
## 11820  158238
## 11821  159462
## 11822  159858
## 11823  161594
## 11824  162376
## 11825      10
## 11826      16
## 11827      17
## 11828     104
## 11829     110
## 11830     153
## 11831     260
## 11832     356
## 11833     527
## 11834     592
## 11835     612
## 11836     912
## 11837    1059
## 11838    1080
## 11839    1097
## 11840    1136
## 11841    1196
## 11842    1210
## 11843    1272
## 11844    1302
## 11845    1377
## 11846    1562
## 11847    1584
## 11848    1704
## 11849    1721
## 11850    1722
## 11851    1876
## 11852    1917
## 11853    1918
## 11854    1954
## 11855    1961
## 11856    2000
## 11857    2002
## 11858    2028
## 11859    2106
## 11860    2167
## 11861    2188
## 11862    2333
## 11863    2396
## 11864    2490
## 11865    2541
## 11866    2549
## 11867    2571
## 11868    2572
## 11869    2628
## 11870    2640
## 11871    2700
## 11872    2710
## 11873    2762
## 11874       1
## 11875       3
## 11876      32
## 11877     161
## 11878     253
## 11879     260
## 11880     316
## 11881     318
## 11882     350
## 11883     353
## 11884     356
## 11885     368
## 11886     377
## 11887     379
## 11888     442
## 11889     480
## 11890     509
## 11891     520
## 11892     527
## 11893     541
## 11894     589
## 11895     592
## 11896     708
## 11897     786
## 11898     800
## 11899     858
## 11900     880
## 11901     899
## 11902     904
## 11903     908
## 11904     923
## 11905     933
## 11906     953
## 11907     955
## 11908    1080
## 11909    1127
## 11910    1196
## 11911    1197
## 11912    1198
## 11913    1201
## 11914    1207
## 11915    1208
## 11916    1214
## 11917    1219
## 11918    1221
## 11919    1225
## 11920    1234
## 11921    1240
## 11922    1253
## 11923    1258
## 11924    1259
## 11925    1265
## 11926    1270
## 11927    1272
## 11928    1278
## 11929    1288
## 11930    1291
## 11931    1297
## 11932    1356
## 11933    1358
## 11934    1376
## 11935    1441
## 11936    1517
## 11937    1580
## 11938    1584
## 11939    1672
## 11940    1721
## 11941    1917
## 11942    1967
## 11943    1994
## 11944    2003
## 11945    2005
## 11946    2011
## 11947    2012
## 11948    2115
## 11949    2134
## 11950    2161
## 11951    2167
## 11952    2174
## 11953    2176
## 11954    2231
## 11955    2300
## 11956    2302
## 11957    2311
## 11958    2355
## 11959    2371
## 11960    2423
## 11961    2424
## 11962    2455
## 11963    2502
## 11964    2571
## 11965    2600
## 11966    2692
## 11967    2707
## 11968    2710
## 11969    2797
## 11970    2841
## 11971    2916
## 11972    2959
## 11973    2991
## 11974    3007
## 11975    3020
## 11976    3033
## 11977    3087
## 11978    3147
## 11979    3252
## 11980    3408
## 11981    3510
## 11982    3671
## 11983    3793
## 11984    3948
## 11985    3959
## 11986    4223
## 11987    4226
## 11988    4306
## 11989    4571
## 11990    4799
## 11991    4878
## 11992    4973
## 11993    4975
## 11994    4980
## 11995    4993
## 11996    5054
## 11997    5171
## 11998    5445
## 11999    5782
## 12000    5952
## 12001    6323
## 12002    6537
## 12003    6820
## 12004    7153
## 12005    7254
## 12006    7361
## 12007    7743
## 12008    8581
## 12009    8638
## 12010    8957
## 12011    8985
## 12012   27788
## 12013   33166
## 12014   33794
## 12015   34319
## 12016   39446
## 12017   42002
## 12018   44397
## 12019      45
## 12020     303
## 12021     531
## 12022     915
## 12023     954
## 12024    1096
## 12025    1185
## 12026    1269
## 12027    1449
## 12028    2020
## 12029    2087
## 12030    2336
## 12031    2948
## 12032    3671
## 12033    3911
## 12034    3988
## 12035    4321
## 12036   44694
## 12037   49530
## 12038   54259
## 12039       1
## 12040       6
## 12041      10
## 12042      32
## 12043      34
## 12044      39
## 12045      47
## 12046      62
## 12047      70
## 12048      76
## 12049      95
## 12050     110
## 12051     111
## 12052     141
## 12053     161
## 12054     163
## 12055     165
## 12056     173
## 12057     185
## 12058     208
## 12059     223
## 12060     231
## 12061     253
## 12062     260
## 12063     288
## 12064     292
## 12065     293
## 12066     296
## 12067     316
## 12068     318
## 12069     329
## 12070     339
## 12071     344
## 12072     349
## 12073     353
## 12074     356
## 12075     364
## 12076     367
## 12077     377
## 12078     380
## 12079     413
## 12080     442
## 12081     457
## 12082     480
## 12083     500
## 12084     541
## 12085     551
## 12086     586
## 12087     587
## 12088     588
## 12089     589
## 12090     590
## 12091     592
## 12092     593
## 12093     595
## 12094     597
## 12095     608
## 12096     648
## 12097     720
## 12098     733
## 12099     736
## 12100     741
## 12101     745
## 12102     750
## 12103     780
## 12104     839
## 12105     849
## 12106     919
## 12107     924
## 12108    1036
## 12109    1073
## 12110    1079
## 12111    1080
## 12112    1097
## 12113    1129
## 12114    1136
## 12115    1148
## 12116    1196
## 12117    1197
## 12118    1198
## 12119    1199
## 12120    1200
## 12121    1206
## 12122    1208
## 12123    1210
## 12124    1214
## 12125    1215
## 12126    1217
## 12127    1220
## 12128    1222
## 12129    1223
## 12130    1240
## 12131    1258
## 12132    1262
## 12133    1265
## 12134    1270
## 12135    1274
## 12136    1278
## 12137    1282
## 12138    1291
## 12139    1321
## 12140    1380
## 12141    1387
## 12142    1393
## 12143    1517
## 12144    1527
## 12145    1552
## 12146    1580
## 12147    1584
## 12148    1591
## 12149    1610
## 12150    1653
## 12151    1676
## 12152    1682
## 12153    1704
## 12154    1721
## 12155    1732
## 12156    1772
## 12157    1779
## 12158    1784
## 12159    1917
## 12160    1923
## 12161    1961
## 12162    1967
## 12163    1968
## 12164    2000
## 12165    2001
## 12166    2005
## 12167    2011
## 12168    2012
## 12169    2021
## 12170    2054
## 12171    2081
## 12172    2105
## 12173    2115
## 12174    2139
## 12175    2140
## 12176    2167
## 12177    2174
## 12178    2275
## 12179    2291
## 12180    2321
## 12181    2355
## 12182    2395
## 12183    2450
## 12184    2502
## 12185    2528
## 12186    2529
## 12187    2541
## 12188    2542
## 12189    2571
## 12190    2599
## 12191    2600
## 12192    2628
## 12193    2640
## 12194    2641
## 12195    2671
## 12196    2683
## 12197    2700
## 12198    2706
## 12199    2709
## 12200    2710
## 12201    2716
## 12202    2762
## 12203    2788
## 12204    2797
## 12205    2808
## 12206    2858
## 12207    2916
## 12208    2918
## 12209    2959
## 12210    2968
## 12211    2985
## 12212    2986
## 12213    2987
## 12214    3000
## 12215    3033
## 12216    3052
## 12217    3070
## 12218    3081
## 12219    3114
## 12220    3147
## 12221    3148
## 12222    3175
## 12223    3196
## 12224    3204
## 12225    3264
## 12226    3275
## 12227    3396
## 12228    3397
## 12229    3398
## 12230    3408
## 12231    3418
## 12232    3421
## 12233    3429
## 12234    3438
## 12235    3439
## 12236    3471
## 12237    3527
## 12238    3578
## 12239    3623
## 12240    3671
## 12241    3702
## 12242    3703
## 12243    3704
## 12244    3751
## 12245    3753
## 12246    3793
## 12247    3882
## 12248    3897
## 12249    3977
## 12250    3994
## 12251    3996
## 12252    4011
## 12253    4027
## 12254    4040
## 12255    4092
## 12256    4246
## 12257    4270
## 12258    4306
## 12259    4446
## 12260    4447
## 12261    4467
## 12262    4499
## 12263    4533
## 12264    4886
## 12265    4896
## 12266    4963
## 12267    4979
## 12268    4993
## 12269    5171
## 12270    5218
## 12271    5254
## 12272    5349
## 12273    5378
## 12274    5445
## 12275    5502
## 12276    5522
## 12277    5618
## 12278    5650
## 12279    5669
## 12280    5782
## 12281    5816
## 12282    5903
## 12283    6093
## 12284    6157
## 12285    6281
## 12286    6303
## 12287    6305
## 12288    6316
## 12289    6333
## 12290    6350
## 12291    6365
## 12292    6377
## 12293    6537
## 12294    6539
## 12295    6541
## 12296    6645
## 12297    6662
## 12298    6755
## 12299    6807
## 12300    6811
## 12301    6874
## 12302    6934
## 12303    7099
## 12304    7143
## 12305    7147
## 12306    7163
## 12307    7236
## 12308    7360
## 12309    7373
## 12310    7387
## 12311    7438
## 12312    7649
## 12313    7708
## 12314    7810
## 12315    7811
## 12316    7812
## 12317    7841
## 12318    7842
## 12319    8157
## 12320    8368
## 12321    8537
## 12322    8622
## 12323    8636
## 12324    8644
## 12325    8665
## 12326    8874
## 12327    8958
## 12328    8961
## 12329   26492
## 12330   26700
## 12331   27685
## 12332   27831
## 12333   31150
## 12334   31221
## 12335   31658
## 12336   31878
## 12337   32587
## 12338   33493
## 12339   33794
## 12340   34319
## 12341   34405
## 12342   36708
## 12343   37729
## 12344   37857
## 12345   38038
## 12346   40732
## 12347   40819
## 12348   44191
## 12349   45499
## 12350   45722
## 12351   47423
## 12352   47518
## 12353   53894
## 12354       2
## 12355      10
## 12356      16
## 12357      32
## 12358      34
## 12359      39
## 12360      47
## 12361      50
## 12362     110
## 12363     111
## 12364     141
## 12365     150
## 12366     172
## 12367     185
## 12368     193
## 12369     223
## 12370     253
## 12371     260
## 12372     296
## 12373     316
## 12374     318
## 12375     329
## 12376     345
## 12377     349
## 12378     356
## 12379     364
## 12380     377
## 12381     480
## 12382     500
## 12383     508
## 12384     540
## 12385     588
## 12386     589
## 12387     593
## 12388     648
## 12389     736
## 12390     778
## 12391     780
## 12392     788
## 12393     858
## 12394     919
## 12395     924
## 12396    1059
## 12397    1089
## 12398    1094
## 12399    1097
## 12400    1136
## 12401    1196
## 12402    1200
## 12403    1206
## 12404    1208
## 12405    1210
## 12406    1213
## 12407    1214
## 12408    1222
## 12409    1240
## 12410    1265
## 12411    1270
## 12412    1293
## 12413    1320
## 12414    1345
## 12415    1356
## 12416    1371
## 12417    1374
## 12418    1375
## 12419    1376
## 12420    1407
## 12421    1513
## 12422    1517
## 12423    1527
## 12424    1552
## 12425    1580
## 12426    1584
## 12427    1586
## 12428    1610
## 12429    1625
## 12430    1644
## 12431    1676
## 12432    1680
## 12433    1682
## 12434    1690
## 12435    1704
## 12436    1717
## 12437    1721
## 12438    1722
## 12439    1732
## 12440    1747
## 12441    1805
## 12442    1876
## 12443    1917
## 12444    1923
## 12445    1968
## 12446    1997
## 12447    2011
## 12448    2012
## 12449    2028
## 12450    2107
## 12451    2174
## 12452    2231
## 12453    2297
## 12454    2329
## 12455    2334
## 12456    2336
## 12457    2353
## 12458    2393
## 12459    2394
## 12460    2541
## 12461    2542
## 12462    2571
## 12463    2617
## 12464    2628
## 12465    2657
## 12466    2683
## 12467    2700
## 12468    2706
## 12469    2710
## 12470    2858
## 12471    2908
## 12472    2916
## 12473    2947
## 12474    2959
## 12475    2987
## 12476    2995
## 12477    3052
## 12478    3077
## 12479    3082
## 12480    3147
## 12481    3256
## 12482    3273
## 12483    3298
## 12484    3386
## 12485    3418
## 12486    3504
## 12487    3556
## 12488    3578
## 12489    3617
## 12490    3623
## 12491    3753
## 12492    3755
## 12493    3785
## 12494    3793
## 12495    3897
## 12496    3908
## 12497    3949
## 12498    3967
## 12499    3977
##                                                                                                                                                         title
## 1                                                                                                                                             Dangerous Minds
## 2                                                                                                                                                       Dumbo
## 3                                                                                                                                                    Sleepers
## 4                                                                                                                                        Escape from New York
## 5                                                                                                                     Cinema Paradiso (Nuovo cinema Paradiso)
## 6                                                                                                                                            Deer Hunter, The
## 7                                                                                                                                                     Ben-Hur
## 8                                                                                                                                                      Gandhi
## 9                                                                                                                             Dracula (Bram Stoker's Dracula)
## 10                                                                                                                                                  Cape Fear
## 11                                                                                                                              Star Trek: The Motion Picture
## 12                                                                                                                            Beavis and Butt-Head Do America
## 13                                                                                                                                     French Connection, The
## 14                                                                                                                                                       Tron
## 15                                                                                                                                    Gods Must Be Crazy, The
## 16                                                                                                                                                     Willow
## 17                                                                                                                                                       Antz
## 18                                                                                                                                                   Fly, The
## 19                                                                                                                                               Time Bandits
## 20                                                                                                                                            Blazing Saddles
## 21                                                                                                                                                  GoldenEye
## 22                                                                                                                                      Sense and Sensibility
## 23                                                                                                                                                   Clueless
## 24                                                                                                                                       Seven (a.k.a. Se7en)
## 25                                                                                                                                        Usual Suspects, The
## 26                                                                                                                                           Mighty Aphrodite
## 27                                                                                                                                         Mr. Holland's Opus
## 28                                                                                                                                                 Braveheart
## 29                                                                                                                                     Brothers McMullen, The
## 30                                                                                                                                                  Apollo 13
## 31                                                                                                                                             Batman Forever
## 32                                                                                                                                               Crimson Tide
## 33                                                                                                                                 Die Hard: With a Vengeance
## 34                                                                                                                                               First Knight
## 35                                                                                                                                                   Net, The
## 36                                                                                                                                                Nine Months
## 37                                                                                                                                                 Waterworld
## 38                                                                                                                                          Circle of Friends
## 39                                                                                                                                                     Clerks
## 40                                                                                                                                                 Disclosure
## 41                                                                                                                                                    Ed Wood
## 42                                                                                                                                                 Houseguest
## 43                                                                                                         Interview with the Vampire: The Vampire Chronicles
## 44                                                                                                                                               Little Women
## 45                                                                                                        Like Water for Chocolate (Como agua para chocolate)
## 46                                                                                                                                        Legends of the Fall
## 47                                                                                                                                Madness of King George, The
## 48                                                                                                                 Mary Shelley's Frankenstein (Frankenstein)
## 49                                                                                                                                                   Outbreak
## 50                                                                                                                                               Pulp Fiction
## 51                                                                                                                                                  Quiz Show
## 52                                                                                                                                  Secret of Roan Inish, The
## 53                                                                                                                                          Santa Clause, The
## 54                                                                                                                                              Shallow Grave
## 55                                                                                                                                    While You Were Sleeping
## 56                                                                                                                                   Clear and Present Danger
## 57                                                                                                                                                Client, The
## 58                                                                                                                                               Forrest Gump
## 59                                                                                                                                Four Weddings and a Funeral
## 60                                                                                                                                             Lion King, The
## 61                                                                                                                                                  Mask, The
## 62                                                                                                                         Naked Gun 33 1/3: The Final Insult
## 63                                                                                                                                                 Paper, The
## 64                                                                                                                                              Reality Bites
## 65                                                                                                                                                      Speed
## 66                                                                                                                                                       Wolf
## 67                                                                                      Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 68                                                                                                                                       Addams Family Values
## 69                                                                                                                                                  Firm, The
## 70                                                                                                                                              Fugitive, The
## 71                                                                                                Englishman Who Went Up a Hill But Came Down a Mountain, The
## 72                                                                                                                                        In the Line of Fire
## 73                                                                                                                                              Jurassic Park
## 74                                                                                                                                           Last Action Hero
## 75                                                                                                                                     Much Ado About Nothing
## 76                                                                                                                                             Mrs. Doubtfire
## 77                                                                                                                                               Philadelphia
## 78                                                                                                                                                 Piano, The
## 79                                                                                                                                    Remains of the Day, The
## 80                                                                                                                                           Schindler's List
## 81                                                                                                                                                     Sirens
## 82                                                                                                                                       Sleepless in Seattle
## 83                                                                                                                                                  Threesome
## 84                                                                                                                            Nightmare Before Christmas, The
## 85                                                                                                                                      Three Musketeers, The
## 86                                                                                                                                     Brady Bunch Movie, The
## 87                                                                                                                                                 Home Alone
## 88                                                                                                                                                      Ghost
## 89                                                                                                                                                    Aladdin
## 90                                                                                                                                 Terminator 2: Judgment Day
## 91                                                                                                                                         Dances with Wolves
## 92                                                                                                                                                     Batman
## 93                                                                                                                                  Silence of the Lambs, The
## 94                                                                                                                                            Aristocats, The
## 95                                                                                                                                  James and the Giant Peach
## 96                                                                                                            Wallace & Gromit: The Best of Aardman Animation
## 97                                                                                                                                Indian in the Cupboard, The
## 98                                                                                                                                                 Braveheart
## 99                                                                                                                                         Heavenly Creatures
## 100                                                                                                                                               Major Payne
## 101                                                                                                                                              Pulp Fiction
## 102                                                                                                                                 Shawshank Redemption, The
## 103                                                                                                                                          Flintstones, The
## 104                                                                                                                                              Forrest Gump
## 105                                                                                                                                                     Speed
## 106                                                                                                                                          Schindler's List
## 107                                                                                                                                                   Aladdin
## 108                                                                                                                                                    Batman
## 109                                                                                                                                 Silence of the Lambs, The
## 110                                                                                                                                      Beauty and the Beast
## 111                                                                                                                                                   Twister
## 112                                                                                                                                             Trainspotting
## 113                                                                                                                                                     Bound
## 114                                                                                                                                       Princess Bride, The
## 115                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 116                                                                                                                                          Harold and Maude
## 117                                                                                                                                      Fried Green Tomatoes
## 118                                                                                                                                                Young Guns
## 119                                                                                                                                 Men in Black (a.k.a. MIB)
## 120                                                                                                                                                   Titanic
## 121                                                                                                                            Fear and Loathing in Las Vegas
## 122                                                                                                                                       Saving Private Ryan
## 123                                                                                                                                                 Happiness
## 124                                                                                                                                              Pet Sematary
## 125                                                                                                                                                 Big Daddy
## 126                                                                                                                                             Summer of Sam
## 127                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 128                                                                                                                                          Sixth Sense, The
## 129                                                                                                                                            Stir of Echoes
## 130                                                                                                                                           American Beauty
## 131                                                                                                                                                Fight Club
## 132                                                                                                                                                Encino Man
## 133                                                                                                                                                 Frequency
## 134                                                                                                                                       Requiem for a Dream
## 135                                                                                                                                                Spider-Man
## 136                                                                                                                                     Bowling for Columbine
## 137                                                                                                                                              Finding Nemo
## 138                                                                                                            Lord of the Rings: The Return of the King, The
## 139                                                                                                                     Eternal Sunshine of the Spotless Mind
## 140                                                                                                                                           Fahrenheit 9/11
## 141                                                                                                                                              Spider-Man 2
## 142                                                                                                                                    Daria: Is It Fall Yet?
## 143                                                                                                                                            V for Vendetta
## 144                                                                                                                                      Flags of Our Fathers
## 145                                                                                                                                     Letters from Iwo Jima
## 146                                                                                                                                          Dark Knight, The
## 147                                                                                                      White Stripes Under Great White Northern Lights, The
## 148                                                                                                                                                 GoldenEye
## 149                                                                                                                                                      Babe
## 150                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 151                                                                                                                                             Birdcage, The
## 152                                                                                                                                            Batman Forever
## 153                                                                                                                                               Judge Dredd
## 154                                                                                                                                                  Net, The
## 155                                                                                                                        Star Wars: Episode IV - A New Hope
## 156                                                                                                                                                  Only You
## 157                                                                                                                                              Pulp Fiction
## 158                                                                                                                                    Star Trek: Generations
## 159                                                                                                                                  Clear and Present Danger
## 160                                                                                                                                              Forrest Gump
## 161                                                                                                                               Four Weddings and a Funeral
## 162                                                                                                                                            Lion King, The
## 163                                                                                                                                                 Mask, The
## 164                                                                                                                                                 True Lies
## 165                                                                                                                                      Addams Family Values
## 166                                                                                                                                             Carlito's Way
## 167                                                                                                                                               Cliffhanger
## 168                                                                                                                                                 Coneheads
## 169                                                                                                                                                      Dave
## 170                                                                                                                                            Demolition Man
## 171                                                                                                                                               Hard Target
## 172                                                                                                                                             Jurassic Park
## 173                                                                                                                                              Blade Runner
## 174                                                                                                                                                   Aladdin
## 175                                                                                                                                Terminator 2: Judgment Day
## 176                                                                                                                                        Dances with Wolves
## 177                                                                                                                           Snow White and the Seven Dwarfs
## 178                                                                                                                                                 Pinocchio
## 179                                                                                                                                               Heavy Metal
## 180                                                                                                                                           Aristocats, The
## 181                                                                                                                                            Godfather, The
## 182                                                                                                                                                   Vertigo
## 183                                                                                                                                          Some Like It Hot
## 184                                                                                                                                       Maltese Falcon, The
## 185                                                                                                                                         Wizard of Oz, The
## 186                                                                                                                                        Herbie Rides Again
## 187                                                                                                                                           Shaggy Dog, The
## 188                                                                                                                                                Cinderella
## 189                                                                                                                                              Mary Poppins
## 190                                                                                                                                             Pete's Dragon
## 191                                                                                                                                  Bedknobs and Broomsticks
## 192                                                                                                                                       Alice in Wonderland
## 193                                                                                                                                    Fox and the Hound, The
## 194                                                                                                                                                  Die Hard
## 195                                                                                                                       Willy Wonka & the Chocolate Factory
## 196                                                                                                                                      Fish Called Wanda, A
## 197                                                                                                                                            Reservoir Dogs
## 198                                                                                                                                E.T. the Extra-Terrestrial
## 199                                                                                                                           Return of the Pink Panther, The
## 200                                                                                                                                                Abyss, The
## 201                                                                                                                           Monty Python and the Holy Grail
## 202                                                                                                                            Cheech and Chong's Up in Smoke
## 203                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 204                                                                                                                                       Princess Bride, The
## 205                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 206                                                                                                                                                    Aliens
## 207                                                                                                                                       Clockwork Orange, A
## 208                                                                                                                                            Apocalypse Now
## 209                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 210                                                                                                                                                Goodfellas
## 211                                                                                                                                                     Alien
## 212                                                                                                                                                    Psycho
## 213                                                                                                                                       Blues Brothers, The
## 214                                                                                                                                         Full Metal Jacket
## 215                                                                                                                                                   Amadeus
## 216                                                                                                                                                Annie Hall
## 217                                                                                                                                           Terminator, The
## 218                                                                                                                     Rosencrantz and Guildenstern Are Dead
## 219                                                                                                                                        Better Off Dead...
## 220                                                                                                                                              Shining, The
## 221                                                                                                                                               Stand by Me
## 222                                                                                                                                             Groundhog Day
## 223                                                                                                                                        Back to the Future
## 224                                                                                                                                        Young Frankenstein
## 225                                                                                                                                                  Fantasia
## 226                                                                                                                                                  Heathers
## 227                                                                                                                                        This Is Spinal Tap
## 228                                                                                                                        Indiana Jones and the Last Crusade
## 229                                                                                                                                      Pink Floyd: The Wall
## 230                                                                                                                                   When Harry Met Sally...
## 231                                                                                                                                            Believers, The
## 232                                                                                                                                                 Blob, The
## 233                                                                                                                                                 Cape Fear
## 234                                                                                                                                  Star Trek: First Contact
## 235                                                                                                                             Star Trek: The Motion Picture
## 236                                                                                                                    Star Trek VI: The Undiscovered Country
## 237                                                                                                                           Star Trek II: The Wrath of Khan
## 238                                                                                                                             Star Trek IV: The Voyage Home
## 239                                                                                                                                            Batman Returns
## 240                                                                                                                                                    Grease
## 241                                                                                                                                                      Jaws
## 242                                                                                                                                                    Jaws 2
## 243                                                                                                                                                  Sneakers
## 244                                                                                                                            Lost World: Jurassic Park, The
## 245                                                                                                                                 Men in Black (a.k.a. MIB)
## 246                                                                                                                                                   Stripes
## 247                                                                                                                                                   Witness
## 248                                                                                                                                               Wild Things
## 249                                                                                                                             Mr. Nice Guy (Yat goh ho yan)
## 250                                                                                                                                                Armageddon
## 251                                                                                                                                           Lethal Weapon 4
## 252                                                                                                                                    French Connection, The
## 253                                                                                                                                                     Rocky
## 254                                                                                                                                                  Rain Man
## 255                                                                                                                                                 Labyrinth
## 256                                                                                                                                       Breakfast Club, The
## 257                                                                                                                                               Poltergeist
## 258                                                                                                                                             Lethal Weapon
## 259                                                                                                                                           Lethal Weapon 3
## 260                                                                                                                                                  Gremlins
## 261                                                                                                                                              Goonies, The
## 262                                                                                                                                             Freaky Friday
## 263                                                                                                                                                     Bambi
## 264                                                                                                                                        Dangerous Liaisons
## 265                                                                                                                                                      Dune
## 266                                                                                                                                       Black Cauldron, The
## 267                                                                                                                                           Black Hole, The
## 268                                                                                                                                   Flight of the Navigator
## 269                                                                                                                                  Honey, I Shrunk the Kids
## 270                                                                                                                                                Roger & Me
## 271                                                                                                                                          Jungle Book, The
## 272                                                                                                                                        Lady and the Tramp
## 273                                                                                                                                       Little Mermaid, The
## 274                                                                                                           101 Dalmatians (One Hundred and One Dalmatians)
## 275                                                                                                                                       One Magic Christmas
## 276                                                                                                                                                 Peter Pan
## 277                                                                                                                                Return from Witch Mountain
## 278                                                                                                                                            Rocketeer, The
## 279                                                                                                                                           Sleeping Beauty
## 280                                                                                                                                                    Splash
## 281                                                                                                                                          Steamboat Willie
## 282                                                                                                                                                      Tron
## 283                                                                                                                                                 Jerk, The
## 284                                                                                                                                 Dead Men Don't Wear Plaid
## 285                                                                                                                                            Outsiders, The
## 286                                                                                                                      Indiana Jones and the Temple of Doom
## 287                                                                                                                                        Addams Family, The
## 288                                                                                                                                         Dark Crystal, The
## 289                                                                                                                                         American Tail, An
## 290                                                                                                                                                    Legend
## 291                                                                                                                                           Sixteen Candles
## 292                                                                                                                                    NeverEnding Story, The
## 293                                                                                                                                               Beetlejuice
## 294                                                                                                                                                    Willow
## 295                                                                                                                                         Untouchables, The
## 296                                                                                                                                           Say Anything...
## 297                                                                                                                                         Seventh Sign, The
## 298                                                                                                                                           Few Good Men, A
## 299                                                                                                                                               Player, The
## 300                                                                                                                                             Sid and Nancy
## 301                                                                                                                                                    Fletch
## 302                                                                                                                          First Blood (Rambo: First Blood)
## 303                                                                                                                                       Romancing the Stone
## 304                                                                                                                                                  Rocky II
## 305                                                                                                                                                  Fly, The
## 306                                                                                                                Name of the Rose, The (Name der Rose, Der)
## 307                                                                                                                                              Dead Ringers
## 308                                                                                                                                                Dick Tracy
## 309                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 310                                                                                                                                                  Superman
## 311                                                                                                                                    It Came from Hollywood
## 312                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 313                                                                                                                                             Arachnophobia
## 314                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 315                                                                                                                                               Mystery Men
## 316                                                                                                                                       Mosquito Coast, The
## 317                                                                                                                                                 Bowfinger
## 318                                                                                                 Monty Python's And Now for Something Completely Different
## 319                                                                                                                                                 Airplane!
## 320                                                                                                                               National Lampoon's Vacation
## 321                                                                                                                                                       Big
## 322                                                                                                                                        Christmas Story, A
## 323                                                                                                                                              Medicine Man
## 324                                                                                                                                              Fright Night
## 325                                                                                                                                                 Excalibur
## 326                                                                                                                                                     Tommy
## 327                                                                                                                                                 Psycho II
## 328                                                                                                                                                Psycho III
## 329                                                                                                                                              Total Recall
## 330                                                                                                                                  Ferris Bueller's Day Off
## 331                                                                                                                                              Time Bandits
## 332                                                                                                                                                 RoboCop 2
## 333                                                                                                                                  Who Framed Roger Rabbit?
## 334                                                                                                                                          Live and Let Die
## 335                                                                                                                                                 Creepshow
## 336                                                                                                                                                Robin Hood
## 337                                                                                                                                            Trading Places
## 338                                                                                                                                                 Meatballs
## 339                                                                                                                                          Commitments, The
## 340                                                                                                                                         Stand and Deliver
## 341                                                                                                                                          Fatal Attraction
## 342                                                                                                                                              Midnight Run
## 343                                                                                                                                          Fisher King, The
## 344                                                                                                                                The Falcon and the Snowman
## 345                                                                                                      Loaded Weapon 1 (National Lampoon's Loaded Weapon 1)
## 346                                                                                                                              Fast Times at Ridgemont High
## 347                                                                                                                                              Agnes of God
## 348                                                                                                                                    League of Their Own, A
## 349                                                                                                                                      White Men Can't Jump
## 350                                                                                                                            Hard-Boiled (Lat sau san taam)
## 351                                                                                                                                   Transformers: The Movie
## 352                                                                                                                                          Grumpier Old Men
## 353                                                                                                                                                  Clueless
## 354                                                                                                                                             Happy Gilmore
## 355                                                                                                                                             Birdcage, The
## 356                                                                                                                                                 Apollo 13
## 357                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 358                                                                                                                                    Miracle on 34th Street
## 359                                                                                                                                Ace Ventura: Pet Detective
## 360                                                                                                                                              Forrest Gump
## 361                                                                                                                                            Lion King, The
## 362                                                                                                                                                 Mask, The
## 363                                                                                                                                                     Speed
## 364                                                                                                                                                      Dave
## 365                                                                                                                                            Mrs. Doubtfire
## 366                                                                                                                                                Home Alone
## 367                                                                                                                                                   Aladdin
## 368                                                                                                                                      Beauty and the Beast
## 369                                                                                                                                              Pretty Woman
## 370                                                                                                                                      Nutty Professor, The
## 371                                                                                                                                            Godfather, The
## 372                                                                                                                                                   Vertigo
## 373                                                                                                                                         Wizard of Oz, The
## 374                                                                                                                                                Cinderella
## 375                                                                                                                                       Sound of Music, The
## 376                                                                                                                           One Flew Over the Cuckoo's Nest
## 377                                                                                                                                   Godfather: Part II, The
## 378                                                                                                                                             Graduate, The
## 379                                                                                                                                   When Harry Met Sally...
## 380                                                                                                                                                    Grease
## 381                                                                                                                                             Jerry Maguire
## 382                                                                                                                                                 Liar Liar
## 383                                                                                                                            Lost World: Jurassic Park, The
## 384                                                                                                                                          Truman Show, The
## 385                                                                                                                                                   Titanic
## 386                                                                                                                                       Wedding Singer, The
## 387                                                                                                                                        As Good as It Gets
## 388                                                                                                                              There's Something About Mary
## 389                                                                                                                                                  Rain Man
## 390                                                                                                                                       Breakfast Club, The
## 391                                                                                                                                             Exorcist, The
## 392                                                                                                                                  Godfather: Part III, The
## 393                                                                                                                                       Little Mermaid, The
## 394                                                                                                                                                 Rush Hour
## 395                                                                                                                                                      Antz
## 396                                                                                                                                             Bug's Life, A
## 397                                                                                                                                           You've Got Mail
## 398                                                                                                                                              Office Space
## 399                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 400                                                                                                                                                 Big Daddy
## 401                                                                                                                                              American Pie
## 402                                                                                                                                          Sixth Sense, The
## 403                                                                                                                                                 Bowfinger
## 404                                                                                                                                  Ferris Bueller's Day Off
## 405                                                                                                                                      Being John Malkovich
## 406                                                                                                                                               Toy Story 2
## 407                                                                                                                                  Talented Mr. Ripley, The
## 408                                                                                                                                           Erin Brockovich
## 409                                                                                                                                              Patriot, The
## 410                                                                                                                                             Almost Famous
## 411                                                                                                                                          Meet the Parents
## 412                                                                                                                                                  Chocolat
## 413                                                                                                                                           What Women Want
## 414                                                                                                                                                 Cast Away
## 415                                                                                                                                         Miss Congeniality
## 416                                                                                                                                                     Shrek
## 417                                                                                                                                              Moulin Rouge
## 418                                                                                                                                            Legally Blonde
## 419                                                                                                                                            American Pie 2
## 420                                                                                                                                            Ocean's Eleven
## 421                                                                                                                                         Beautiful Mind, A
## 422                                                                                                                                                Panic Room
## 423                                                                                                                                  My Big Fat Greek Wedding
## 424                                                                                                                                                Spider-Man
## 425                                                                                                                                         Road to Perdition
## 426                                                                                                                                     Bowling for Columbine
## 427                                                                                                                                                 Ring, The
## 428                                                                                                                   Harry Potter and the Chamber of Secrets
## 429                                                                                                                                              Pianist, The
## 430                                                                                                                                      Bend It Like Beckham
## 431                                                                                                                                            Bruce Almighty
## 432                                                                                                                                              Finding Nemo
## 433                                                                                                                                             28 Days Later
## 434                                                                                                                                       Lost in Translation
## 435                                                                                                                                             Love Actually
## 436                                                                                                                                         Napoleon Dynamite
## 437                                                                                                                                             Super Size Me
## 438                                                                                                                                           Fahrenheit 9/11
## 439                                                                                                                                              Spider-Man 2
## 440                                                                                                                                                  I, Robot
## 441                                                                                                                                       Million Dollar Baby
## 442                                                                                                                                              Hotel Rwanda
## 443                                                                                                                         Charlie and the Chocolate Factory
## 444                                                                                                                                                     Crash
## 445                                                                                                                                          Mr. & Mrs. Smith
## 446                                                                                                                                          Wedding Crashers
## 447                                                                                                                                   40-Year-Old Virgin, The
## 448                                                                                                                                             Walk the Line
## 449                                                                                           Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 450                                                                                                                                                 King Kong
## 451                                                                       Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 452                                                                                                                                               Taxi Driver
## 453                                                                                                                                                    Casper
## 454                                                                                                                                               Judge Dredd
## 455                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 456                                                                                                                                                 Pinocchio
## 457                                                                                                                                                   Vertigo
## 458                                                                                                                                        Lawrence of Arabia
## 459                                                                                                                             Bridge on the River Kwai, The
## 460                                                                                                                                               Stand by Me
## 461                                                                                                                                            Cool Hand Luke
## 462                                                                                                                                                  Heathers
## 463                                                                                                                                               Sling Blade
## 464                                                                                                                                               Chasing Amy
## 465                                                                                                                                               Jackal, The
## 466                                                                                                                                               Wag the Dog
## 467                                                                                                                                               Deep Impact
## 468                                                                                                                            X-Files: Fight the Future, The
## 469                                                                                                                                           Lethal Weapon 2
## 470                                                                                                                      Seven Samurai (Shichinin no samurai)
## 471                                                                                                                                               'burbs, The
## 472                                                                                                                                               Beetlejuice
## 473                                                                                                                                              Office Space
## 474                                                                                                                                               Logan's Run
## 475                                                                                                                                        Planet of the Apes
## 476                                                                                                                                               Matrix, The
## 477                                                                                                                            Rocky Horror Picture Show, The
## 478                                                                                                                                 Run Lola Run (Lola rennt)
## 479                                                                                                                                               Mystery Men
## 480                                                                                                                                           Iron Giant, The
## 481                                                                                                                                               Three Kings
## 482                                                                                                                                                     Dogma
## 483                                                                                                                                               Toy Story 2
## 484                                                                                                                                               Pitch Black
## 485                                                                                                                                               Chicken Run
## 486                                                                                                                                               Ghost World
## 487                                                                                                                                               Vanilla Sky
## 488                                                                                                                    Lord of the Rings: The Two Towers, The
## 489                                                                                                                                         Hero (Ying xiong)
## 490                                                                                                            Lord of the Rings: The Return of the King, The
## 491                                                                                                                     Eternal Sunshine of the Spotless Mind
## 492                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 493                                                                                                                                              Spider-Man 2
## 494                                                                                                                                              Garden State
## 495                                                                                                                                         Shaun of the Dead
## 496                                                                                                                                                 Toy Story
## 497                                                                                                                                                 GoldenEye
## 498                                                                                                                                                Get Shorty
## 499                                                                                                                                           Dangerous Minds
## 500                                                                                                                                                      Babe
## 501                                                                                                                                  Cry, the Beloved Country
## 502                                                                                                                                             Happy Gilmore
## 503                                                                                                                                                Braveheart
## 504                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 505                                                                                                                                             Birdcage, The
## 506                                                                                                                                                   Rob Roy
## 507                                                                                                                                              Strange Days
## 508                                                                                                                                     Walk in the Clouds, A
## 509                                                                                                                        Star Wars: Episode IV - A New Hope
## 510                                                                                                                               Madness of King George, The
## 511                                                                                                                                                  Stargate
## 512                                                                                                                                 Shawshank Redemption, The
## 513                                                                                                                                    Star Trek: Generations
## 514                                                                                                                                                 Tommy Boy
## 515                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 516                                                                                                                                          Flintstones, The
## 517                                                                                                                                              Forrest Gump
## 518                                                                                                                               Four Weddings and a Funeral
## 519                                                                                                                                            Lion King, The
## 520                                                                                                                                                 Mask, The
## 521                                                                                                                                                     Speed
## 522                                                                                                                                                 True Lies
## 523                                                                                                                                             Jurassic Park
## 524                                                                                                                                            Mrs. Doubtfire
## 525                                                                                                                                               Shadowlands
## 526                                                                                                                                      Sleepless in Seattle
## 527                                                                                                                                              Blade Runner
## 528                                                                                                                           Nightmare Before Christmas, The
## 529                                                                                                                                                   Aladdin
## 530                                                                                                                                Terminator 2: Judgment Day
## 531                                                                                                                                        Dances with Wolves
## 532                                                                                                                                                    Batman
## 533                                                                                                                           Snow White and the Seven Dwarfs
## 534                                                                                                                                      Beauty and the Beast
## 535                                                                                                                                               Heavy Metal
## 536                                                                                                                   Mystery Science Theater 3000: The Movie
## 537                                                                                                                              Truth About Cats & Dogs, The
## 538                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 539                                                                                                                                                Craft, The
## 540                                                                                                                                                   Twister
## 541                                                                                                                                                 Barb Wire
## 542                                                                                                                           Wallace & Gromit: A Close Shave
## 543                                                                                                                             Independence Day (a.k.a. ID4)
## 544                                                                                                                                                    Eraser
## 545                                                                                                                                     2001: A Space Odyssey
## 546                                                                                                                                                  Die Hard
## 547                                                                                                                       Willy Wonka & the Chocolate Factory
## 548                                                                                                                                      Fish Called Wanda, A
## 549                                                                                                                              Monty Python's Life of Brian
## 550                                                                                                                                E.T. the Extra-Terrestrial
## 551                                                                                                                           Return of the Pink Panther, The
## 552                                                                                                                                      Escape from New York
## 553                                                                                                                           Monty Python and the Holy Grail
## 554                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 555                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 556                                                                                                                                       Princess Bride, The
## 557                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 558                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 559                                                                                                                                       Blues Brothers, The
## 560                                                                                                                  Grand Day Out with Wallace and Gromit, A
## 561                                                                                                                                                   Amadeus
## 562                                                                                                                                          Right Stuff, The
## 563                                                                                                                                           Terminator, The
## 564                                                                                                                                                     Glory
## 565                                                                                                                                        Back to the Future
## 566                                                                                                                                                Highlander
## 567                                                                                                                                        Young Frankenstein
## 568                                                                                                                                                   Ben-Hur
## 569                                                                                                                                        This Is Spinal Tap
## 570                                                                                                                        Indiana Jones and the Last Crusade
## 571                                                                                                                                      Pink Floyd: The Wall
## 572                                                                                                                                           Field of Dreams
## 573                                                                                                                                   When Harry Met Sally...
## 574                                                                                                                                 Mirror Has Two Faces, The
## 575                                                                                                                             Star Trek: The Motion Picture
## 576                                                                                                                    Star Trek VI: The Undiscovered Country
## 577                                                                                                                           Star Trek V: The Final Frontier
## 578                                                                                                                           Star Trek II: The Wrath of Khan
## 579                                                                                                                       Star Trek III: The Search for Spock
## 580                                                                                                                             Star Trek IV: The Voyage Home
## 581                                                                                                                                           Raising Arizona
## 582                                                                                                                           Beavis and Butt-Head Do America
## 583                                                                                                                                 Last of the Mohicans, The
## 584                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 585                                                                                                                                                To Die For
## 586                                                                                                                                      Seven (a.k.a. Se7en)
## 587                                                                                                                                       Usual Suspects, The
## 588                                                                                                                                                Braveheart
## 589                                                                                                                        Star Wars: Episode IV - A New Hope
## 590                                                                                                                                                      Nell
## 591                                                                                                                                              Pulp Fiction
## 592                                                                                                                                 Shawshank Redemption, The
## 593                                                                                                                                              Forrest Gump
## 594                                                                                                                                             Fugitive, The
## 595                                                                                                                                 Robin Hood: Men in Tights
## 596                                                                                                                                                      Rudy
## 597                                                                                                                                          Schindler's List
## 598                                                                                                                              So I Married an Axe Murderer
## 599                                                                                                                                Terminator 2: Judgment Day
## 600                                                                                                                                 Silence of the Lambs, The
## 601                                                                                                                                               Primal Fear
## 602                                                                                                                                           Time to Kill, A
## 603                                                                                                                                            Godfather, The
## 604                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 605                                                                                                                                       Princess Bride, The
## 606                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 607                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 608                                                                                                                                                    Psycho
## 609                                                                                                                                                   Amadeus
## 610                                                                                                                                              Shining, The
## 611                                                                                                                                               Stand by Me
## 612                                                                                                                                             Groundhog Day
## 613                                                                                                                                        Back to the Future
## 614                                                                                                                        Indiana Jones and the Last Crusade
## 615                                                                                                                                           Field of Dreams
## 616                                                                                                                                               Sling Blade
## 617                                                                                                                                                      Jaws
## 618                                                                                                                                             Jerry Maguire
## 619                                                                                                                                       Grosse Pointe Blank
## 620                                                                                                                                                   Con Air
## 621                                                                                                                                         L.A. Confidential
## 622                                                                                                                                                 Game, The
## 623                                                                                                                                                   Witness
## 624                                                                                                                                         Good Will Hunting
## 625                                                                                                                                                    Fallen
## 626                                                                                                                                       Wedding Singer, The
## 627                                                                                                                                               Deep Impact
## 628                                                                                                                                                  Rain Man
## 629                                                                                                                                       Saving Private Ryan
## 630                                                                                                                                                    Splash
## 631                                                                                                                                       Secret of NIMH, The
## 632                                                                                                                                         Untouchables, The
## 633                                                                                                                                           My Cousin Vinny
## 634                                                                                                                       Life Is Beautiful (La Vita è bella)
## 635                                                                                                                                        American History X
## 636                                                                                                                                        Enemy of the State
## 637                                                                                                Christmas Vacation (National Lampoon's Christmas Vacation)
## 638                                                                                                                                              Office Space
## 639                                                                                                                                               Matrix, The
## 640                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 641                                                                                                                                          Sixth Sense, The
## 642                                                                                                                                                 Bowfinger
## 643                                                                                                                                                 Airplane!
## 644                                                                                                                                                       Big
## 645                                                                                                                                        Christmas Story, A
## 646                                                                                                                                            Stir of Echoes
## 647                                                                                                                                           American Beauty
## 648                                                                                                                                  Ferris Bueller's Day Off
## 649                                                                                                                                                Fight Club
## 650                                                                                                                                           Green Mile, The
## 651                                                                                                                                                 Gladiator
## 652                                                                                                                                       Remember the Titans
## 653                                                                                                                                          Meet the Parents
## 654                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 655                                                                                                                                                    Snatch
## 656                                                                                                                                         Finding Forrester
## 657                                                                                                                                                   Traffic
## 658                                                                                                                                                   Memento
## 659                                                                                                                                                  Scarface
## 660                                                                                                                                                Score, The
## 661                                                                                                                                            Monsters, Inc.
## 662                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 663                                                                                                                                            Ocean's Eleven
## 664                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 665                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 666                                                                                                                                         Beautiful Mind, A
## 667                                                                                                                                 The Count of Monte Cristo
## 668                                                                                                              Star Wars: Episode II - Attack of the Clones
## 669                                                                                                                                           Minority Report
## 670                                                                                                                                         Road to Perdition
## 671                                                                                                                                                Red Dragon
## 672                                                                                                                                              Strange Brew
## 673                                                                                                                                     Bowling for Columbine
## 674                                                                                                                    Lord of the Rings: The Two Towers, The
## 675                                                                                                                                       Catch Me If You Can
## 676                                                                                                                                              Finding Nemo
## 677                                                                                                                                          Italian Job, The
## 678                                                                                                                                              Mystic River
## 679                                                                                                                                         Kill Bill: Vol. 1
## 680                                                                                                                                              Runaway Jury
## 681                                                                                                                                         Last Samurai, The
## 682                                                                                                            Lord of the Rings: The Return of the King, The
## 683                                                                                                                     Eternal Sunshine of the Spotless Mind
## 684                                                                                                                                         Kill Bill: Vol. 2
## 685                                                                                                                                             Notebook, The
## 686                                                                                                                                              Garden State
## 687                                                                                                          Motorcycle Diaries, The (Diarios de motocicleta)
## 688                                                                                                                                         Shaun of the Dead
## 689                                                                                                                                                  Sin City
## 690                                                                                                                                                     Crash
## 691                                                                                                              Star Wars: Episode III - Revenge of the Sith
## 692                                                                                                                                             Batman Begins
## 693                                                                                                                                          Wedding Crashers
## 694                                                                                                                                                   Syriana
## 695                                                                                                                                             Walk the Line
## 696                                                                                                                                           Rumor Has It...
## 697                                                                                                                                                 Annapolis
## 698                                                                                                                                                  Firewall
## 699                                                                                                                                         Failure to Launch
## 700                                                                                                                                                 Toy Story
## 701                                                                                                                                     Sense and Sensibility
## 702                                                                                                                                                   Othello
## 703                                                                                                                                          Dead Man Walking
## 704                                                                                                                                      Seven (a.k.a. Se7en)
## 705                                                                                                                                 Shawshank Redemption, The
## 706                                                                                                                                    Much Ado About Nothing
## 707                                                                                                                                   Remains of the Day, The
## 708                                                                                                                                          Schindler's List
## 709                                                                                                                                               Shadowlands
## 710                                                                                                                                 Silence of the Lambs, The
## 711                                                                                                                                                     Fargo
## 712                                                                                                                                                 Rock, The
## 713                                                                                                                      William Shakespeare's Romeo + Juliet
## 714                                                                                                                                           Enchanted April
## 715                                                                                                                                                     Shine
## 716                                                                                                                                               Sling Blade
## 717                                                                                                                                                    Hamlet
## 718                                                                                                                                          Addicted to Love
## 719                                                                                                                                                   Contact
## 720                                                                                                                                             Sliding Doors
## 721                                                                                                                                          Truman Show, The
## 722                                                                                                                                         Good Will Hunting
## 723                                                                                                                                                   Titanic
## 724                                                                                                                                        As Good as It Gets
## 725                                                                                                                                       Saving Private Ryan
## 726                                                                                                                            Ever After: A Cinderella Story
## 727                                                                                                                                         Dark Crystal, The
## 728                                                                                                                                            My Blue Heaven
## 729                                                                                                                                           Few Good Men, A
## 730                                                                                                                                                 Rush Hour
## 731                                                                                                                                                     Ronin
## 732                                                                                                                                       Edward Scissorhands
## 733                                                                                                                                                      Antz
## 734                                                                                                                                           My Cousin Vinny
## 735                                                                                                                                            Simple Plan, A
## 736                                                                                                                                       Shakespeare in Love
## 737                                                                                                                                        Thin Red Line, The
## 738                                                                                                                                                   Payback
## 739                                                                                                                                               October Sky
## 740                                                                                                                                              Analyze This
## 741                                                                                                                                               Matrix, The
## 742                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 743                                                                                                                                          Sixth Sense, The
## 744                                                                                                                                          Yellow Submarine
## 745                                                                                                                                       Usual Suspects, The
## 746                                                                                                                                            Addiction, The
## 747                                                                                                                                 Shawshank Redemption, The
## 748                                                                                                                                Ace Ventura: Pet Detective
## 749                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 750                                                                                                                                                    Batman
## 751                                                                                                                       Cemetery Man (Dellamorte Dellamore)
## 752                                                                                                                                                  Die Hard
## 753                                                                                                                                            Reservoir Dogs
## 754                                                                                                                                                   Top Gun
## 755                                                                                                                                                Abyss, The
## 756                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 757                                                                                                                                       Princess Bride, The
## 758                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 759                                                                                                                                                    Aliens
## 760                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 761                                                                                                                                       Blues Brothers, The
## 762                                                                                                                                           Terminator, The
## 763                                                                                                                        Indiana Jones and the Last Crusade
## 764                                                                                                                                               Sling Blade
## 765                                                                                                                                          Hearts and Minds
## 766                                                                                                                                            Absolute Power
## 767                                                                                                                                                  Anaconda
## 768                                                                                                                                      My Own Private Idaho
## 769                                                                                                                                       Alien: Resurrection
## 770                                                                                                                                         Good Will Hunting
## 771                                                                                                                                      Sweet Hereafter, The
## 772                                                                                                                                             Almost Heroes
## 773                                                                                                                              There's Something About Mary
## 774                                                                                                                                                L.A. Story
## 775                                                                                                                                             Runaway Train
## 776                                                                                                                                       Romancing the Stone
## 777                                                                                                                                                 Rocky III
## 778                                                                                                                                              Analyze This
## 779                                                                                                                                               Matrix, The
## 780                                                                                                                                         13th Warrior, The
## 781                                                                                                                                     Astronaut's Wife, The
## 782                                                                                                                                                  Stigmata
## 783                                                                                                                                            Stir of Echoes
## 784                                                                                                                                           Double Jeopardy
## 785                                                                                                                                               Three Kings
## 786                                                                                                                                                 Superstar
## 787                                                                                                                                                 Hairspray
## 788                                                                                                                                     House on Haunted Hill
## 789                                                                                                                                       Bone Collector, The
## 790                                                                                                                                          Drugstore Cowboy
## 791                                                                                                                                       Usual Suspects, The
## 792                                                                                                                                       From Dusk Till Dawn
## 793                                                                                                                                NeverEnding Story III, The
## 794                                                                                                                          Free Willy 2: The Adventure Home
## 795                                                                                                                                              Pulp Fiction
## 796                                                                                                                                             Trainspotting
## 797                                                                                                                                                   Kingpin
## 798                                                                                                                                              Citizen Kane
## 799                                                                                                                             Robin Hood: Prince of Thieves
## 800                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 801                                                                                                                                 Last of the Mohicans, The
## 802                                                                                                                                           Lethal Weapon 4
## 803                                                                                                                                      D2: The Mighty Ducks
## 804                                                                                                                                                 SLC Punk!
## 805                                                                                                                                          Sixth Sense, The
## 806                                                                                                                                        Do the Right Thing
## 807                                                                                                                                     Bowling for Columbine
## 808                                                                                                                                          Step Into Liquid
## 809                                                                                                                                      Bourne Identity, The
## 810                                                                                                                                             Departed, The
## 811                                                                                                                                          Music and Lyrics
## 812                                                                                                                                             Bank Job, The
## 813                                                                                                                                           Informant!, The
## 814                                                                                                                                Exit Through the Gift Shop
## 815                                                                                                                                                 Inception
## 816                                                                                                                                                 Town, The
## 817                                                                                                                                                Inside Job
## 818                                                                                                                                                  Restrepo
## 819                                                                                                                                                 127 Hours
## 820                                                                                                                                                     Drive
## 821                                                                                                                                          The Hunger Games
## 822                                                                                                                                    Dark Knight Rises, The
## 823                                                                                                                                             Life in a Day
## 824                                                                                                                                                   Skyfall
## 825                                                                                                                                                   Taken 2
## 826                                                                                                                                                Life of Pi
## 827                                                                                                                                                   Gravity
## 828                                                                                                                           The Hunger Games: Catching Fire
## 829                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 830                                                                                                                               Searching for Bobby Fischer
## 831                                                                                                                                 Six Degrees of Separation
## 832                                                                                                                                                     Fargo
## 833                                                                                                                                                 Space Jam
## 834                                                                                                                                                   Twister
## 835                                                                                                                                                 Barb Wire
## 836                                                                                                                                              Mary Poppins
## 837                                                                                                                                       Alice in Wonderland
## 838                                                                                                                                                   Sleeper
## 839                                                                                                                                       Princess Bride, The
## 840                                                                                                                                          Army of Darkness
## 841                                                                                                                                       Blues Brothers, The
## 842                                                                                                                                                Annie Hall
## 843                                                                                                                                          Harold and Maude
## 844                                                                                                                        Unbearable Lightness of Being, The
## 845                                                                                                                           Star Trek II: The Wrath of Khan
## 846                                                                                                                                                      Jaws
## 847                                                                                                                                               Chasing Amy
## 848                                                                                                                                         Big Lebowski, The
## 849                                                                                                                                           Blame It on Rio
## 850                                                                                                                                             Bug's Life, A
## 851                                                                                                                            Texas Chainsaw Massacre 2, The
## 852                                                                                                                                        Planet of the Apes
## 853                                                                                                                                               Swamp Thing
## 854                                                                                                                                                Fight Club
## 855                                                                                                                                Deuce Bigalow: Male Gigolo
## 856                                                                                                                                    Cider House Rules, The
## 857                                                                                                                                  Talented Mr. Ripley, The
## 858                                                                                                                                            Angela's Ashes
## 859                                                                                                                                               Boiler Room
## 860                                                                                                                                             Drowning Mona
## 861                                                                                                                                           Erin Brockovich
## 862                                                                                                                                               Retroactive
## 863                                                                                                                                                Dreamscape
## 864                                                                                                                                               House Party
## 865                                                                                                                                            Rocketship X-M
## 866                                                                                                                                                 Footloose
## 867                                                                                                                                                     X-Men
## 868                                                                                                                                              Chuck & Buck
## 869                                                                                                                                         What Lies Beneath
## 870                                                                                                                                    Pokémon the Movie 2000
## 871                                                                                                                                       Anatomy of a Murder
## 872                                                                                                                                           What About Bob?
## 873                                                                                                                                               Coyote Ugly
## 874                                                                                                                                             Space Cowboys
## 875                                                                                                                                           Mad About Mambo
## 876                                                                                                                                              Saving Grace
## 877                                                                                                                                               Air America
## 878                                                                                                                                           Steel Magnolias
## 879                                                                                                                                         Replacements, The
## 880                                                                                                                                                 Cell, The
## 881                                                                                                                   Godzilla 2000 (Gojira ni-sen mireniamu)
## 882                                                                                                                             Original Kings of Comedy, The
## 883                                                                                                                   Naked Gun 2 1/2: The Smell of Fear, The
## 884                                                                                                                                                     Shane
## 885                                                                                                                                                Cat Ballou
## 886                                                                                                                                           Art of War, The
## 887                                                                                                                                                Love & Sex
## 888                                                                                                                                         Steal This Movie!
## 889                                                                                                                                Man Who Fell to Earth, The
## 890                                                                                                                                                 Toy Story
## 891                                                                                                                                      Seven (a.k.a. Se7en)
## 892                                                                                                                                                Braveheart
## 893                                                                                                                                    Miracle on 34th Street
## 894                                                                                                                                              Pulp Fiction
## 895                                                                                                                                 Shawshank Redemption, The
## 896                                                                                                                                              Forrest Gump
## 897                                                                                                                                          Jungle Book, The
## 898                                                                                                                                             Jurassic Park
## 899                                                                                                                                                      Rudy
## 900                                                                                                                                          Schindler's List
## 901                                                                                                                                        Secret Garden, The
## 902                                                                                                                                                     Ghost
## 903                                                                                                                                        Dances with Wolves
## 904                                                                                                                                              My Fair Lady
## 905                                                                                                                                         Wizard of Oz, The
## 906                                                                                                                             Robin Hood: Prince of Thieves
## 907                                                                                                                                               Stand by Me
## 908                                                                                                                                             Groundhog Day
## 909                                                                                                                                           Lethal Weapon 4
## 910                                                                                                                                                  Rain Man
## 911                                                                                                                                             Bug's Life, A
## 912                                                                                                                                               Matrix, The
## 913                                                                                                                                10 Things I Hate About You
## 914                                                                                                                                           Iron Giant, The
## 915                                                                                                                                          Sixth Sense, The
## 916                                                                                                                                        Christmas Story, A
## 917                                                                                                                                            Boys Don't Cry
## 918                                                                                                                                  Ferris Bueller's Day Off
## 919                                                                                                                                               Toy Story 2
## 920                                                                                                                                           Green Mile, The
## 921                                                                                                                                    League of Their Own, A
## 922                                                                                                                                         Muppet Movie, The
## 923                                                                                                                                             Shanghai Noon
## 924                                                                                                                                                     Shrek
## 925                                                                                                                                              Pearl Harbor
## 926                                                                                                                                             City Slickers
## 927                                                                                                                                            American Pie 2
## 928                                                                                                                                              Donnie Darko
## 929                                                                                                                                            Monsters, Inc.
## 930                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 931                                                                                                                                       Catch Me If You Can
## 932                                                                                                                                              Finding Nemo
## 933                                                                                                                     Eternal Sunshine of the Spotless Mind
## 934                                                                                                                                          Band of Brothers
## 935                                                                                                                                     Bourne Ultimatum, The
## 936                                                                                                                                          Dark Knight, The
## 937                                                                                                                                               Gran Torino
## 938                                                                                                                                      (500) Days of Summer
## 939                                                                                                                                               Toy Story 3
## 940                                                                                                              Harry Potter and the Deathly Hallows: Part 1
## 941                                                                                                              Harry Potter and the Deathly Hallows: Part 2
## 942                                                                                                                                               John Carter
## 943                                                                                                                           Snow White and the Seven Dwarfs
## 944                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 945                                                                                                                                                   Titanic
## 946                                                                                                                                 Cat from Outer Space, The
## 947                                                                                                                                             Bug's Life, A
## 948                                                                                                                                      Prince of Egypt, The
## 949                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 950                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 951                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 952                                                                                                                                          Inspector Gadget
## 953                                                                                                                                             Runaway Bride
## 954                                                                                                                                      For Love of the Game
## 955                                                                                                                                               Toy Story 2
## 956                                                                                                                                             Stuart Little
## 957                                                                                                                                              Galaxy Quest
## 958                                                                                                                                           Mission to Mars
## 959                                                                                                                                    Mission: Impossible II
## 960                                                                                                                                               Chicken Run
## 961                                                                                                                                              6th Day, The
## 962                                                                                                        How the Grinch Stole Christmas (a.k.a. The Grinch)
## 963                                                                                                                                                 Toy Story
## 964                                                                                                                                                   Jumanji
## 965                                                                                                                               Father of the Bride Part II
## 966                                                                                                                                                      Heat
## 967                                                                                                                                                 GoldenEye
## 968                                                                                                                                   American President, The
## 969                                                                                                                                                     Nixon
## 970                                                                                                                                                    Casino
## 971                                                                                                                                     Sense and Sensibility
## 972                                                                                                                            Ace Ventura: When Nature Calls
## 973                                                                                                                                                Get Shorty
## 974                                                                                                                                                   Copycat
## 975                                                                                                                                         Leaving Las Vegas
## 976                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 977                                                                                                                                                      Babe
## 978                                                                                                                                          Dead Man Walking
## 979                                                                                                                                                  Clueless
## 980                                                                                                                                             Mortal Kombat
## 981                                                                                                                                      Seven (a.k.a. Se7en)
## 982                                                                                                                                       Usual Suspects, The
## 983                                                                                                                                          Mighty Aphrodite
## 984                                                                                                                                        Mr. Holland's Opus
## 985                                                                                                                                       From Dusk Till Dawn
## 986                                                                                                                                  Antonia's Line (Antonia)
## 987                                                                                                                                           Beautiful Girls
## 988                                                                                                                                              Broken Arrow
## 989                                                                                                                                             Bottle Rocket
## 990                                                                                                                                             Happy Gilmore
## 991                                                                                                                                    Muppet Treasure Island
## 992                                                                                                                                                Braveheart
## 993                                                                                                                                               Taxi Driver
## 994                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 995                                                                                                                    Chungking Express (Chung Hing sam lam)
## 996                                                                                                                                    Flirting With Disaster
## 997                                                                                                                                                  Bad Boys
## 998                                                                                                                                                   Amateur
## 999                                                                                                                                                 Apollo 13
## 1000                                                                                                                                           Batman Forever
## 1001                                                                                                                                           Canadian Bacon
## 1002                                                                                                                                                    Congo
## 1003                                                                                                                                             Crimson Tide
## 1004                                                                                                                                                    Crumb
## 1005                                                                                                                                                Desperado
## 1006                                                                                                                                    Devil in a Blue Dress
## 1007                                                                                                                               Die Hard: With a Vengeance
## 1008                                                                                                                                                  Hackers
## 1009                                                                                                                                          Johnny Mnemonic
## 1010                                                                                                                                                     Kids
## 1011                                                                                                                                       Living in Oblivion
## 1012                                                                                                                                                 Mallrats
## 1013                                                                                                                                                 Net, The
## 1014                                                                                                                                                Showgirls
## 1015                                                                                                                                                  Species
## 1016                                                                                                                                             Strange Days
## 1017                                                                                                                                               Waterworld
## 1018                                                                                                                           Before the Rain (Pred dozhdot)
## 1019                                                                                                                                           Before Sunrise
## 1020                                                                                                                                            Billy Madison
## 1021                                                                                                                                                   Clerks
## 1022                                                                                                                                               Disclosure
## 1023                                                                                                                                        Dolores Claiborne
## 1024                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 1025                                                                                                                     Eat Drink Man Woman (Yin shi nan nu)
## 1026                                                                                                                                                  Exotica
## 1027                                                                                                                                                  Ed Wood
## 1028                                                                                                                                             Forget Paris
## 1029                                                                                                                                              Hoop Dreams
## 1030                                                                                                                                       Heavenly Creatures
## 1031                                                                                                                                                     I.Q.
## 1032                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 1033                                                                                                                       Star Wars: Episode IV - A New Hope
## 1034                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 1035                                                                                                                                     Natural Born Killers
## 1036                                                                                                                                                 Outbreak
## 1037                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 1038                                                                                                                                             Pulp Fiction
## 1039                                                                                                                                                Quiz Show
## 1040                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 1041                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 1042                                                                                                                 Three Colors: White (Trzy kolory: Bialy)
## 1043                                                                                                                                                 Stargate
## 1044                                                                                                                                        Santa Clause, The
## 1045                                                                                                                                Shawshank Redemption, The
## 1046                                                                                                                                     Swimming with Sharks
## 1047                                                                                                                                   Star Trek: Generations
## 1048                                                                                                                                               Underneath
## 1049                                                                                                                                  While You Were Sleeping
## 1050                                                                                                                                         Muriel's Wedding
## 1051                                                                                                                               Ace Ventura: Pet Detective
## 1052                                                                                                                                 Clear and Present Danger
## 1053                                                                                                                                                Crow, The
## 1054                                                                                                                                         Flintstones, The
## 1055                                                                                                                                             Forrest Gump
## 1056                                                                                                                              Four Weddings and a Funeral
## 1057                                                                                                                                           Lion King, The
## 1058                                                                                                                                                Mask, The
## 1059                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 1060                                                                                                                                               Paper, The
## 1061                                                                                                                                            Reality Bites
## 1062                                                                                                                                            Red Rock West
## 1063                                                                                                                                                    Speed
## 1064                                                                                                                                                True Lies
## 1065                                                                                                                                                     Wolf
## 1066                                                                                                                                                Cabin Boy
## 1067                                                                                                                                            Carlito's Way
## 1068                                                                                                                                              Cliffhanger
## 1069                                                                                                                                                Coneheads
## 1070                                                                                                                                                     Dave
## 1071                                                                                                                                       Dazed and Confused
## 1072                                                                                                                                           Demolition Man
## 1073                                                                                                                                                Firm, The
## 1074                                                                                                                                            Fugitive, The
## 1075                                                                                                                                     Hot Shots! Part Deux
## 1076                                                                                                                                     Hudsucker Proxy, The
## 1077                                                                                                                                      In the Line of Fire
## 1078                                                                                                                                            Jurassic Park
## 1079                                                                                                                                               Kalifornia
## 1080                                                                                                                                         King of the Hill
## 1081                                                                                                                                         Last Action Hero
## 1082                                                                                                                                       Executive Decision
## 1083                                                                                                                                           Mrs. Doubtfire
## 1084                                                                                                                                             Philadelphia
## 1085                                                                                                                                               Piano, The
## 1086                                                                                                                                Robin Hood: Men in Tights
## 1087                                                                                                                                                     Rudy
## 1088                                                                                                                                         Schindler's List
## 1089                                                                                                                                               Short Cuts
## 1090                                                                                                                                     Sleepless in Seattle
## 1091                                                                                                                                                   Sliver
## 1092                                                                                                                                             Blade Runner
## 1093                                                                                                                             So I Married an Axe Murderer
## 1094                                                                                                                 Thirty-Two Short Films About Glenn Gould
## 1095                                                                                                                          Nightmare Before Christmas, The
## 1096                                                                                                                                             True Romance
## 1097                                                                                                                                            War Room, The
## 1098                                                                                                                                 Welcome to the Dollhouse
## 1099                                                                                                                                      Spanking the Monkey
## 1100                                                                                                                                               Home Alone
## 1101                                                                                                                                                    Ghost
## 1102                                                                                                                                                  Aladdin
## 1103                                                                                                                               Terminator 2: Judgment Day
## 1104                                                                                                                                       Dances with Wolves
## 1105                                                                                                                                                   Batman
## 1106                                                                                                                                Silence of the Lambs, The
## 1107                                                                                                                          Snow White and the Seven Dwarfs
## 1108                                                                                                                                             Pretty Woman
## 1109                                                                                                                                                    Fargo
## 1110                                                                                                                                              Heavy Metal
## 1111                                                                                                                                              Primal Fear
## 1112                                                                                                                                       Courage Under Fire
## 1113                                                                                                                                      Mission: Impossible
## 1114                                                                                                                            Kids in the Hall: Brain Candy
## 1115                                                                                                                                              Underground
## 1116                                                                                                                                               Barbarella
## 1117                                                                                           Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 1118                                                                                                                             Truth About Cats & Dogs, The
## 1119                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 1120                                                                                                                                               Craft, The
## 1121                                                                                                                                                Rock, The
## 1122                                                                                                                                                  Twister
## 1123                                                                                                                          Wallace & Gromit: A Close Shave
## 1124                                                                                                                                             Arrival, The
## 1125                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 1126                                                                                                                                               Striptease
## 1127                                                                                                                                            Trainspotting
## 1128                                                                                                                            Independence Day (a.k.a. ID4)
## 1129                                                                                                                                           Cable Guy, The
## 1130                                                                                                                                                  Kingpin
## 1131                                                                                                                                                   Eraser
## 1132                                                                                                                                     Nutty Professor, The
## 1133                                                                                                                                         Frighteners, The
## 1134                                                                                                                                                Lone Star
## 1135                                                                                                                                               Phenomenon
## 1136                                                                                                                                      Walking and Talking
## 1137                                                                                                                                            She's the One
## 1138                                                                                                                                                   Ransom
## 1139                                                                                                                                           Chain Reaction
## 1140                                                                                                                                                 Basquiat
## 1141                                                                                                                                           Godfather, The
## 1142                                                                                                                                                    Bound
## 1143                                                                                                                                      Singin' in the Rain
## 1144                                                                                                                                                  Vertigo
## 1145                                                                                                                                              Rear Window
## 1146                                                                                                                                       North by Northwest
## 1147                                                                                                                                           Apartment, The
## 1148                                                                                                                                         Some Like It Hot
## 1149                                                                                                                                                  Charade
## 1150                                                                                                                                               Casablanca
## 1151                                                                                                                                      Maltese Falcon, The
## 1152                                                                                                                                             My Fair Lady
## 1153                                                                                                                                            Roman Holiday
## 1154                                                                                                                                        Wizard of Oz, The
## 1155                                                                                                                                       Gone with the Wind
## 1156                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 1157                                                                                                                                             Citizen Kane
## 1158                                                                                                                                    2001: A Space Odyssey
## 1159                                                                                                                                            All About Eve
## 1160                                                                                                                                               Spellbound
## 1161                                                                                                                                    It's a Wonderful Life
## 1162                                                                                                                                                Big Night
## 1163                                                                                                                                            Cool Runnings
## 1164                                                                                                                                      Sound of Music, The
## 1165                                                                                                                                                 Die Hard
## 1166                                                                                                                                           Secrets & Lies
## 1167                                                                                                                                 Long Kiss Goodnight, The
## 1168                                                                                                                     William Shakespeare's Romeo + Juliet
## 1169                                                                                                                                                 Swingers
## 1170                                                                                                                      Willy Wonka & the Chocolate Factory
## 1171                                                                                                                                     Fish Called Wanda, A
## 1172                                                                                                                                         Bonnie and Clyde
## 1173                                                                                                                                            Dirty Dancing
## 1174                                                                                                                                           Reservoir Dogs
## 1175                                                                                                                                           Basic Instinct
## 1176                                                                                                                                               Doors, The
## 1177                                                                                                                                         Crying Game, The
## 1178                                                                                                                                      Glengarry Glen Ross
## 1179                                                                                                                               E.T. the Extra-Terrestrial
## 1180                                                                                                                                          Days of Thunder
## 1181                                                                                                                                                  Top Gun
## 1182                                                                                                                              People vs. Larry Flynt, The
## 1183                                                                                                                                               Abyss, The
## 1184                                                                                                                                         Jean de Florette
## 1185                                                                                                                          Monty Python and the Holy Grail
## 1186                                                                                                                                       When We Were Kings
## 1187                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 1188                                                                                                                                              Bob Roberts
## 1189                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 1190                                                                                              Double Life of Veronique, The (Double Vie de Véronique, La)
## 1191                                                                                                                                           Paths of Glory
## 1192                                                                                                                                            Grifters, The
## 1193                                                                                                                                     English Patient, The
## 1194                                                                                                                                 Sex, Lies, and Videotape
## 1195                                                                                                                                      Thin Blue Line, The
## 1196                                                                                                                          One Flew Over the Cuckoo's Nest
## 1197                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 1198                                                                                                                                      Princess Bride, The
## 1199                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 1200                                                                                                                                                   Brazil
## 1201                                                                                                                                                   Aliens
## 1202                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 1203                                                                                                                                             12 Angry Men
## 1204                                                                                                                                       Lawrence of Arabia
## 1205                                                                                                                                      Clockwork Orange, A
## 1206                                                                                                                                    To Kill a Mockingbird
## 1207                                                                                                                                           Apocalypse Now
## 1208                                                                                                   Once Upon a Time in the West (C'era una volta il West)
## 1209                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 1210                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 1211                                                                                                                                           Third Man, The
## 1212                                                                                                                                               Goodfellas
## 1213                                                                                                                                                    Alien
## 1214                                                                                                                                         Army of Darkness
## 1215                                                                                                                                                      Ran
## 1216                                                                                                                       Killer, The (Die xue shuang xiong)
## 1217                                                                                                                                                   Psycho
## 1218                                                                                                                                      Blues Brothers, The
## 1219                                                                                                                                  Godfather: Part II, The
## 1220                                                                                                                                        Full Metal Jacket
## 1221                                                                                                                 Grand Day Out with Wallace and Gromit, A
## 1222                                                                                                                                                  Amadeus
## 1223                                                                                                                                              Raging Bull
## 1224                                                                                                                                               Annie Hall
## 1225                                                                                                                                         Right Stuff, The
## 1226                                                                                                                                    Boot, Das (Boat, The)
## 1227                                                                                                                                               Sting, The
## 1228                                                                                                                                         Harold and Maude
## 1229                                                                                                                                          Terminator, The
## 1230                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 1231                                                                                                                                                Manhattan
## 1232                                                                                                                                       Dead Poets Society
## 1233                                                                                                                                            Graduate, The
## 1234                                                                                                                                            Touch of Evil
## 1235                                                                                                                                Femme Nikita, La (Nikita)
## 1236                                                                                                                            Bridge on the River Kwai, The
## 1237                                                                                                                                               8 1/2 (8½)
## 1238                                                                                                                                                Chinatown
## 1239                                                                                                                        Treasure of the Sierra Madre, The
## 1240                                                                                                                                             Shining, The
## 1241                                                                                                                                              Stand by Me
## 1242                                                                                                                                                        M
## 1243                                                                                                                                        Great Escape, The
## 1244                                                                                                                                         Deer Hunter, The
## 1245                                                                                                                                                     Diva
## 1246                                                                                                                                            Groundhog Day
## 1247                                                                                                                                               Unforgiven
## 1248                                                                                                                                Manchurian Candidate, The
## 1249                                                                                                                                       Back to the Future
## 1250                                                                                                                                                   Patton
## 1251                                                                                                                                           Cool Hand Luke
## 1252                                                                                                    Raise the Red Lantern (Da hong deng long gao gao gua)
## 1253                                                                                                                                      Great Dictator, The
## 1254                                                                                                                                                High Noon
## 1255                                                                                                                                           Big Sleep, The
## 1256                                                                                                                                                  Ben-Hur
## 1257                                                                                                                                       This Is Spinal Tap
## 1258                                                                                                Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance)
## 1259                                                                                                                                   Some Kind of Wonderful
## 1260                                                                                                                       Indiana Jones and the Last Crusade
## 1261                                                                                                                                                   Gandhi
## 1262                                                                                                                                              Real Genius
## 1263                                                                                                                                          Field of Dreams
## 1264                                                                                                                               Man Who Would Be King, The
## 1265                                                                                                                       Butch Cassidy and the Sundance Kid
## 1266                                                                                                                                  When Harry Met Sally...
## 1267                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 1268                                                                                                                                               Birds, The
## 1269                                                                                                                                                Blob, The
## 1270                                                                                                                          Dracula (Bram Stoker's Dracula)
## 1271                                                                                                                                                 Candyman
## 1272                                                                                                                                 Star Trek: First Contact
## 1273                                                                                                                                              Sling Blade
## 1274                                                                                                     Paradise Lost: The Child Murders at Robin Hood Hills
## 1275                                                                                                                                               Die Hard 2
## 1276                                                                                                                                           Batman Returns
## 1277                                                                                                                                                   Grease
## 1278                                                                                                                                              Under Siege
## 1279                                                                                                                                                     Jaws
## 1280                                                                                                                                            Mars Attacks!
## 1281                                                                                                                                            Jerry Maguire
## 1282                                                                                                                                          Raising Arizona
## 1283                                                                                                                                                 Sneakers
## 1284                                                                                                                          Beavis and Butt-Head Do America
## 1285                                                                                                                                                   Scream
## 1286                                                                                                                                      Waiting for Guffman
## 1287                                                                                                                                             Lost Highway
## 1288                                                                                                                                            Donnie Brasco
## 1289                                                                                                                                            Private Parts
## 1290                                                                                                                                               Saint, The
## 1291                                                                                                                                                    Crash
## 1292                                                                                                                                         Daytrippers, The
## 1293                                                                                                                                                Liar Liar
## 1294                                                                                                                                      Grosse Pointe Blank
## 1295                                                                                                                                                   Kissed
## 1296                                                                                                                                  8 Heads in a Duffel Bag
## 1297                                                                                                                   Romy and Michele's High School Reunion
## 1298                                                                                                              Austin Powers: International Man of Mystery
## 1299                                                                                                                                       Fifth Element, The
## 1300                                                                                                                                                  Nowhere
## 1301                                                                                                                           Lost World: Jurassic Park, The
## 1302                                                                                                                                              Schizopolis
## 1303                                                                                                                                                  Con Air
## 1304                                                                                                                                  Speed 2: Cruise Control
## 1305                                                                                                                                           Batman & Robin
## 1306                                                                                                                                 My Best Friend's Wedding
## 1307                                                                                                                                                 Face/Off
## 1308                                                                                                                                Men in Black (a.k.a. MIB)
## 1309                                                                                                                                                  Contact
## 1310                                                                                                                                                 Cop Land
## 1311                                                                                                                                        Conspiracy Theory
## 1312                                                                                                                                            Air Force One
## 1313                                                                                                                                Hunt for Red October, The
## 1314                                                                                                                                                Edge, The
## 1315                                                                                                                                          Peacemaker, The
## 1316                                                                                                                                        L.A. Confidential
## 1317                                                                                                                                                Game, The
## 1318                                                                                                                                           Ice Storm, The
## 1319                                                                                                                                              Chasing Amy
## 1320                                                                                                                          I Know What You Did Last Summer
## 1321                                                                                                                                     The Devil's Advocate
## 1322                                                                                                                             Fast, Cheap & Out of Control
## 1323                                                                                                                                                  Gattaca
## 1324                                                                                                                                                  Stripes
## 1325                                                                                                                                            Boogie Nights
## 1326                                                                                                                                        Starship Troopers
## 1327                                                                                                                                            Sliding Doors
## 1328                                                                                                                                         Truman Show, The
## 1329                                                                                                                             Man Who Knew Too Little, The
## 1330                                                                                                                                      Alien: Resurrection
## 1331                                                                                                                                             Apostle, The
## 1332                                                                                                                                        Good Will Hunting
## 1333                                                                                                                                                 Scream 2
## 1334                                                                                                                                     Sweet Hereafter, The
## 1335                                                                                                                                                  Titanic
## 1336                                                                                                                                      Tomorrow Never Dies
## 1337                                                                                                                                             Jackie Brown
## 1338                                                                                                                                        Big Lebowski, The
## 1339                                                                                                                                       Great Expectations
## 1340                                                                                                                                              Wag the Dog
## 1341                                                                                                                                                Dark City
## 1342                                                                                                                                                Hard Rain
## 1343                                                                                                                                               Half Baked
## 1344                                                                                                                                                   Fallen
## 1345                                                                                                                                      Wedding Singer, The
## 1346                                                                                                                                                   Sphere
## 1347                                                                                                                                       As Good as It Gets
## 1348                                                                                                                                            U.S. Marshals
## 1349                                                                                                                                              Wild Things
## 1350                                                                                                                                       Cool, Dry Place, A
## 1351                                                                                                                                           Primary Colors
## 1352                                                                                                                                      Two Girls and a Guy
## 1353                                                                                                                                             Big One, The
## 1354                                                                                                                                            Lost in Space
## 1355                                                                                                                                    Spanish Prisoner, The
## 1356                                                                                                                                  Last Days of Disco, The
## 1357                                                                                                                                              Zero Effect
## 1358                                                                                                                         Taste of Cherry (Ta'm e guilass)
## 1359                                                                                                                                     Character (Karakter)
## 1360                                                                                                                                               Species II
## 1361                                                                                                                                              Deep Impact
## 1362                                                                                                                                                 Godzilla
## 1363                                                                                                                                                 Bulworth
## 1364                                                                                                                                                 Insomnia
## 1365                                                                                                                                        Can't Hardly Wait
## 1366                                                                                                                                                 High Art
## 1367                                                                                                                                               Henry Fool
## 1368                                                                                                                           X-Files: Fight the Future, The
## 1369                                                                                                                                             Out of Sight
## 1370                                                                                                                                            Smoke Signals
## 1371                                                                                                                                               Armageddon
## 1372                                                                                                                                                       Pi
## 1373                                                                                                                             There's Something About Mary
## 1374                                                                                                                                        On the Waterfront
## 1375                                                                                                                                 In the Heat of the Night
## 1376                                                                                                                                          Midnight Cowboy
## 1377                                                                                                                                   French Connection, The
## 1378                                                                                                                                                    Rocky
## 1379                                                                                                                                        Kramer vs. Kramer
## 1380                                                                                                                                          Ordinary People
## 1381                                                                                                                                                 Rain Man
## 1382                                                                                                                                       Driving Miss Daisy
## 1383                                                                                                                                                    Klute
## 1384                                                                                                                                      Breakfast Club, The
## 1385                                                                                                                                              Poltergeist
## 1386                                                                                                                                            Exorcist, The
## 1387                                                                                                                                            Lethal Weapon
## 1388                                                                                                                                                 Gremlins
## 1389                                                                                                                                             Goonies, The
## 1390                                                                                                                                       Mask of Zorro, The
## 1391                                                                                                                                               Metropolis
## 1392                                                                                                                               Back to the Future Part II
## 1393                                                                                                                              Back to the Future Part III
## 1394                                                                                                                                                    Bambi
## 1395                                                                                                                     Seven Samurai (Shichinin no samurai)
## 1396                                                                                                                                       Dangerous Liaisons
## 1397                                                                                                                                                   Lolita
## 1398                                                                                                                                      Saving Private Ryan
## 1399                                                                                                                                                Condorman
## 1400                                                                                                                                 Honey, I Shrunk the Kids
## 1401                                                                                                                                          Negotiator, The
## 1402                                                                                                                                              BASEketball
## 1403                                                                                                                                               Roger & Me
## 1404                                                                                                                                              Blue Velvet
## 1405                                                                                                                                                   Splash
## 1406                                                                                                                                                     Tron
## 1407                                                                                                                                               L.A. Story
## 1408                                                                                                                     Indiana Jones and the Temple of Doom
## 1409                                                                                                                                       Addams Family, The
## 1410                                                                                                                                               Snake Eyes
## 1411                                                                                                                                Adventures in Babysitting
## 1412                                                                                                                                            Weird Science
## 1413                                                                                                                                        Dark Crystal, The
## 1414                                                                                                                                           Pretty in Pink
## 1415                                                                                                                                  Gods Must Be Crazy, The
## 1416                                                                                                                                          Rosemary's Baby
## 1417                                                                                                                                   NeverEnding Story, The
## 1418                                                                                                                                                    Blade
## 1419                                                                                                                                              Beetlejuice
## 1420                                                                                                                                     Strangers on a Train
## 1421                                                                                                                                        Untouchables, The
## 1422                                                                                                                                                 Rounders
## 1423                                                                                                                                                     Cube
## 1424                                                                                                                                           Broadcast News
## 1425                                                                                                                                          Say Anything...
## 1426                                                                                                                                          Few Good Men, A
## 1427                                                                                                                                        Indecent Proposal
## 1428                                                                                                                                                Rush Hour
## 1429                                                                                                                                                    Ronin
## 1430                                                                                                                                                   Pecker
## 1431                                                                                                                                               Thing, The
## 1432                                                                                                                                              Player, The
## 1433                                                                                                                                      Edward Scissorhands
## 1434                                                                                                                                                     Antz
## 1435                                                                                                                                          My Cousin Vinny
## 1436                                                                                                                                                Nashville
## 1437                                                                                                                           2010: The Year We Make Contact
## 1438                                                                                                                                        Elephant Man, The
## 1439                                                                                                                                                Happiness
## 1440                                                                                                                                            Pleasantville
## 1441                                                                                                                      Life Is Beautiful (La Vita è bella)
## 1442                                                                                                                                       American History X
## 1443                                                                                                                                        Gods and Monsters
## 1444                                                                                                                                               Siege, The
## 1445                                                                                                                                                Elizabeth
## 1446                                                                                                                                           Meet Joe Black
## 1447                                                                                                                 Nights of Cabiria (Notti di Cabiria, Le)
## 1448                                                                                                                                       Enemy of the State
## 1449                                                                                                                                            Bug's Life, A
## 1450                                                                                                                      Central Station (Central do Brasil)
## 1451                                                                                                                                Celebration, The (Festen)
## 1452                                                                                                                                                King Kong
## 1453                                                                                                                                Desperately Seeking Susan
## 1454                                                                                                                                                   Fletch
## 1455                                                                                                                                           Police Academy
## 1456                                                                                                                                          Very Bad Things
## 1457                                                                                                                                           Simple Plan, A
## 1458                                                                                                                                                 Rushmore
## 1459                                                                                                                                      Shakespeare in Love
## 1460                                                                                                                                   Jewel of the Nile, The
## 1461                                                                                                                                      Romancing the Stone
## 1462                                                                                                                                                   Cocoon
## 1463                                                                                                                                                     Clue
## 1464                                                                                                                                          You've Got Mail
## 1465                                                                                                                                       Thin Red Line, The
## 1466                                                                                                                                             Faculty, The
## 1467                                                                                                                                               Affliction
## 1468                                                                                                                                            Varsity Blues
## 1469                                                                                                                                                 Fly, The
## 1470                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 1471                                                                                                                                           ¡Three Amigos!
## 1472                                                                                                                                                  Payback
## 1473                                                                                                                                              October Sky
## 1474                                                                                                                                             Office Space
## 1475                                                                                                                                                      8MM
## 1476                                                                                                                                              Logan's Run
## 1477                                                                                                                                             Analyze This
## 1478                                                                                                                                         Cruel Intentions
## 1479                                                                                                                        Lock, Stock & Two Smoking Barrels
## 1480                                                                                                                                                 Ravenous
## 1481                                                                                                                                           Mod Squad, The
## 1482                                                                                                                                              Matrix, The
## 1483                                                                                                                               10 Things I Hate About You
## 1484                                                                                                                                      Out-of-Towners, The
## 1485                                                                                                       Dreamlife of Angels, The (Vie rêvée des anges, La)
## 1486                                                                                                                                                Following
## 1487                                                                                                                                                       Go
## 1488                                                                                                                                        Never Been Kissed
## 1489                                                                                         Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar)
## 1490                                                                                                                           Open Your Eyes (Abre los ojos)
## 1491                                                                                                                                              Pushing Tin
## 1492                                                                                                                                                 Election
## 1493                                                                                                                                                 eXistenZ
## 1494                                                                                                                                               Entrapment
## 1495                                                                                                                                               Mummy, The
## 1496                                                                                                                             After Life (Wandafuru raifu)
## 1497                                                                                                                Star Wars: Episode I - The Phantom Menace
## 1498                                                                                                                                                 Superman
## 1499                                                                                                                                             Frankenstein
## 1500                                                                                                                           Rocky Horror Picture Show, The
## 1501                                                                                                                                             Notting Hill
## 1502                                                                                                                                              Desert Blue
## 1503                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 1504                                                                                                                       Red Violin, The (Violon rouge, Le)
## 1505                                                                                                                                Run Lola Run (Lola rennt)
## 1506                                                                                                                                            Arachnophobia
## 1507                                                                                                                     South Park: Bigger, Longer and Uncut
## 1508                                                                                                                                           Wild Wild West
## 1509                                                                                                                                            Summer of Sam
## 1510                                                                                                                                             American Pie
## 1511                                                                                                                                           Arlington Road
## 1512                                                                                                                                       Muppets From Space
## 1513                                                                                                                                 Blair Witch Project, The
## 1514                                                                                                                                           Eyes Wide Shut
## 1515                                                                                                                                              Lake Placid
## 1516                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 1517                                                                                                                                          Ghostbusters II
## 1518                                                                                                                                       Drop Dead Gorgeous
## 1519                                                                                                                                            Deep Blue Sea
## 1520                                                                                                                                              Mystery Men
## 1521                                                                                                                                             Killing, The
## 1522                                                                                                                                                   Lolita
## 1523                                                                                                                                                     Dick
## 1524                                                                                                                                          Iron Giant, The
## 1525                                                                                                                                         Sixth Sense, The
## 1526                                                                                                                                 Thomas Crown Affair, The
## 1527                                                                                                                                               Yards, The
## 1528                                                                                                                                                Bowfinger
## 1529                                                                                                                                                Airplane!
## 1530                                                                                                                              National Lampoon's Vacation
## 1531                                                                                                                                                      Big
## 1532                                                                                                                                       Pelican Brief, The
## 1533                                                                                                          Three Days of the Condor (3 Days of the Condor)
## 1534                                                                                                                                                 Stigmata
## 1535                                                                                                                                           Stir of Echoes
## 1536                                                                                                                                          American Beauty
## 1537                                                                                                                                              Deliverance
## 1538                                                                                                                                          Double Jeopardy
## 1539                                                                                                                                              Three Kings
## 1540                                                                                                                                Sanjuro (Tsubaki Sanjûrô)
## 1541                                                                                                                                           Boys Don't Cry
## 1542                                                                                                                                               Limey, The
## 1543                                                                                                                                           Risky Business
## 1544                                                                                                                                             Total Recall
## 1545                                                                                                                                 Ferris Bueller's Day Off
## 1546                                                                                                                        Conformist, The (Conformista, Il)
## 1547                                                                                                                                               Goldfinger
## 1548                                                                                                                                                   Dr. No
## 1549                                                                                                                                      Sydney (Hard Eight)
## 1550                                                                                                                                               Fight Club
## 1551                                                                                                                                  Crimes and Misdemeanors
## 1552                                                                                                                                    Bringing Out the Dead
## 1553                                                                                                                                        Ipcress File, The
## 1554                                                                                                                                                  RoboCop
## 1555                                                                                                                                 Who Framed Roger Rabbit?
## 1556                                                                                                                                          Licence to Kill
## 1557                                                                                                                                              Thunderball
## 1558                                                                                                                                     Being John Malkovich
## 1559                                                                                                                        Princess Mononoke (Mononoke-hime)
## 1560                                                                                                                                            Bachelor, The
## 1561                                                                                                                                      Bone Collector, The
## 1562                                                                                                                                             Insider, The
## 1563                                                                                                                                           American Movie
## 1564                                                                                                                                               Last Night
## 1565                                                                                                                                                  Rosetta
## 1566                                                                                                                                         Drugstore Cowboy
## 1567                                                                                                                                             Falling Down
## 1568                                                                                                                                                  Yojimbo
## 1569                                                                                                                                               Spaceballs
## 1570                                                                                                                                           Trading Places
## 1571                                                                                                                                               Dead Again
## 1572                                                                                                                                                    Dogma
## 1573                                                                                                                                         Commitments, The
## 1574                                                                                                                                                    42 Up
## 1575                                                                                                                                            Sleepy Hollow
## 1576                                                                                                                                 World Is Not Enough, The
## 1577                                                                                                                All About My Mother (Todo sobre mi madre)
## 1578                                                            Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 1579                                                                                                                                         Fatal Attraction
## 1580                                                                                                                                             Midnight Run
## 1581                                                                                                                                                Backdraft
## 1582                                                                                                                                         Fisher King, The
## 1583                                                                                                                                              End of Days
## 1584                                                                                                                                              Toy Story 2
## 1585                                                                                                                                      Map of the World, A
## 1586                                                                                                                                        Sweet and Lowdown
## 1587                                                                                                                      Grand Illusion (La grande illusion)
## 1588                                                                                                                               Deuce Bigalow: Male Gigolo
## 1589                                                                                                                                          Green Mile, The
## 1590                                                                                                                                   Cider House Rules, The
## 1591                                                                                                                                            War Zone, The
## 1592                                                                                                                                   Last Picture Show, The
## 1593                                                                                                                                            Stuart Little
## 1594                                                                                                                                                 Magnolia
## 1595                                                                                                                                               Easy Rider
## 1596                                                                                                                                         Any Given Sunday
## 1597                                                                                                                                          Man on the Moon
## 1598                                                                                                                                             Galaxy Quest
## 1599                                                                                                                                 Talented Mr. Ripley, The
## 1600                                                                                                                                                    Titus
## 1601                                                                                                    Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
## 1602                                                                                                                                   Snow Falling on Cedars
## 1603                                                                                                                             Fast Times at Ridgemont High
## 1604                                                                                                                                          Pacific Heights
## 1605                                                                                                                                              Down to You
## 1606                                                                                                                                                Malcolm X
## 1607                                                                                                                                                    Alive
## 1608                                                                                                                                            Wayne's World
## 1609                                                                                                                                   League of Their Own, A
## 1610                                                                                                                                            Patriot Games
## 1611                                                                                                                                                  Singles
## 1612                                                                                                                            Twin Peaks: Fire Walk with Me
## 1613                                                                                                                           Hard-Boiled (Lat sau san taam)
## 1614                                                                                                           Man Bites Dog (C'est arrivé près de chez vous)
## 1615                                                                                                                                             Mariachi, El
## 1616                                                                                                                                           Bad Lieutenant
## 1617                                                                                                                                                 Scream 3
## 1618                                                                                                                                     Boondock Saints, The
## 1619                                                                                                                                               Beach, The
## 1620                                                                                                                                                 Snow Day
## 1621                                                                                                                                              Boiler Room
## 1622                                                                                                                                              Pitch Black
## 1623                                                                                                                                    Whole Nine Yards, The
## 1624                                                                                                                                              City Lights
## 1625                                                                                                                                           Reindeer Games
## 1626                                                                                                                                              Wonder Boys
## 1627                                                                                                                                               Deterrence
## 1628                                                                                                                 Mifune's Last Song (Mifunes sidste sang)
## 1629                                                                                                                        Ghost Dog: The Way of the Samurai
## 1630                                                                                                                                      Defending Your Life
## 1631                                                                                                                                              Bull Durham
## 1632                                                                                                                                        Dog Day Afternoon
## 1633                                                                                                                                                      JFK
## 1634                                                                                                                                        Shanghai Surprise
## 1635                                                                                                                                          Erin Brockovich
## 1636                                                                                                                                        Final Destination
## 1637                                                                                                                                          Thelma & Louise
## 1638                                                                                                                                             Animal House
## 1639                                                                                                                                        Creature Comforts
## 1640                                                                                                                                         Double Indemnity
## 1641                                                                                                                                    Good Morning, Vietnam
## 1642                                                                                                                                        Lord of the Flies
## 1643                                                                                                                                             Modern Times
## 1644                                                                                                                       Close Encounters of the Third Kind
## 1645                                                                                                                                           Jacob's Ladder
## 1646                                                                                                                                           Empire Records
## 1647                                                                                                                                            High Fidelity
## 1648                                                                                                                                              Skulls, The
## 1649                                                                                                                                                     Hook
## 1650                                                                                                                                                   Misery
## 1651                                                                                                                                                  Network
## 1652                                                                                                                                               No Way Out
## 1653                                                                                                                                                Frequency
## 1654                                                                                                                                             Return to Me
## 1655                                                                                                                                                 Predator
## 1656                                                                                                                                                  28 Days
## 1657                                                                                                                                          American Psycho
## 1658                                                                                                                                        Keeping the Faith
## 1659                                                                                                                                             East is East
## 1660                                                                                                                                                    Diner
## 1661                                                                                                                                               Caddyshack
## 1662                                                                                                                                                    U-571
## 1663                                                                                                                                     Virgin Suicides, The
## 1664                                                                                                                                          Big Kahuna, The
## 1665                                                                                                                                  Idiots, The (Idioterne)
## 1666                                                                                                                                                Time Code
## 1667                                                                                                                                        Two Moon Junction
## 1668                                                                                                                                                Gladiator
## 1669                                                                                                                                                   Hamlet
## 1670                                                                                                                                                Road Trip
## 1671                                                                                                                                        Small Time Crooks
## 1672                                                                                                                                   Mission: Impossible II
## 1673                                                                                                                                            Shanghai Noon
## 1674                                                                                           8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 1675                                                                                                                          On Her Majesty's Secret Service
## 1676                                                                                                                                        Seven Days in May
## 1677                                                                                                                                    Spy Who Loved Me, The
## 1678                                                                                                                                                Moonraker
## 1679                                                                                                                             Man with the Golden Gun, The
## 1680                                                                                                                                          Blazing Saddles
## 1681                                                                                                                                             Blood Simple
## 1682                                                                                                                             9 1/2 Weeks (Nine 1/2 Weeks)
## 1683                                                                                                                                       Gone in 60 Seconds
## 1684                                                                                                                                           One False Move
## 1685                                                                                                                                        Conversation, The
## 1686                                                                                                                                                  Serpico
## 1687                                                                                                                                      Battleship Potemkin
## 1688                                                                                                                                               Titan A.E.
## 1689                                                                                                                                               Jesus' Son
## 1690                                                                                                                                              Chicken Run
## 1691                                                                                                                                       Me, Myself & Irene
## 1692                                                                                                                                       Perfect Storm, The
## 1693                                                                                                                                                      F/X
## 1694                                                                                                                                                 Croupier
## 1695                                                                                                                                              Scary Movie
## 1696                                                                                                                                    But I'm a Cheerleader
## 1697                                                                                                                                           Shower (Xizao)
## 1698                                                                                                                                         Blow-Up (Blowup)
## 1699                                                                                                                                                    X-Men
## 1700                                                                                                                                             Chuck & Buck
## 1701                                                                                                                                        What Lies Beneath
## 1702                                                                                                                                          Criminal Lovers
## 1703                                                                                                                                      Anatomy of a Murder
## 1704                                                                                                                                               Wonderland
## 1705                                                                                                                                              Coyote Ugly
## 1706                                                                                                                                               Hollow Man
## 1707                                                                                                                                            Space Cowboys
## 1708                                                                                                                                        Tao of Steve, The
## 1709                                                                                                                                           Aimée & Jaguar
## 1710                                                                                                                                        Replacements, The
## 1711                                                                                                                                                Cell, The
## 1712                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 1713                                                                                                                                              Bring It On
## 1714                                                                                                                                       Anatomy (Anatomie)
## 1715                                                                                                                                              Nurse Betty
## 1716                                                                                                                                      Way of the Gun, The
## 1717                                                                                                                                            Almost Famous
## 1718                                                                                                                                       Dancer in the Dark
## 1719                                                                                                                                             Best in Show
## 1720                                                                                                                                                Girlfight
## 1721                                                                                                                                               Bamboozled
## 1722                                                                                                                                         Meet the Parents
## 1723                                                                                                                                      Requiem for a Dream
## 1724                                                                                                                                           Contender, The
## 1725                                                                                                                                               Lost Souls
## 1726                                                                                                                                             Billy Elliot
## 1727                                                                                                                                                Bedazzled
## 1728                                                                                                                                           Pay It Forward
## 1729                                                                                                                                         Charlie's Angels
## 1730                                                                                                                                             Little Nicky
## 1731                                                                                                                                               Red Planet
## 1732                                                                                                                                      You Can Count on Me
## 1733                                                                                                                                     Diamonds Are Forever
## 1734                                                                                                                                             6th Day, The
## 1735                                                                                                                                                   Bounce
## 1736                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 1737                                                                                                                                     One Day in September
## 1738                                                                                                                              Rugrats in Paris: The Movie
## 1739                                                                                                                                                   Quills
## 1740                                                                                                                                              Unbreakable
## 1741                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 1742                                                                                                                                            Proof of Life
## 1743                                                                                                                                           Vertical Limit
## 1744                                                                                                                                    Living Daylights, The
## 1745                                                                                                                                  Transformers: The Movie
## 1746                                                                                                                                              Wall Street
## 1747                                                                                                                                      Brewster's Millions
## 1748                                                                                                                                                   Snatch
## 1749                                                                                                                                                 Chocolat
## 1750                                                                                                                                    Dude, Where's My Car?
## 1751                                                                                                                                                  Pollock
## 1752                                                                                                                                          What Women Want
## 1753                                                                                                                                        Finding Forrester
## 1754                                                                                                                                                Gift, The
## 1755                                                                                                                                       Before Night Falls
## 1756                                                                                                                                                Cast Away
## 1757                                                                                                                                          Family Man, The
## 1758                                                                                                                                        Miss Congeniality
## 1759                                                                                                                               O Brother, Where Art Thou?
## 1760                                                                                                                                           State and Main
## 1761                                                                                                                                             Dracula 2000
## 1762                                                                                                                                            Thirteen Days
## 1763                                                                                                                                                  Traffic
## 1764                                                                                                                                    Shadow of the Vampire
## 1765                                                                                                                                           House of Games
## 1766                                                                                                                                                Antitrust
## 1767                                                                                                                                                    Panic
## 1768                                                                                                                                              Pledge, The
## 1769                                                                                                                                  I'm Gonna Git You Sucka
## 1770                                                                                                                                 Amazon Women on the Moon
## 1771                                                                                                                                                   Barfly
## 1772                                                                                                                                        Beverly Hills Cop
## 1773                                                                                                                                               Innerspace
## 1774                                                                                                                   In the Mood For Love (Fa yeung nin wa)
## 1775                                                                                                                                                 Hannibal
## 1776                                                                                                                            Saving Silverman (Evil Woman)
## 1777                                                                                                                                               Monkeybone
## 1778                                                                                                                                             Mexican, The
## 1779                                                                                                                                               15 Minutes
## 1780                                                                                                                                              Get Over It
## 1781                                                                                                                                                Manhunter
## 1782                                                                                                                                       Enemy at the Gates
## 1783                                                                                                                                                Dish, The
## 1784                                                                                                                                                  Memento
## 1785                                                                                                                                                 Spy Kids
## 1786                                                                                                                           Amores Perros (Love's a Bitch)
## 1787                                                                                                                                      Along Came a Spider
## 1788                                                                                                                                                     Blow
## 1789                                                                                                                                    Bridget Jones's Diary
## 1790                                                                                                                                                 Joe Dirt
## 1791                                                                                                                                                 Scarface
## 1792                                                                                                                                       Mummy Returns, The
## 1793                                                                                                                                          Eureka (Yurîka)
## 1794                                                                                                                                         Knight's Tale, A
## 1795                                                                                                                                       King Is Alive, The
## 1796                                                                                                                                                    Shrek
## 1797                                                                                                                                             Moulin Rouge
## 1798                                                                                                                                             Pearl Harbor
## 1799                                                                                                                                            City Slickers
## 1800                                                                                                                                            Eight Men Out
## 1801                                                                                                                                                Evolution
## 1802                                                                                                                                                Swordfish
## 1803                                                                                                                                              Point Break
## 1804                                                                                                                                                  Tootsie
## 1805                                                                                                                                  Lara Croft: Tomb Raider
## 1806                                                                                                                                Fast and the Furious, The
## 1807                                                                                                                             A.I. Artificial Intelligence
## 1808                                                                                                                                          Crazy/Beautiful
## 1809                                                                                                                                               Sexy Beast
## 1810                                                                                            Princess and the Warrior, The (Krieger und die Kaiserin, Der)
## 1811                                                                                                                                Closet, The (Placard, Le)
## 1812                                                                                                             Crimson Rivers, The (Rivières pourpres, Les)
## 1813                                                                                                                                              Cats & Dogs
## 1814                                                                                                                                            Scary Movie 2
## 1815                                                                                                                                           Something Wild
## 1816                                                                                                                        Final Fantasy: The Spirits Within
## 1817                                                                                                                                           Legally Blonde
## 1818                                                                                                                                               Score, The
## 1819                                                                                                                                                    Bully
## 1820                                                                                                                                            Jump Tomorrow
## 1821                                                                                                                                        Coming to America
## 1822                                                                                                                               Vanishing, The (Spoorloos)
## 1823                                                                                                                         Bill & Ted's Excellent Adventure
## 1824                                                                                                                                       Look Who's Talking
## 1825                                                                                                                                             Major League
## 1826                                                                                                                                        Jurassic Park III
## 1827                                                                                                                                    America's Sweethearts
## 1828                                                                                                                                              Ghost World
## 1829                                                                                                                                Hedwig and the Angry Inch
## 1830                                                                                                                                       Planet of the Apes
## 1831                                                                                                                                               Road House
## 1832                                                                                                                                             Santa Sangre
## 1833                                                                                                                                                Skin Deep
## 1834                                                                                                                                          Three Fugitives
## 1835                                                                                                                                                      UHF
## 1836                                                                                                                                               Uncle Buck
## 1837                                                                                                                                    Princess Diaries, The
## 1838                                                                                                                                              Rush Hour 2
## 1839                                                                                                                                           Altered States
## 1840                                                                                                                                           American Pie 2
## 1841                                                                                                                                            Osmosis Jones
## 1842                                                                                                                                              Others, The
## 1843                                                                                                                                            Deep End, The
## 1844                                                                                                                               Captain Corelli's Mandolin
## 1845                                                                                                                                                 Rat Race
## 1846                                                                                                                                                Innocence
## 1847                                                                                                                           Jay and Silent Bob Strike Back
## 1848                                                                                                                                          Happy Accidents
## 1849                                                                                                                                         Jeepers Creepers
## 1850                                                                                                                                             Training Day
## 1851                                                                                                                                                Zoolander
## 1852                                                                                                                                              Serendipity
## 1853                                                                                                                                                  Bandits
## 1854                                                                                                                                         Mulholland Drive
## 1855                                                                                                                                              Waking Life
## 1856                                                                                                                                             Donnie Darko
## 1857                                                                                                                                Man Who Wasn't There, The
## 1858                                                                                                                                           Monsters, Inc.
## 1859                                                                                                                                                     Tape
## 1860                                                                                                                                              Shallow Hal
## 1861                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 1862                                                                                                                                                 Spy Game
## 1863                                                                                                          Devil's Backbone, The (Espinazo del diablo, El)
## 1864                                                                                                                                           In the Bedroom
## 1865                                                                                                                           Breathless (À bout de souffle)
## 1866                                                                                                                                       Behind Enemy Lines
## 1867                                                                                                                                           Ocean's Eleven
## 1868                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 1869                                                                                                                                   Not Another Teen Movie
## 1870                                                                                                                                              Vanilla Sky
## 1871                                                                                                                                    Royal Tenenbaums, The
## 1872                                                                                                                                           Kate & Leopold
## 1873                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 1874                                                                                                                                        Beautiful Mind, A
## 1875                                                                                                                                              Medium Cool
## 1876                                                                                                                              Witness for the Prosecution
## 1877                                                                                                                                          Black Hawk Down
## 1878                                                                                                                                             Gosford Park
## 1879                                                                                                                                           Monster's Ball
## 1880                                                                                                            Brotherhood of the Wolf (Pacte des loups, Le)
## 1881                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 1882                                                                                                                                      Walk to Remember, A
## 1883                                                                                                                                                Maelström
## 1884                                                                                                                                             Storytelling
## 1885                                                                                                                                              Waydowntown
## 1886                                                                                                                                           Super Troopers
## 1887                                                                                                                                                   Sleuth
## 1888                                                                                                                                      Queen of the Damned
## 1889                                                                                                                                          Monsoon Wedding
## 1890                                                                                                                                  All About the Benjamins
## 1891                                                                                                                                        Time Machine, The
## 1892                                                                                                                                                  Ice Age
## 1893                                                                                                                                            Resident Evil
## 1894                                                                                                                                                 Showtime
## 1895                                                                                                                                    Kissing Jessica Stein
## 1896                                                                                                                  And Your Mother Too (Y tu mamá también)
## 1897                                                                                                                                                 Blade II
## 1898                                                                                                                                               Panic Room
## 1899                                                                                                                         Piano Teacher, The (La pianiste)
## 1900                                                                                                                                                Impromptu
## 1901                                                                                                                            National Lampoon's Van Wilder
## 1902                                                                                                                                      Rashomon (Rashômon)
## 1903                                                                                                                                           Changing Lanes
## 1904                                                                                                                                      Sweetest Thing, The
## 1905                                                                                                                                             Human Nature
## 1906                                                                                                                                 My Big Fat Greek Wedding
## 1907                                                                                                                                     Three Men and a Baby
## 1908                                                                                                                                        The Scorpion King
## 1909                                                                                                                               Nine Queens (Nueve reinas)
## 1910                                                                                                                                       Husbands and Wives
## 1911                                                                                                                                              Wild Orchid
## 1912                                                                                                                                               Spider-Man
## 1913                                                                                                                                             New Guy, The
## 1914                                                                                                                                               Unfaithful
## 1915                                                                                                                                              About a Boy
## 1916                                                                                                             Star Wars: Episode II - Attack of the Clones
## 1917                                                                                                                                                 Insomnia
## 1918                                                                                         Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 1919                                                                                                                                    Sum of All Fears, The
## 1920                                                                                                                                           Silent Running
## 1921                                                                                                                                                  Cherish
## 1922                                                                                                                                     Bourne Identity, The
## 1923                                                                                                                                               Scooby-Doo
## 1924                                                                                                                                            Lilo & Stitch
## 1925                                                                                                                                          Minority Report
## 1926                                                                                                                                                Mr. Deeds
## 1927                                                                                                                                                Like Mike
## 1928                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 1929                                                                                                                                            Reign of Fire
## 1930                                                                                                                                        Road to Perdition
## 1931                                                                                                                          Sex and Lucia (Lucía y el sexo)
## 1932                                                                                                                                      Eight Legged Freaks
## 1933                                                                                                                              Austin Powers in Goldmember
## 1934                                                                                                                                              Top Secret!
## 1935                                                                                                                                                    Signs
## 1936                                                                                                                    Spy Kids 2: The Island of Lost Dreams
## 1937                                                                                                                                                      xXx
## 1938                                                                                                                                     24 Hour Party People
## 1939                                                                                                 Songs From the Second Floor (Sånger från andra våningen)
## 1940                                                                                                                                               Blue Crush
## 1941                                                                                                                                           One Hour Photo
## 1942                                                                                                                                               Hot Shots!
## 1943                                                                                                                                                 Stakeout
## 1944                                                                                                                                       Johnny Dangerously
## 1945                                                                                                                                           Igby Goes Down
## 1946                                                                                                                                                Secretary
## 1947                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 1948                                                                                                                                       Sweet Home Alabama
## 1949                                                                                                                                               Red Dragon
## 1950                                                                                                                                             Strange Brew
## 1951                                                                                                                                           Wrong Guy, The
## 1952                                                                                                                                    Bowling for Columbine
## 1953                                                                                                                                         Punch-Drunk Love
## 1954                                                                                                                                                Ring, The
## 1955                                                                                                                                                    Frida
## 1956                                                                                                                                             Roger Dodger
## 1957                                                                                                                                             Femme Fatale
## 1958                                                                                                                  Harry Potter and the Chamber of Secrets
## 1959                                                                                                                                          Die Another Day
## 1960                                                                                                                             Talk to Her (Hable con Ella)
## 1961                                                                                                                                      Last Seduction, The
## 1962                                                                                                                                               Adaptation
## 1963                                                                                                                                              Equilibrium
## 1964                                                                                                                                     Visitor Q (Bizita Q)
## 1965                                                                                                                                            About Schmidt
## 1966                                                                                                                   Lord of the Rings: The Two Towers, The
## 1967                                                                                                                                                25th Hour
## 1968                                                                                                                                        Gangs of New York
## 1969                                                                                                                                         Two Weeks Notice
## 1970                                                                                                                                                     Narc
## 1971                                                                                                                                              Miami Blues
## 1972                                                                                                                                      Catch Me If You Can
## 1973                                                                                                                                                  Chicago
## 1974                                                                                                                                             Pianist, The
## 1975                                                                                                                          Confessions of a Dangerous Mind
## 1976                                                                                                                             City of God (Cidade de Deus)
## 1977                                                                                                                                          CB4 - The Movie
## 1978                                                                                                                                            Summer Lovers
## 1979                                                                                                                                             Recruit, The
## 1980                                                                                                                             How to Lose a Guy in 10 Days
## 1981                                                                                                                                                Daredevil
## 1982                                                                                                                                                    Q & A
## 1983                                                                                                                                               Old School
## 1984                                                                                                                                              Life Stinks
## 1985                                                                                                                                     Bend It Like Beckham
## 1986                                                                                                                       Day for Night (La Nuit Américaine)
## 1987                                                                                                                                              Phone Booth
## 1988                                                                                                Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 1989                                                                                                                                         Anger Management
## 1990                                                                                                                                           Mighty Wind, A
## 1991                                                                                                                  Winged Migration (Peuple migrateur, Le)
## 1992                                                                                                                                    Andromeda Strain, The
## 1993                                                                                                                            Decade Under the Influence, A
## 1994                                                                                                                                               Spellbound
## 1995                                                                                                                                         X2: X-Men United
## 1996                                                                                                                                     Matrix Reloaded, The
## 1997                                                                                                                                           Bruce Almighty
## 1998                                                                                                                                             Finding Nemo
## 1999                                                                                                                                         Italian Job, The
## 2000                                                                                                                                  Capturing the Friedmans
## 2001                                                                                                                                              Whale Rider
## 2002                                                                                               Man with the Movie Camera, The (Chelovek s kino-apparatom)
## 2003                                                                                                                                              Barton Fink
## 2004                                                                                                                                             Belle époque
## 2005                                                                                                                                              Good Burger
## 2006                                                                                                                                            28 Days Later
## 2007                                                                                                                          Charlie's Angels: Full Throttle
## 2008                                                                                                                                                     Hulk
## 2009                                                                                                                       Terminator 3: Rise of the Machines
## 2010                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 2011                                                                                                                                                Northfork
## 2012                                                                                                                                      Dirty Pretty Things
## 2013                                                                                                                        American Wedding (American Pie 3)
## 2014                                                                                                                                            Freaky Friday
## 2015                                                                                                                                        American Splendor
## 2016                                                                                           Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 2017                                                                                                                                 Kind Hearts and Coronets
## 2018                                                                                                                                           Matchstick Men
## 2019                                                                                                                                      Lost in Translation
## 2020                                                                                                                                               Underworld
## 2021                                                                                               Triplets of Belleville, The (Les triplettes de Belleville)
## 2022                                                                                                                 Rules of the Game, The (La règle du jeu)
## 2023                                                                                                                                  All the President's Men
## 2024                                                                                                                                       Three O'Clock High
## 2025                                                                                                                                             Ginger Snaps
## 2026                                                                                                                                           School of Rock
## 2027                                                                                                                                       Station Agent, The
## 2028                                                                                                                                             Mystic River
## 2029                                                                                                                                      Intolerable Cruelty
## 2030                                                                                                                                        Kill Bill: Vol. 1
## 2031                                                                                                                                                 Dopamine
## 2032                                                                                                                                             Runaway Jury
## 2033                                                                                                                                               In the Cut
## 2034                                                                                                                                          Shattered Glass
## 2035                                                                                                                                  Matrix Revolutions, The
## 2036                                                                                                                                                      Elf
## 2037                                                                                                                                            Love Actually
## 2038                                                                                                                                      Father of the Bride
## 2039                                                                                                          Master and Commander: The Far Side of the World
## 2040                                                                                                                                                 21 Grams
## 2041                                                                                                                                                Bad Santa
## 2042                                                                                                                                          Damage (Fatale)
## 2043                                                                                                                                              Funny Games
## 2044                                                                                                                                                  Slacker
## 2045                                                                                                                                                 WarGames
## 2046                                                                                                                                               Gorky Park
## 2047                                                                                                                                                    Kafka
## 2048                                                                                                                                         Kindergarten Cop
## 2049                                                                                                              Last Tango in Paris (Ultimo tango a Parigi)
## 2050                                                                                                                                   Lover, The (Amant, L')
## 2051                                                                                                                                             Quick Change
## 2052                                                                                                                              Show Me Love (Fucking Åmål)
## 2053                                                                                                                                        Hero (Ying xiong)
## 2054                                                                                                                                              Naked Lunch
## 2055                                                                                                                                    Night at the Opera, A
## 2056                                                                                                                                        Last Samurai, The
## 2057                                                                                                                                                 Big Fish
## 2058                                                                                                           Lord of the Rings: The Return of the King, The
## 2059                                                                                      Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The
## 2060                                                                                                                                            Cold Mountain
## 2061                                                                                                                                         Along Came Polly
## 2062                                                                                                                                    Melvin Goes to Dinner
## 2063                                                                                                                                     The Butterfly Effect
## 2064                                                                                                                                            Dreamers, The
## 2065                                                                                                                                           50 First Dates
## 2066                                                                                                                                                 EuroTrip
## 2067                                                                                                                                         Good bye, Lenin!
## 2068                                                                                                                                          Starsky & Hutch
## 2069                                                                                                                                                  Persona
## 2070                                                                                                                                      Girl Next Door, The
## 2071                                                                                                                                                  Spartan
## 2072                                                                                                                    Eternal Sunshine of the Spotless Mind
## 2073                                                                                                                                                 Dogville
## 2074                                                                                                                                                  Hellboy
## 2075                                                                                                                                        Kill Bill: Vol. 2
## 2076                                                                                                                                           13 Going on 30
## 2077                                                                                                                                              Man on Fire
## 2078                                                                                                                                               Mean Girls
## 2079                                                                                                                                                     Troy
## 2080                                                                                                                                            Gimme Shelter
## 2081                                                                                                                                             Henry & June
## 2082                                                                                                                                                Fail-Safe
## 2083                                                                                                                                      You Only Live Twice
## 2084                                                                                                                                    Never Say Never Again
## 2085                                                                                                                                      China Syndrome, The
## 2086                                                                                                                                       Parallax View, The
## 2087                                                                                                      Hidden Fortress, The (Kakushi-toride no san-akunin)
## 2088                                                                                                                                 Weather Underground, The
## 2089                                                                                                                                             Grey Gardens
## 2090                                                                                                                                                  Shrek 2
## 2091                                                                                                                                  Day After Tomorrow, The
## 2092                                                                                                                                                   Saved!
## 2093                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 2094                                                                                                                                        Napoleon Dynamite
## 2095                                                                                                                                            Super Size Me
## 2096                                                                                                                         Dodgeball: A True Underdog Story
## 2097                                                                                                                                            Terminal, The
## 2098                                                                                                                                             White Chicks
## 2099                                                                                                                                Pirates of Silicon Valley
## 2100                                                                                                        Manufacturing Consent: Noam Chomsky and the Media
## 2101                                                                                                                                          Fahrenheit 9/11
## 2102                                                                                                                                                  Roxanne
## 2103                                                                                                                                             Spider-Man 2
## 2104                                                                                                                                            Before Sunset
## 2105                                                                                                                    Anchorman: The Legend of Ron Burgundy
## 2106                                                                                                                                                 I, Robot
## 2107                                                                                                        Maria Full of Grace (Maria, Llena eres de gracia)
## 2108                                                                                                                                    Bourne Supremacy, The
## 2109                                                                                                                                Manchurian Candidate, The
## 2110                                                                                                                                             Garden State
## 2111                                                                                                                                               Collateral
## 2112                                                                                                                      Harold and Kumar Go to White Castle
## 2113                                                                                                                    Sky Captain and the World of Tomorrow
## 2114                                                                                                                                        Shaun of the Dead
## 2115                                                                                                                                        I Heart Huckabees
## 2116                                                                                                                                                   Primer
## 2117                                                                                                                               Team America: World Police
## 2118                                                                                                                Five Obstructions, The (Fem benspænd, De)
## 2119                                                                                                                                                    Alfie
## 2120                                                                                                                                                 Sideways
## 2121                                                                                                                                            The Machinist
## 2122                                                                                                                                                      Saw
## 2123                                                                                                                                                      Ray
## 2124                                                                                                                                         Incredibles, The
## 2125                                                                                                                                        Finding Neverland
## 2126                                                                                                                                        National Treasure
## 2127                                                                                                                         SpongeBob SquarePants Movie, The
## 2128                                                                                                                                           Ocean's Twelve
## 2129                                                                                                          Battle of Algiers, The (La battaglia di Algeri)
## 2130                                                                                                                                                   Batman
## 2131                                                                                                                                 Decalogue, The (Dekalog)
## 2132                                                                                                              Hearts of Darkness: A Filmmakers Apocalypse
## 2133                                                                                                                                            Bad Boy Bubby
## 2134                                                                                                                                                      Gia
## 2135                                                                                                                                          Ali G Indahouse
## 2136                                                                                                                                           Animatrix, The
## 2137                                                                                                                                                  Old Boy
## 2138                                                                                                                                         Interpreter, The
## 2139                                                                                                                                         Corporation, The
## 2140                                                                                                                                        Scanner Darkly, A
## 2141                                                                                                                                      Million Dollar Baby
## 2142                                                                                                                                             Hotel Rwanda
## 2143                                                                                                                      Life Aquatic with Steve Zissou, The
## 2144                                                                                                                                             Aviator, The
## 2145                                                                                                                                         Meet the Fockers
## 2146                                                                                                                                                    Hitch
## 2147                                                                                                                                              Constantine
## 2148                                                                                                                                                 Sin City
## 2149                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 2150                                                                                                                     Enron: The Smartest Guys in the Room
## 2151                                                                                                                                                    Crash
## 2152                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 2153                                                                                                                                         Mr. & Mrs. Smith
## 2154                                                                                                                                            Batman Begins
## 2155                                                                                                                                        War of the Worlds
## 2156                                                                                                         March of the Penguins (Marche de l'empereur, La)
## 2157                                                                                                                                           Fantastic Four
## 2158                                                                                                                                         Wedding Crashers
## 2159                                                                                                                                              Island, The
## 2160                                                                                                                                                  Stealth
## 2161                                                                                                                                                 Serenity
## 2162                                                                                                                                              Grizzly Man
## 2163                                                                                                                                  40-Year-Old Virgin, The
## 2164                                                                                                                                                  Red Eye
## 2165                                                                                                                                   Constant Gardener, The
## 2166                                                                                                                                              Lord of War
## 2167                                                                                                                                                Aeon Flux
## 2168                                                                                                                                             Corpse Bride
## 2169                                                                                                                                                   Capote
## 2170                                                                                                                                      Kiss Kiss Bang Bang
## 2171                                                                                                                                 Squid and the Whale, The
## 2172                                                                                                                               Good Night, and Good Luck.
## 2173                                                                                                                                                  Syriana
## 2174                                                                                                                      Harry Potter and the Goblet of Fire
## 2175                                                                                                                                                   Munich
## 2176                                                                                                                                District 13 (Banlieue 13)
## 2177                                                                                                                                        Failure to Launch
## 2178                                                                                                                                           V for Vendetta
## 2179                                                                                                                                    Thank You for Smoking
## 2180                                                                                                                                               Inside Man
## 2181                                                                                                             Lives of Others, The (Das leben der Anderen)
## 2182                                                                                                                     Youth of the Beast (Yaju no seishun)
## 2183                                                                                                                                      Lucky Number Slevin
## 2184                                                                                                                                                    Brick
## 2185                                                                                                                               This Film Is Not Yet Rated
## 2186                                                                                                                                  Mission: Impossible III
## 2187                                                                                                                                       Da Vinci Code, The
## 2188                                                                                                                                    X-Men: The Last Stand
## 2189                                                                                                                                                     Cars
## 2190                                                                                                                                              Nacho Libre
## 2191                                                                                                                                                    Click
## 2192                                                                                                                                   Devil Wears Prada, The
## 2193                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 2194                                                                                                                                                Clerks II
## 2195                                                                                                                                   Inconvenient Truth, An
## 2196                                                                                                                                         Superman Returns
## 2197                                                                                                                                     Little Miss Sunshine
## 2198                                                                                                                                                    Babel
## 2199                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 2200                                                                                                                                      Night at the Museum
## 2201                                                                                                                                    Stranger than Fiction
## 2202                                                                                                                                         Illusionist, The
## 2203                                                                                                                                               Jesus Camp
## 2204                                                                                                                                            Fountain, The
## 2205                                                                                                             Science of Sleep, The (La science des rêves)
## 2206                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 2207                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 2208                                                                                                                                            Departed, The
## 2209                                                                                                                                          Children of Men
## 2210                                                                                                                                            Prestige, The
## 2211                                                                                                                                            Casino Royale
## 2212                                                                                                                                        Déjà Vu (Deja Vu)
## 2213                                                                                                                                             Holiday, The
## 2214                                                                                                                                          Cocaine Cowboys
## 2215                                                                                                                                              Ratatouille
## 2216                                                                                                                                                   Breach
## 2217                                                                                                                                                 Hot Fuzz
## 2218                                                                                                                                                   Zodiac
## 2219                                                                                                                                                      300
## 2220                                                                                                                                          Blades of Glory
## 2221                                                                                                                                                 Sunshine
## 2222                                                                                                                                                 Fracture
## 2223                                                                                                                                             Spider-Man 3
## 2224                                                                                                                                               Knocked Up
## 2225                                                                                                                                         Ocean's Thirteen
## 2226                                                                                                                Fantastic Four: Rise of the Silver Surfer
## 2227                                                                                                                                                    Sicko
## 2228                                                                                                                                    Live Free or Die Hard
## 2229                                                                                                                                             Transformers
## 2230                                                                                                                Harry Potter and the Order of the Phoenix
## 2231                                                                                                                                      Simpsons Movie, The
## 2232                                                                                                                                    Bourne Ultimatum, The
## 2233                                                                                                                       Tell No One (Ne le dis à personne)
## 2234                                                                                                                                                 Superbad
## 2235                                                                                                                                        King of Kong, The
## 2236                                                                                                                                            Into the Wild
## 2237                                                                                                                                  Darjeeling Limited, The
## 2238                                                                                                                                          Michael Clayton
## 2239                                                                                                                                               Persepolis
## 2240                                                                                                                                        American Gangster
## 2241                                                                                                                                   No Country for Old Men
## 2242                                                                                                                                           Be Kind Rewind
## 2243                                                                                                                                              I Am Legend
## 2244                                                                                                                                                     Juno
## 2245                                                                                                                                                Helvetica
## 2246                                                                                                                       National Treasure: Book of Secrets
## 2247                                                                                                                                      There Will Be Blood
## 2248                                                                                                                                              Cloverfield
## 2249                                                                                                                              Hellboy II: The Golden Army
## 2250                                                                                                                                                In Bruges
## 2251                                                                                                                                                   Jumper
## 2252                                                                                                                                            Bank Job, The
## 2253                                                                                                                                         Dark Knight, The
## 2254                                                                                                                                Forgetting Sarah Marshall
## 2255                                                                                                                                               Religulous
## 2256                                                                                                                                                 Iron Man
## 2257                                                                                                                                                    Taken
## 2258                                                                                                                                                  Reprise
## 2259                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 2260                                                                                                                                            Kung Fu Panda
## 2261                                                                                                                            You Don't Mess with the Zohan
## 2262                                                                                                                                           Happening, The
## 2263                                                                                                                                     Incredible Hulk, The
## 2264                                                                                                                                                   WALL·E
## 2265                                                                                                                                                   Wanted
## 2266                                                                                                                                                  Hancock
## 2267                                                                                                                                                Get Smart
## 2268                                                                                                                                           Up the Yangtze
## 2269                                                                                                                                                 Watchmen
## 2270                                                                                                                                              Man on Wire
## 2271                                                                                                                                        Pineapple Express
## 2272                                                                                                                                           Tropic Thunder
## 2273                                                                                                                                       Burn After Reading
## 2274                                                                                                                                         Onion Movie, The
## 2275                                                                                                                                             Body of Lies
## 2276                                                                                                                               Zack and Miri Make a Porno
## 2277                                                                                                                                     Synecdoche, New York
## 2278                                                                                                                                      Slumdog Millionaire
## 2279                                                                                                                                        Quantum of Solace
## 2280                                                                                                                                              Role Models
## 2281                                                                                                                                                     Bolt
## 2282                                                                                                                                              Frost/Nixon
## 2283                                                                                                                                            Wrestler, The
## 2284                                                                                                                     Curious Case of Benjamin Button, The
## 2285                                                                                                                          Timecrimes (Cronocrímenes, Los)
## 2286                                                                                                                                     Paul Blart: Mall Cop
## 2287                                                                                                                                                 Coraline
## 2288                                                                                                                                                Chocolate
## 2289                                                                                                                              He's Just Not That Into You
## 2290                                                                                                                                             Mystery Team
## 2291                                                                                                                                               Away We Go
## 2292                                                                                                                           Dr. Horrible's Sing-Along Blog
## 2293                                                                                                                                          I Love You, Man
## 2294                                                                                                                                                Duplicity
## 2295                                                                                                                                Anvil! The Story of Anvil
## 2296                                                                                                                                            Adventureland
## 2297                                                                                                                                              In the Loop
## 2298                                                                                                                                     Inglourious Basterds
## 2299                                                                                                                                            State of Play
## 2300                                                                                                                                                     Moon
## 2301                                                                                                                                 X-Men Origins: Wolverine
## 2302                                                                                                                               Girlfriend Experience, The
## 2303                                                                                                                                                Star Trek
## 2304                                                                                                                                     Terminator Salvation
## 2305                                                                                                           Night at the Museum: Battle of the Smithsonian
## 2306                                                                                                                                                       Up
## 2307                                                                                                                                            Hangover, The
## 2308                                                                                                                              Taking of Pelham 1 2 3, The
## 2309                                                                                                                                            Proposal, The
## 2310                                                                                                                                                 Year One
## 2311                                                                                                                                         Hurt Locker, The
## 2312                                                                                                                  Raiders of the Lost Ark: The Adaptation
## 2313                                                                                                                      Transformers: Revenge of the Fallen
## 2314                                                                                                                                               District 9
## 2315                                                                                                                                            Julie & Julia
## 2316                                                                                                                              G.I. Joe: The Rise of Cobra
## 2317                                                                                                                                                  G-Force
## 2318                                                                                                                                        It Might Get Loud
## 2319                                                                                                                                          Informant!, The
## 2320                                                                                                                        Cloudy with a Chance of Meatballs
## 2321                                                                                                                                               Food, Inc.
## 2322                                                                                                                                                Cove, The
## 2323                                                                                                                                           Serious Man, A
## 2324                                                                                                                                               Zombieland
## 2325                                                                                                                                      Law Abiding Citizen
## 2326                                                                                                                                            Up in the Air
## 2327                                                                                                                                        Fantastic Mr. Fox
## 2328                                                                                                                                                     2012
## 2329                                                                                                                                                   Avatar
## 2330                                                                                                                                          Sherlock Holmes
## 2331                                                                                                                                 Prophet, A (Un Prophète)
## 2332                                                                                                                                           Shutter Island
## 2333                                                                                                                                            Shades of Ray
## 2334                                                                                                                                               Green Zone
## 2335                                                                                                                                     From Paris with Love
## 2336                                                                                                                                     Hot Tub Time Machine
## 2337                                                                                                                                 How to Train Your Dragon
## 2338                                                                                                                                                 Kick-Ass
## 2339                                                                                                                                               Date Night
## 2340                                                                                                                            Steam of Life (Miesten vuoro)
## 2341                                                                                                                                              Losers, The
## 2342                                                                                                                               Exit Through the Gift Shop
## 2343                                                                                                                                               Iron Man 2
## 2344                                                                                                                                     Get Him to the Greek
## 2345                                                                                                                                              A-Team, The
## 2346                                                                                                                                              Toy Story 3
## 2347                                                                                                                                            Winter's Bone
## 2348                                                                                                                                                Predators
## 2349                                                                                                                                                Inception
## 2350                                                                                                                                           Knight and Day
## 2351                                                                                                                                  Kids Are All Right, The
## 2352                                                                                                                                                     Salt
## 2353                                                                                                                                      Dinner for Schmucks
## 2354                                                                                                                                         Expendables, The
## 2355                                                                                                                              Scott Pilgrim vs. the World
## 2356                                                                                                                                            American, The
## 2357                                                                                                                                                  GasLand
## 2358                                                                                                                                      Social Network, The
## 2359                                                                                                                                                Town, The
## 2360                                                                                                                                                  Catfish
## 2361                                                                                                                                               Inside Job
## 2362                                                                                                                                                 Restrepo
## 2363                                                                                                                                   Waiting for 'Superman'
## 2364                                                                                                                                                      Red
## 2365                                                                                                                                               Black Swan
## 2366                                                                                                                                              Unstoppable
## 2367                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 2368                                                                                                                                       King's Speech, The
## 2369                                                                                                                                                  Tangled
## 2370                                                                                                                                             Fighter, The
## 2371                                                                                                                                             Tron: Legacy
## 2372                                                                                                                                       Gulliver's Travels
## 2373                                                                                                                                         Made in Dagenham
## 2374                                                                                                                                               Waste Land
## 2375                                                                                                                                        Green Hornet, The
## 2376                                                                                                                                         Cowboys & Aliens
## 2377                                                                                                                                                Marwencol
## 2378                                                                                                                                                Limitless
## 2379                                                                                                                                      No Strings Attached
## 2380                                                                                                                                      Lincoln Lawyer, The
## 2381                                                                                                                                   Adjustment Bureau, The
## 2382                                                                                                                                              Source Code
## 2383                                                                                                                                                    Senna
## 2384                                                                                                                                                    Hanna
## 2385                                                                                                                                                     Thor
## 2386                                                                                                                  Fast Five (Fast and the Furious 5, The)
## 2387                                                                                                                                                Incendies
## 2388                                                                                                                                              Bridesmaids
## 2389                                                                                                                                        Midnight in Paris
## 2390                                                                                                                                        Tree of Life, The
## 2391                                                                                                                                    Hangover Part II, The
## 2392                                                                                                                                          Kung Fu Panda 2
## 2393                                                                                                                                       X-Men: First Class
## 2394                                                                                                                                                Beginners
## 2395                                                                                                                                                  Super 8
## 2396                                                                                                                                            Green Lantern
## 2397                                                                                                                                              Bad Teacher
## 2398                                                                                                                           Transformers: Dark of the Moon
## 2399                                                                                                                                          Horrible Bosses
## 2400                                                                                                                      Page One: Inside the New York Times
## 2401                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 2402                                                                                                                                                    Drive
## 2403                                                                                                                       Captain America: The First Avenger
## 2404                                                                                                                                     Crazy, Stupid, Love.
## 2405                                                                                                                                              Smurfs, The
## 2406                                                                                                                           Rise of the Planet of the Apes
## 2407                                                                                                                                         Conspirator, The
## 2408                                                                                                                                 Bill Cunningham New York
## 2409                                                                                                                                        Interrupters, The
## 2410                                                                                                                                                Contagion
## 2411                                                                                                                                                Moneyball
## 2412                                                                                                                                            Avengers, The
## 2413                                                                                                                                             Killer Elite
## 2414                                                                                                                                               Real Steel
## 2415                                                                                                                                                     Buck
## 2416                                                                                                                                                 Margaret
## 2417                                                                                                                                              Margin Call
## 2418                                                                                                                                                    Shame
## 2419                                                                                                                                Headhunters (Hodejegerne)
## 2420                                                                                                                                         Batman: Year One
## 2421                                                                                                                                            Puss in Boots
## 2422                                                                                                                                Adventures of Tintin, The
## 2423                                                                                                                                                     Hugo
## 2424                                                                                                                                                 Trespass
## 2425                                                                                                                                         The Hunger Games
## 2426                                                                                                                                             Clone (Womb)
## 2427                                                                                                                                   Dark Knight Rises, The
## 2428                                                                                                                                       Bourne Legacy, The
## 2429                                                                                                                       Sherlock Holmes: A Game of Shadows
## 2430                                                                                                                     Mission: Impossible - Ghost Protocol
## 2431                                                                                                                                          We Bought a Zoo
## 2432                                                                                                                         Girl with the Dragon Tattoo, The
## 2433                                                                                                                                               Contraband
## 2434                                                                                                                        Being Elmo: A Puppeteer's Journey
## 2435                                                                                                                                                Chronicle
## 2436                                                                                                                                               Safe House
## 2437                                                                                                                                           This Means War
## 2438                                                                                                                                              John Carter
## 2439                                                                                                                                           21 Jump Street
## 2440                                                                                                                                     Jiro Dreams of Sushi
## 2441                                                                                                                        American Reunion (American Pie 4)
## 2442                                                                                                                                  Cabin in the Woods, The
## 2443                                                                                                                                            Mirror Mirror
## 2444                                                                                                                                               Battleship
## 2445                                                                                                                                             Dark Shadows
## 2446                                                                                                                                            Dictator, The
## 2447                                                                                                                    Men in Black III (M.III.B.) (M.I.B.³)
## 2448                                                                                                                              Snow White and the Huntsman
## 2449                                                                                                                            Pirates! Band of Misfits, The
## 2450                                                                                                                                               Prometheus
## 2451                                                                                                                                         Moonrise Kingdom
## 2452                                                                                                                       Madagascar 3: Europe's Most Wanted
## 2453                                                                                                                                                    Brave
## 2454                                                                                                                     What to Expect When You're Expecting
## 2455                                                                                                                                                   Presto
## 2456                                                                                                                                Giant Mechanical Man, The
## 2457                                                                                                                                  Amazing Spider-Man, The
## 2458                                                                                                                              Beasts of the Southern Wild
## 2459                                                                                                                                             Total Recall
## 2460                                                                                                                                                  Skyfall
## 2461                                                                                                                                 Queen of Versailles, The
## 2462                                                                                                                                  Searching for Sugar Man
## 2463                                                                                                                                                   Looper
## 2464                                                                                                                                   Ai Weiwei: Never Sorry
## 2465                                                                                                                                                    Dredd
## 2466                                                                                                                                                     Argo
## 2467                                                                                                                                     House I Live In, The
## 2468                                                                                                                                            Imposter, The
## 2469                                                                                                                                           Wreck-It Ralph
## 2470                                                                                                                                                   Flight
## 2471                                                                                                                                               Life of Pi
## 2472                                                                                                                                    Indie Game: The Movie
## 2473                                                                                                                                                  Lincoln
## 2474                                                                                                                       Hobbit: An Unexpected Journey, The
## 2475                                                                                                                                         Zero Dark Thirty
## 2476                                                                                                                                              Warm Bodies
## 2477                                                                                                                                             Jack Reacher
## 2478                                                                                                                                         Django Unchained
## 2479                                                                                                                                          Misérables, Les
## 2480                                                                                                                                   Central Park Five, The
## 2481                                                                                                                                      Beware of Mr. Baker
## 2482                                                                                                                                   Beauty Is Embarrassing
## 2483                                                                                                                                                 Movie 43
## 2484                                                                                                                                            Call Me Kuchu
## 2485                                                                                                                                             Side Effects
## 2486                                                                                                                                    World Before Her, The
## 2487                                                                                                                                      Act of Killing, The
## 2488                                                                                                                                                 Room 237
## 2489                                                                                                                                          Before Midnight
## 2490                                                                                                               TPB AFK: The Pirate Bay Away from Keyboard
## 2491                                                                                                                                    G.I. Joe: Retaliation
## 2492                                                                                                                                Oz the Great and Powerful
## 2493                                                                                                                                       Olympus Has Fallen
## 2494                                                                                                                                                 Oblivion
## 2495                                                                                                                                                       42
## 2496                                                                                                                                          This Is the End
## 2497                                                                                                                                               Iron Man 3
## 2498                                                                                                                                  Star Trek Into Darkness
## 2499                                                                                                                                               Frances Ha
## 2500                                                                                                                                              After Earth
## 2501                                                                                                                                           Now You See Me
## 2502                                                                                                                                             Man of Steel
## 2503                                                                                                                                              Pacific Rim
## 2504                                                                                                                                              World War Z
## 2505                                                                                                                                                  Elysium
## 2506                                                                                                                                                Heat, The
## 2507                                                                                                                                                    Red 2
## 2508                                                                                                                                        We're the Millers
## 2509                                                                                                                                               Kick-Ass 2
## 2510                                                                                                                                                Blackfish
## 2511                                                                                                                                                     Koch
## 2512                                                                                                                                                  Gravity
## 2513                                                                                                                                                Prisoners
## 2514                                                                                                                                         Captain Phillips
## 2515                                                                                                                                     Thor: The Dark World
## 2516                                                                                                                                  Marc Maron: Thinky Pain
## 2517                                                                                                                                            Muscle Shoals
## 2518                                                                                                                     Hobbit: The Desolation of Smaug, The
## 2519                                                                                                                                 Wolf of Wall Street, The
## 2520                                                                                                                                          American Hustle
## 2521                                                                                                                                                      Her
## 2522                                                                                                                        Anchorman 2: The Legend Continues
## 2523                                                                                                                                              Snowpiercer
## 2524                                                                                                                                        I Know That Voice
## 2525                                                                                                                                Jack Ryan: Shadow Recruit
## 2526                                                                                                                                                Divergent
## 2527                                                                                                                                          I, Frankenstein
## 2528                                                                                                                                                    Enemy
## 2529                                                                                                                                           The Lego Movie
## 2530                                                                                                                                                  RoboCop
## 2531                                                                                                                                        Zero Theorem, The
## 2532                                                                                                                                Grand Budapest Hotel, The
## 2533                                                                                                                                             Interstellar
## 2534                                                                                                                                   300: Rise of an Empire
## 2535                                                                                                                                           Particle Fever
## 2536                                                                                                                                           Under the Skin
## 2537                                                                                                                      Captain America: The Winter Soldier
## 2538                                                                                                                                                     Noah
## 2539                                                                                                                                 The Amazing Spider-Man 2
## 2540                                                                                                                                            Transcendence
## 2541                                                                                                                                         Other Woman, The
## 2542                                                                              Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A
## 2543                                                                                                                                                     Lucy
## 2544                                                                                                                               X-Men: Days of Future Past
## 2545                                                                                                                                                 Godzilla
## 2546                                                                                                                                                     Chef
## 2547                                                                                                                                              Begin Again
## 2548                                                                                                                                         Edge of Tomorrow
## 2549                                                                                                                       Mission: Impossible - Rogue Nation
## 2550                                                                                                                                           22 Jump Street
## 2551                                                                                                                                           Equalizer, The
## 2552                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 2553                                                                                                                          Transformers: Age of Extinction
## 2554                                                                                                                                                 Whiplash
## 2555                                                                                                                                                Gone Girl
## 2556                                                                                                                           Dawn of the Planet of the Apes
## 2557                                                                                                                                                 Sex Tape
## 2558                                                                                                                                  Guardians of the Galaxy
## 2559                                                                                                                                        A Most Wanted Man
## 2560                                                                                                                                        Jupiter Ascending
## 2561                                                                                                                             Teenage Mutant Ninja Turtles
## 2562                                                                                                                                               Giver, The
## 2563                                                                                                                                                Coherence
## 2564                                                                                                                                         Maze Runner, The
## 2565                                                                                                                                     Look of Silence, The
## 2566                                                                                                                                                John Wick
## 2567                                                                                                                                             Rewrite, The
## 2568                                                                                                                                             Nightcrawler
## 2569                                                                                                                                               Big Hero 6
## 2570                                                                                                                                               Ex Machina
## 2571                                                                                                                                               Foxcatcher
## 2572                                                                                                                                       The Imitation Game
## 2573                                                                                                                                            Inherent Vice
## 2574                                                                                                                    The Hunger Games: Mockingjay - Part 1
## 2575                                                                                                                                               Wild Tales
## 2576                                                                                                                                 The Theory of Everything
## 2577                                                                                                                                           Jurassic World
## 2578                                                                                                                                              Citizenfour
## 2579                                                                                                                The Hobbit: The Battle of the Five Armies
## 2580                                                                                                                                            The Interview
## 2581                                                                                                                             Kingsman: The Secret Service
## 2582                                                                                                                                                  Chappie
## 2583                                                                                                                                       Terminator Genisys
## 2584                                                                                                                                                 Red Army
## 2585                                                                                                                                               It Follows
## 2586                                                                                                                                       Mad Max: Fury Road
## 2587                                                                                                               Star Wars: Episode VII - The Force Awakens
## 2588                                                                                                                                                 Warcraft
## 2589                                                                                                                                  Avengers: Age of Ultron
## 2590                                                                                                                                                  Ant-Man
## 2591                                                                                                                                           Fantastic Four
## 2592                                                                                                                                                 Deadpool
## 2593                                                                                                                               Captain America: Civil War
## 2594                                                                                                                                        X-Men: Apocalypse
## 2595                                                                                                                                               True Story
## 2596                                                                                                                                        The Hateful Eight
## 2597                                                                                                                                            Run All Night
## 2598                                                                                                                                        While We're Young
## 2599                                                                                                                                                Insurgent
## 2600                                                                                                                                         Midnight Special
## 2601                                                                                                                                                Furious 7
## 2602                                                                                                                                                 Get Hard
## 2603                                                                                                                                             Tomorrowland
## 2604                                                                                                                                       The Age of Adaline
## 2605                                                                                                                                              San Andreas
## 2606                                                                                                                               Far from the Madding Crowd
## 2607                                                                                                                                              The Martian
## 2608                                                                                                                                                      Spy
## 2609                                                                                                                                               Trainwreck
## 2610                                                                                                                                               Inside Out
## 2611                                                                                                                    The Hunger Games: Mockingjay - Part 2
## 2612                                                                                                                                  The Secret Life of Pets
## 2613                                                                                                                             Independence Day: Resurgence
## 2614                                                                                                                                              Star Trek 3
## 2615                                                                                                                                                  Spectre
## 2616                                                                                                                                               Steve Jobs
## 2617                                                                                                                       Batman v Superman: Dawn of Justice
## 2618                                                                                                                                                      Amy
## 2619                                                                                                                                          The Jungle Book
## 2620                                                                                                                                  The Man from U.N.C.L.E.
## 2621                                                                                                                                             The Revenant
## 2622                                                                                                                                                  Sicario
## 2623                                                                                                                                          Best of Enemies
## 2624                                                                                                                                                Anomalisa
## 2625                                                                                                                                               The Intern
## 2626                                                                                                                                                     Room
## 2627                                                                                                                                                The Witch
## 2628                                                                                                                                           American Ultra
## 2629                                                                                                                                                      Joy
## 2630                                                                                                                                                Spotlight
## 2631                                                                                                                                           Pawn Sacrifice
## 2632                                                                                                                                          Bridge of Spies
## 2633                                                                                                                                               Concussion
## 2634                                                                                                                                       Peanuts Movie, The
## 2635                                                                                                                                                    Creed
## 2636                                                                                                                                           Big Short, The
## 2637                                                                                                                                             Daddy's Home
## 2638                                                                                                                                                  Sisters
## 2639                                                                                                                                          Kung Fu Panda 3
## 2640                                                                                                                                              Miles Ahead
## 2641                                                                                                                                      10 Cloverfield Lane
## 2642                                                                                                                                        London Has Fallen
## 2643                                                                                                                                                 Zootopia
## 2644                                                                                                                                                    Keanu
## 2645                                                                                                                                The Huntsman Winter's War
## 2646                                                                                                                             Neighbors 2: Sorority Rising
## 2647                                                                                                                                            Money Monster
## 2648                                                                                                                                             Finding Dory
## 2649                                                                                                                                             Mother's Day
## 2650                                                                                                                                            The Nice Guys
## 2651                                                                                                                                             The Shallows
## 2652                                                                                                                                         Now You See Me 2
## 2653                                                                                                         Teenage Mutant Ninja Turtles: Out of the Shadows
## 2654                                                                                                                       Popstar: Never Stop Never Stopping
## 2655                                                                                                                                          The Conjuring 2
## 2656                                                                                                                                  Approaching the Unknown
## 2657                                                                                                                                             Ghostbusters
## 2658                                                                                                                                     Central Intelligence
## 2659                                                                                                                                     The Legend of Tarzan
## 2660                                                                                                                                 The Purge: Election Year
## 2661                                                                                                                           Mike & Dave Need Wedding Dates
## 2662                                                                                                                                                Sunspring
## 2663                                                                                                                                      Usual Suspects, The
## 2664                                                                                                                                Shawshank Redemption, The
## 2665                                                                                                                              What's Eating Gilbert Grape
## 2666                                                                                                                                         Schindler's List
## 2667                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 2668                                                                                                                                                  Gattaca
## 2669                                                                                                                                        Good Will Hunting
## 2670                                                                                                                                                 Rain Man
## 2671                                                                                                                              Back to the Future Part III
## 2672                                                                                                                                                    Ronin
## 2673                                                                                                                                             Analyze This
## 2674                                                                                                                                             American Pie
## 2675                                                                                                                                                      Big
## 2676                                                                                                                                          American Beauty
## 2677                                                                                                                                   Mission: Impossible II
## 2678                                                                                                                                                 Chocolat
## 2679                                                                                                                                         Someone Like You
## 2680                                                                                                                                    Bridget Jones's Diary
## 2681                                                                                                                                           American Pie 2
## 2682                                                                                                                                          Happy Accidents
## 2683                                                                                                                                              Dinner Rush
## 2684                                                                                                                                              Serendipity
## 2685                                                                                                                                        Beautiful Mind, A
## 2686                                                                                                                                               Spider-Man
## 2687                                                                                                                                          Minority Report
## 2688                                                                                                                             City of God (Cidade de Deus)
## 2689                                                                                                                                      Lost in Translation
## 2690                                                                                                                                        Kill Bill: Vol. 1
## 2691                                                                                                                                      Girl Next Door, The
## 2692                                                                                                                                                     Heat
## 2693                                                                                                                                        Leaving Las Vegas
## 2694                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 2695                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 2696                                                                                                                                         Dead Man Walking
## 2697                                                                                                                                     Seven (a.k.a. Se7en)
## 2698                                                                                                                                      Usual Suspects, The
## 2699                                                                                                                                              Taxi Driver
## 2700                                                                                                                                                  Hackers
## 2701                                                                                                                                          Johnny Mnemonic
## 2702                                                                                                                                                 Net, The
## 2703                                                                                                                                                    Smoke
## 2704                                                                                                                                             Strange Days
## 2705                                                                                                                                                   Clerks
## 2706                                                                                                                                                  Ed Wood
## 2707                                                                                                                                       Heavenly Creatures
## 2708                                                                                                                       Star Wars: Episode IV - A New Hope
## 2709                                                                                                                                     Natural Born Killers
## 2710                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 2711                                                                                                                                             Pulp Fiction
## 2712                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 2713                                                                                                                                Shawshank Redemption, The
## 2714                                                                                                                                    Bullets Over Broadway
## 2715                                                                                                                                             Forrest Gump
## 2716                                                                                                                                                    Speed
## 2717                                                                                                                                            Carlito's Way
## 2718                                                                                                                                            Jurassic Park
## 2719                                                                                                                                              Killing Zoe
## 2720                                                                                                                                 Manhattan Murder Mystery
## 2721                                                                                                                                         Schindler's List
## 2722                                                                                                                                             Blade Runner
## 2723                                                                                                                                             True Romance
## 2724                                                                                                                                       Dances with Wolves
## 2725                                                                                                                                Silence of the Lambs, The
## 2726                                                                                                                                                    Fargo
## 2727                                                                                           Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 2728                                                                                                                                                 Dead Man
## 2729                                                                                                                                                  Twister
## 2730                                                                                                                                            Trainspotting
## 2731                                                                                                                                           Godfather, The
## 2732                                                                                                                                                    Bound
## 2733                                                                                                                                                  Vertigo
## 2734                                                                                                                                              Rear Window
## 2735                                                                                                                                       North by Northwest
## 2736                                                                                                                                         Some Like It Hot
## 2737                                                                                                                                               Casablanca
## 2738                                                                                                                                      Maltese Falcon, The
## 2739                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 2740                                                                                                                                             Citizen Kane
## 2741                                                                                                                                    2001: A Space Odyssey
## 2742                                                                                                                                                  Rebecca
## 2743                                                                                                                                                Notorious
## 2744                                                                                                                                               Spellbound
## 2745                                                                                                                                                    Laura
## 2746                                                                                                                                            39 Steps, The
## 2747                                                                                                                                                 Die Hard
## 2748                                                                                                                                                  Sleeper
## 2749                                                                                                                                     Fish Called Wanda, A
## 2750                                                                                                                                           Reservoir Dogs
## 2751                                                                                                                                           Basic Instinct
## 2752                                                                                                                                      Glengarry Glen Ross
## 2753                                                                                                                                Streetcar Named Desire, A
## 2754                                                                                                                          Monty Python and the Holy Grail
## 2755                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 2756                                                                                                                                             Delicatessen
## 2757                                                                                                                          One Flew Over the Cuckoo's Nest
## 2758                                                                                                                                                   Brazil
## 2759                                                                                                                                      Clockwork Orange, A
## 2760                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 2761                                                                                                                                           Third Man, The
## 2762                                                                                                                                               Goodfellas
## 2763                                                                                                                       Killer, The (Die xue shuang xiong)
## 2764                                                                                                                                      Blues Brothers, The
## 2765                                                                                                                                  Godfather: Part II, The
## 2766                                                                                                                                               Annie Hall
## 2767                                                                                                                                                  Stalker
## 2768                                                                                                                                         Harold and Maude
## 2769                                                                                                                 Seventh Seal, The (Sjunde inseglet, Det)
## 2770                                                                                                                                          Terminator, The
## 2771                                                                                                                                   Dead Alive (Braindead)
## 2772                                                                                                                                                Manhattan
## 2773                                                                                                                                        Miller's Crossing
## 2774                                                                                                                                       Dead Poets Society
## 2775                                                                                                                                            Touch of Evil
## 2776                                                                                                                                Femme Nikita, La (Nikita)
## 2777                                                                                                                                               8 1/2 (8½)
## 2778                                                                                                                                                Chinatown
## 2779                                                                                                                                                Bad Taste
## 2780                                                                                                                                             Shining, The
## 2781                                                                                                                                         Deer Hunter, The
## 2782                                                                                                                                            Groundhog Day
## 2783                                                                                                                                Manchurian Candidate, The
## 2784                                                                                                                                       Back to the Future
## 2785                                                                                                                                     Pink Floyd: The Wall
## 2786                                                                                                                                               Birds, The
## 2787                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 2788                                                                                                                                                 Sneakers
## 2789                                                                                                                                                   Hamlet
## 2790                                                                                                                                             Lost Highway
## 2791                                                                                                                                            Donnie Brasco
## 2792                                                                                                              Austin Powers: International Man of Mystery
## 2793                                                                                                                                   Tetsuo II: Body Hammer
## 2794                                                                                                                                Men in Black (a.k.a. MIB)
## 2795                                                                                                                                        Conspiracy Theory
## 2796                                                                                                                                        L.A. Confidential
## 2797                                                                                                                                                Game, The
## 2798                                                                                                                                                   U Turn
## 2799                                                                                                                                     The Devil's Advocate
## 2800                                                                                                                                                  Gattaca
## 2801                                                                                                                                            Boogie Nights
## 2802                                                                                                                                                  Witness
## 2803                                                                                                                                        Good Will Hunting
## 2804                                                                                                                                                  Titanic
## 2805                                                                                                                                             Jackie Brown
## 2806                                                                                                                                        Big Lebowski, The
## 2807                                                                                                                                                Dark City
## 2808                                                                                                                                      Fireworks (Hana-bi)
## 2809                                                                                                                                    Spanish Prisoner, The
## 2810                                                                                                                           Fear and Loathing in Las Vegas
## 2811                                                                                                                                                       Pi
## 2812                                                                                                                             There's Something About Mary
## 2813                                                                                                                                            Exorcist, The
## 2814                                                                                                                                               Metropolis
## 2815                                                                                                                               Back to the Future Part II
## 2816                                                                                                                              Back to the Future Part III
## 2817                                                                                                                                                     Dune
## 2818                                                                                                                                 Godfather: Part III, The
## 2819                                                                                                                                      Saving Private Ryan
## 2820                                                                                                                                          Out of the Past
## 2821                                                                                                                                           Doctor Zhivago
## 2822                                                                                                                                              Blue Velvet
## 2823                                                                                                                                Dead Men Don't Wear Plaid
## 2824                                                                                                                              1984 (Nineteen Eighty-Four)
## 2825                                                                                                                                           Dead Zone, The
## 2826                                                                                                                       Henry: Portrait of a Serial Killer
## 2827                                                                                                                                          Rosemary's Baby
## 2828                                                                                                                                                    Blade
## 2829                                                                                                                                                 Saboteur
## 2830                                                                                                                                                     Cube
## 2831                                                                                                                                                    Ronin
## 2832                                                                                                                      Life Is Beautiful (La Vita è bella)
## 2833                                                                                                                                       American History X
## 2834                                                                                                                                       Enemy of the State
## 2835                                                                                                                                      Shakespeare in Love
## 2836                                                                                                                                                 Fly, The
## 2837                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 2838                                                                                                                                                  Payback
## 2839                                                                                                                                             Office Space
## 2840                                                                                                                                             Analyze This
## 2841                                                                                                                                             Dead Ringers
## 2842                                                                                                                                              Matrix, The
## 2843                                                                                                                                                Following
## 2844                                                                                                                           Open Your Eyes (Abre los ojos)
## 2845                                                                                                                                                 eXistenZ
## 2846                                                                                                                                               Idle Hands
## 2847                                                                                                                           Rocky Horror Picture Show, The
## 2848                                                                                                                                    Thirteenth Floor, The
## 2849                                                                                                                                  Buena Vista Social Club
## 2850                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 2851                                                                                                                                Run Lola Run (Lola rennt)
## 2852                                                                                                                                           Arlington Road
## 2853                                                                                                                                 Blair Witch Project, The
## 2854                                                                                                                                           Eyes Wide Shut
## 2855                                                                                                                                             Killing, The
## 2856                                                                                                                                         Sixth Sense, The
## 2857                                                                                                                                                Airplane!
## 2858                                                                                                                                          American Beauty
## 2859                                                                                                                                           New Rose Hotel
## 2860                                                                                                                                             Total Recall
## 2861                                                                                                                                 Ferris Bueller's Day Off
## 2862                                                                                                                                      Sydney (Hard Eight)
## 2863                                                                                                                                               Fight Club
## 2864                                                                                                                                  Crimes and Misdemeanors
## 2865                                                                                                                                     Being John Malkovich
## 2866                                                                                                                                              Re-Animator
## 2867                                                                                                                      Grand Illusion (La grande illusion)
## 2868                                                                                                                                          Green Mile, The
## 2869                                                                                                                                                 Magnolia
## 2870                                                                                                                                            Wayne's World
## 2871                                                                                                                            Twin Peaks: Fire Walk with Me
## 2872                                                                                                                                             Mariachi, El
## 2873                                                                                                                        Ghost Dog: The Way of the Samurai
## 2874                                                                                                                                                      JFK
## 2875                                                                                                                                          Erin Brockovich
## 2876                                                                                                                                         Double Indemnity
## 2877                                                                                                                                           Jacob's Ladder
## 2878                                                                                                                                       Solaris (Solyaris)
## 2879                                                                                                                                                  Network
## 2880                                                                                                                                          American Psycho
## 2881                                                                                                                                                Gladiator
## 2882                                                                                                                                                   Hamlet
## 2883                                                                                                                                               Eraserhead
## 2884                                                                                                                                        Conversation, The
## 2885                                                                                                                                                  Serpico
## 2886                                                                                                                                      Battleship Potemkin
## 2887                                                                                                                                              Scary Movie
## 2888                                                                                                                                         Blow-Up (Blowup)
## 2889                                                                                                                                                Cell, The
## 2890                                                                                                                                      Requiem for a Dream
## 2891                                                                                                                                         Charlie's Angels
## 2892                                                                                                                                              Unbreakable
## 2893                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 2894                                                                                                                               O Brother, Where Art Thou?
## 2895                                                                                                                                                  Traffic
## 2896                                                                                                                                           House of Games
## 2897                                                                                                                                                Manhunter
## 2898                                                                                                                                                  Memento
## 2899                                                                                                                                                     Blow
## 2900                                                                                                                                    Bridget Jones's Diary
## 2901                                                                                                                                                 Scarface
## 2902                                                                                                                                                    Shrek
## 2903                                                                                                                                                    Faust
## 2904                                                                                                                                                 Suspiria
## 2905                                                                                                                               Vanishing, The (Spoorloos)
## 2906                                                                                                                             Tetsuo, the Ironman (Tetsuo)
## 2907                                                                                                                                                     Cure
## 2908                                                                                                                                                Session 9
## 2909                                                                                                                                         Mulholland Drive
## 2910                                                                                                                                             Donnie Darko
## 2911                                                                                                                                           Monsters, Inc.
## 2912                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 2913                                                                                                                           Breathless (À bout de souffle)
## 2914                                                                                                                                           Ocean's Eleven
## 2915                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 2916                                                                                                                                              Vanilla Sky
## 2917                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 2918                                                                                                                                        Beautiful Mind, A
## 2919                                                                                                                                           Monster's Ball
## 2920                                                                                                                                            Big Heat, The
## 2921                                                                                                                                               Brainstorm
## 2922                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 2923                                                                                                                                                  Seconds
## 2924                                                                                                                                               Metropolis
## 2925                                                                                                                                           Don't Look Now
## 2926                                                                                                                                                  Scratch
## 2927                                                                                                                                                 Blade II
## 2928                                                                                                                                               Panic Room
## 2929                                                                                                                                 My Big Fat Greek Wedding
## 2930                                                                                                                                                   Enigma
## 2931                                                                                                                                               Spider-Man
## 2932                                                                                                                                                 Insomnia
## 2933                                                                                                                                     Bourne Identity, The
## 2934                                                                                                                                          Minority Report
## 2935                                                                                                                                        Road to Perdition
## 2936                                                                                                                                                    Signs
## 2937                                                                                                                                         Transporter, The
## 2938                                                                                                                         Das Experiment (Experiment, The)
## 2939                                                                                                                                               Red Dragon
## 2940                                                                                                                                    Bowling for Columbine
## 2941                                                                                                                                                Ring, The
## 2942                                                                                                                            Russian Ark (Russkiy Kovcheg)
## 2943                                                                                                                     Professional, The (Le professionnel)
## 2944                                                                                                                                             Femme Fatale
## 2945                                                                                                                                                 Scanners
## 2946                                                                                                                                                    Thief
## 2947                                                                                                                                                  Solaris
## 2948                                                                                                                                      Last Seduction, The
## 2949                                                                                                                                              Equilibrium
## 2950                                                                                                                                         Intact (Intacto)
## 2951                                                                                                                   Lord of the Rings: The Two Towers, The
## 2952                                                                                                                             City of God (Cidade de Deus)
## 2953                                                                                                                                             Recruit, The
## 2954                                                                                                                                                  Tenebre
## 2955                                                                                                                                                   Spider
## 2956                                                                                                                              Irreversible (Irréversible)
## 2957                                                                                                                                             Ringu (Ring)
## 2958                                                                                                                                              Phone Booth
## 2959                                                                                                                                         Anger Management
## 2960                                                                                                                                         Bulletproof Monk
## 2961                                                                                                                                               Confidence
## 2962                                                                                                                                                 Identity
## 2963                                                                                                                                     Matrix Reloaded, The
## 2964                                                                                                                                         Italian Job, The
## 2965                                                                                                           2 Fast 2 Furious (Fast and the Furious 2, The)
## 2966                                                                                                                                              Whale Rider
## 2967                                                                                                                                            28 Days Later
## 2968                                                                                                                          Charlie's Angels: Full Throttle
## 2969                                                                                                                              Tenant, The (Locataire, Le)
## 2970                                                                                                                                            Swimming Pool
## 2971                                                                                                                                   What's Up, Tiger Lily?
## 2972                                                                                                                           Tokyo Story (Tôkyô monogatari)
## 2973                                                                            Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 2974                                                                                                                                           Matchstick Men
## 2975                                                                                                                                      Lost in Translation
## 2976                                                                                                                                               Demonlover
## 2977                                                                                                                                               Videodrome
## 2978                                                                                                                                    Judgment at Nuremberg
## 2979                                                                                                                                                   Avalon
## 2980                                                                                                                        Knife in the Water (Nóz w wodzie)
## 2981                                                                                                                                        Kill Bill: Vol. 1
## 2982                                                                                                                                        Europa (Zentropa)
## 2983                                                                                                                                              Funny Games
## 2984                                                                                                                                                 WarGames
## 2985                                                                                            Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 2986                                                                                                                                   Hannah and Her Sisters
## 2987                                                                                                                                                    Kafka
## 2988                                                                                                                                 Night of the Hunter, The
## 2989                                                                                                                          Battle Royale (Batoru rowaiaru)
## 2990                                                                                                                                            Wild at Heart
## 2991                                                                                                    Last Year at Marienbad (L'Année dernière à Marienbad)
## 2992                                                                                                                 Macbeth (a.k.a. Tragedy of Macbeth, The)
## 2993                                                                                                                                       Play It Again, Sam
## 2994                                                                                                                                        Hero (Ying xiong)
## 2995                                                                                                                                Deep Red (Profondo rosso)
## 2996                                                                                                                             Diabolique (Les diaboliques)
## 2997                                                                                                                                              Naked Lunch
## 2998                                                                                                           Shoot the Piano Player (Tirez sur le pianiste)
## 2999                                                                                                           Lord of the Rings: The Return of the King, The
## 3000                                                                                                                                                 Paycheck
## 3001                                                                                                                                                   D.O.A.
## 3002                                                                                                                                     The Butterfly Effect
## 3003                                                                                                                    Eternal Sunshine of the Spotless Mind
## 3004                                                                                                                                                 Dogville
## 3005                                                                                                                                        Kill Bill: Vol. 2
## 3006                                                                                                                                              Man on Fire
## 3007                                                                                                                               Samouraï, Le (Godson, The)
## 3008                                                                                                              Wages of Fear, The (Salaire de la peur, Le)
## 3009                                                                                                                          Postman Always Rings Twice, The
## 3010                                                                                                                          Zorba the Greek (Alexis Zorbas)
## 3011                                                                                                                                       Parallax View, The
## 3012                                                                                                                                                   Cypher
## 3013                                                                                                                          Infernal Affairs (Mou gaan dou)
## 3014                                                                                                              Tale of Two Sisters, A (Janghwa, Hongryeon)
## 3015                                                                                                                                          Death Race 2000
## 3016                                                                                                                           Avventura, L' (Adventure, The)
## 3017                                                                                                            Maltese Falcon, The (a.k.a. Dangerous Female)
## 3018                                                                                                                                                  Shrek 2
## 3019                                                                                                                Blind Swordsman: Zatoichi, The (Zatôichi)
## 3020                                                                                                                                                Jetée, La
## 3021                                                                                                                                  Angels with Dirty Faces
## 3022                                                                                                        Exterminating Angel, The (Ángel exterminador, El)
## 3023                                                                                                                                          Fahrenheit 9/11
## 3024                                                                                                                                                 I, Robot
## 3025                                                                                                                                    Bourne Supremacy, The
## 3026                                                                                                                                      Slaughterhouse-Five
## 3027                                                                                                                                Manchurian Candidate, The
## 3028                                                                                                                                             Village, The
## 3029                                                                                                                                               Collateral
## 3030                                                                                                                    Sky Captain and the World of Tomorrow
## 3031                                                                                                                                        Shaun of the Dead
## 3032                                                                                                                                                   Primer
## 3033                                                                                                                            Fearless Vampire Killers, The
## 3034                                                                                                                                            The Machinist
## 3035                                                                                                                                                      Saw
## 3036                                                                                                                                                      Ray
## 3037                                                                                                                        Bad Education (La mala educación)
## 3038                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 3039                                                                                                                                                     2046
## 3040                                                                                                                                       Audition (Ôdishon)
## 3041                                                                                                                           Suicide Club (Jisatsu saakuru)
## 3042                                                                                                Very Long Engagement, A (Un long dimanche de fiançailles)
## 3043                                                                                                                                                  Old Boy
## 3044                                                                                                                                              Jacket, The
## 3045                                                                                                                            Return, The (Vozvrashcheniye)
## 3046                                                                                                                                Downfall (Untergang, Der)
## 3047                                                                                                                                 Kung Fu Hustle (Gong fu)
## 3048                                                                                                                                       Control (Kontroll)
## 3049                                                                                                                                                 Sin City
## 3050                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 3051                                                                                                                                               Madagascar
## 3052                                                                                                       High Tension (Haute tension) (Switchblade Romance)
## 3053                                                                                                                                        War of the Worlds
## 3054                                                                                                                                           Broken Flowers
## 3055                                                                                                                              Father of the Bride Part II
## 3056                                                                                                                                                     Heat
## 3057                                                                                                                                                  Sabrina
## 3058                                                                                                                                             Sudden Death
## 3059                                                                                                                                                    Nixon
## 3060                                                                                                                                    Sense and Sensibility
## 3061                                                                                                                                               Four Rooms
## 3062                                                                                                                                        Leaving Las Vegas
## 3063                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3064                                                                                                                                         Dead Man Walking
## 3065                                                                                                                                         Mighty Aphrodite
## 3066                                                                                                                                       Mr. Holland's Opus
## 3067                                                                                                                                             Bed of Roses
## 3068                                                                                                                                                Screamers
## 3069                                                                                                                                               Juror, The
## 3070                                                                                                                  Things to Do in Denver When You're Dead
## 3071                                                                                                                                       Angels and Insects
## 3072                                                                                                                                             White Squall
## 3073                                                                                                                                              Mary Reilly
## 3074                                                                                                                                             Broken Arrow
## 3075                                                                                                                                                City Hall
## 3076                                                                                                                                    Up Close and Personal
## 3077                                                                                                                                            Birdcage, The
## 3078                                                                                                                       Star Wars: Episode IV - A New Hope
## 3079                                                                                                                                          River Wild, The
## 3080                                                                                                                                       Executive Decision
## 3081                                                                                                                                                    Fargo
## 3082                                                                                                                                              Primal Fear
## 3083                                                                                                                                               Diabolique
## 3084                                                                                                                                      Mission: Impossible
## 3085                                                                                                                                              Dragonheart
## 3086                                                                                                                                         Mulholland Falls
## 3087                                                                                                                             Truth About Cats & Dogs, The
## 3088                                                                                                                                             Multiplicity
## 3089                                                                                                                                                Rock, The
## 3090                                                                                                                                                  Twister
## 3091                                                                                                                                                 Spy Hard
## 3092                                                                                                                                             Arrival, The
## 3093                                                                                                                                               Striptease
## 3094                                                                                                                                                     Jack
## 3095                                                                                                                            Independence Day (a.k.a. ID4)
## 3096                                                                                                                                                  Kingpin
## 3097                                                                                                                                                   Eraser
## 3098                                                                                                                                     Nutty Professor, The
## 3099                                                                                                                                               Phenomenon
## 3100                                                                                                                                          Time to Kill, A
## 3101                                                                                                                                     Very Brady Sequel, A
## 3102                                                                                                                                                   Ransom
## 3103                                                                                                                                         Escape from L.A.
## 3104                                                                                                                                                  Tin Cup
## 3105                                                                                                                                Island of Dr. Moreau, The
## 3106                                                                                                                                                Toy Story
## 3107                                                                                                                                                  Jumanji
## 3108                                                                                                                                         Grumpier Old Men
## 3109                                                                                                                                        Waiting to Exhale
## 3110                                                                                                                                                     Heat
## 3111                                                                                                                                                  Sabrina
## 3112                                                                                                                                             Sudden Death
## 3113                                                                                                                                                GoldenEye
## 3114                                                                                                                                  American President, The
## 3115                                                                                                                                                    Nixon
## 3116                                                                                                                                                   Casino
## 3117                                                                                                                                               Get Shorty
## 3118                                                                                                                                                  Copycat
## 3119                                                                                                                                                Assassins
## 3120                                                                                                                                        Leaving Las Vegas
## 3121                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 3122                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3123                                                                                                                                                     Babe
## 3124                                                                                                                                               Carrington
## 3125                                                                                                                                         Dead Man Walking
## 3126                                                                                                                                                 Clueless
## 3127                                                                                                                                          Dead Presidents
## 3128                                                                                                                                               To Die For
## 3129                                                                                                                                     Seven (a.k.a. Se7en)
## 3130                                                                                                                                               Pocahontas
## 3131                                                                                                                                      Usual Suspects, The
## 3132                                                                                                                                         Mighty Aphrodite
## 3133                                                                                                                                    Home for the Holidays
## 3134                                                                                                                               Postman, The (Postino, Il)
## 3135                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 3136                                                                                                                                            Two if by Sea
## 3137                                                                                                                                      From Dusk Till Dawn
## 3138                                                                                                                                             Bed of Roses
## 3139                                                                                                                                             Nick of Time
## 3140                                                                                                                                          Beautiful Girls
## 3141                                                                                                                                             Broken Arrow
## 3142                                                                                                                                         Hate (Haine, La)
## 3143                                                                                                                                            Bottle Rocket
## 3144                                                                                                                           Bridges of Madison County, The
## 3145                                                                                                                                               Braveheart
## 3146                                                                                                                                              Taxi Driver
## 3147                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 3148                                                                                                                                                Boomerang
## 3149                                                                                                                                   Flirting With Disaster
## 3150                                                                                                                                            Birdcage, The
## 3151                                                                                                                                                 Bad Boys
## 3152                                                                                                                                                Apollo 13
## 3153                                                                                                                                           Batman Forever
## 3154                                                                                                                        Beauty of the Day (Belle de jour)
## 3155                                                                                                                                                 Clockers
## 3156                                                                                                                                                    Congo
## 3157                                                                                                                                                    Crumb
## 3158                                                                                                                               Die Hard: With a Vengeance
## 3159                                                                                                                                     Doom Generation, The
## 3160                                                                                                                                          Johnny Mnemonic
## 3161                                                                                                                                       Living in Oblivion
## 3162                                                                                                                                        Lord of Illusions
## 3163                                                                                                                                                 Mad Love
## 3164                                                                                                                                                 Mallrats
## 3165                                                                                                                                                    Smoke
## 3166                                                                                                                                                  Species
## 3167                                                                                                                                             Strange Days
## 3168                                                                                                                                            Total Eclipse
## 3169                                                                                                                                                 Unzipped
## 3170                                                                                                                                               Waterworld
## 3171                                                                                                                                       White Man's Burden
## 3172                                                                                                                                           Before Sunrise
## 3173                                                                                                                                                   Clerks
## 3174                                                                                                                                     Death and the Maiden
## 3175                                                                                                                                        Dolores Claiborne
## 3176                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3177                                                                                                                                                  Ed Wood
## 3178                                                                                                                                              Hoop Dreams
## 3179                                                                                                                                       Heavenly Creatures
## 3180                                                                                                                                         Immortal Beloved
## 3181                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 3182                                                                                                                       Star Wars: Episode IV - A New Hope
## 3183                                                                                                                                             Little Women
## 3184                                                                                                                                       Little Princess, A
## 3185                                                                                                                                      Legends of the Fall
## 3186                                                                                                                             My Crazy Life (Mi vida loca)
## 3187                                                                                                                                               Milk Money
## 3188                                                                                                                                            Nobody's Fool
## 3189                                                                                                                                         New Jersey Drive
## 3190                                                                                                                                     Natural Born Killers
## 3191                                                                                                                                                 Outbreak
## 3192                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 3193                                                                                                                                             Pulp Fiction
## 3194                                                                                                                                                Quiz Show
## 3195                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 3196                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 3197                                                                                                                 Three Colors: White (Trzy kolory: Bialy)
## 3198                                                                                                                                                 Stargate
## 3199                                                                                                                                Shawshank Redemption, The
## 3200                                                                                                                                         To Live (Huozhe)
## 3201                                                                                                              Tales from the Crypt Presents: Demon Knight
## 3202                                                                                                                                   Star Trek: Generations
## 3203                                                                                                                                    Village of the Damned
## 3204                                                                                                                                                Tommy Boy
## 3205                                                                                                                                     Vanya on 42nd Street
## 3206                                                                                                                              What's Eating Gilbert Grape
## 3207                                                                                                                                  While You Were Sleeping
## 3208                                                                                                                                                 War, The
## 3209                                                                                                                               Ace Ventura: Pet Detective
## 3210                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 3211                                                                                                                                                 Backbeat
## 3212                                                                                                                                    Bullets Over Broadway
## 3213                                                                                                                                 Clear and Present Danger
## 3214                                                                                                                                              Client, The
## 3215                                                                                                                                                Crow, The
## 3216                                                                                                                                                     Cobb
## 3217                                                                                                                                             Forrest Gump
## 3218                                                                                                                              Four Weddings and a Funeral
## 3219                                                                                                                                   It Could Happen to You
## 3220                                                                                                                                           Lion King, The
## 3221                                                                                                                                            Little Buddha
## 3222                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 3223                                                                                                                                                Mask, The
## 3224                                                                                                                       Mrs. Parker and the Vicious Circle
## 3225                                                                                                                                               Paper, The
## 3226                                                                                                                                            Reality Bites
## 3227                                                                                                                                            Red Rock West
## 3228                                                                                                                                          River Wild, The
## 3229                                                                                                                                                    Speed
## 3230                                                                                                                                                  Timecop
## 3231                                                                                                                                                True Lies
## 3232                                                                                                                                                     Wolf
## 3233                                                                                                                                               Wyatt Earp
## 3234                                                                                                                                  In the Mouth of Madness
## 3235                                                                                                                                    Age of Innocence, The
## 3236                                                                                                                                               Blown Away
## 3237                                                                                                                                            Bronx Tale, A
## 3238                                                                                                                                                Cabin Boy
## 3239                                                                                                                                            Carlito's Way
## 3240                                                                                                                                              Cliffhanger
## 3241                                                                                                                                                     Dave
## 3242                                                                                                                                       Dazed and Confused
## 3243                                                                                                                                           Fatal Instinct
## 3244                                                                                                                                                 Fearless
## 3245                                                                                                                                              With Honors
## 3246                                                                                                                                           Flesh and Bone
## 3247                                                                                                                                                Firm, The
## 3248                                                                                                                                                    Fresh
## 3249                                                                                                                                            Fugitive, The
## 3250                                                                                                                                              Hard Target
## 3251                                                                                                                                           Heaven & Earth
## 3252                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 3253                                                                                                                                     Hudsucker Proxy, The
## 3254                                                                                                                                      In the Line of Fire
## 3255                                                                                                                                In the Name of the Father
## 3256                                                                                                                                           Judgment Night
## 3257                                                                                                                                            Jurassic Park
## 3258                                                                                                                                               Kalifornia
## 3259                                                                                                                                              Killing Zoe
## 3260                                                                                                                                         Last Action Hero
## 3261                                                                                                                                  Man Without a Face, The
## 3262                                                                                                                                        Menace II Society
## 3263                                                                                                                                       Executive Decision
## 3264                                                                                                                                           Mrs. Doubtfire
## 3265                                                                                                                                                    Naked
## 3266                                                                                                                                                No Escape
## 3267                                                                                                                                         Perfect World, A
## 3268                                                                                                                                             Philadelphia
## 3269                                                                                                                                               Piano, The
## 3270                                                                                                                                        Radioland Murders
## 3271                                                                                                                                  Remains of the Day, The
## 3272                                                                                                                                               Rising Sun
## 3273                                                                                                                                                RoboCop 3
## 3274                                                                                                                                Robin Hood: Men in Tights
## 3275                                                                                                                                           Romper Stomper
## 3276                                                                                                                                         Schindler's List
## 3277                                                                                                                              Searching for Bobby Fischer
## 3278                                                                                                                                       Secret Garden, The
## 3279                                                                                                                                              Shadowlands
## 3280                                                                                                                                               Short Cuts
## 3281                                                                                                                                                   Sirens
## 3282                                                                                                                                             Blade Runner
## 3283                                                                                                                                       Surviving the Game
## 3284                                                                                                                                                Threesome
## 3285                                                                                                                          Nightmare Before Christmas, The
## 3286                                                                                                                                             True Romance
## 3287                                                                                                                                 Welcome to the Dollhouse
## 3288                                                                                                                                         Princess Caraboo
## 3289                                                                                                                                               Home Alone
## 3290                                                                                                                                                  Aladdin
## 3291                                                                                                                               Terminator 2: Judgment Day
## 3292                                                                                                                                       Dances with Wolves
## 3293                                                                                                                                                   Batman
## 3294                                                                                                                                Silence of the Lambs, The
## 3295                                                                                                                          Snow White and the Seven Dwarfs
## 3296                                                                                                                                     Beauty and the Beast
## 3297                                                                                                                                                Pinocchio
## 3298                                                                                                                                             Pretty Woman
## 3299                                                                                                                                          Wild Bunch, The
## 3300                                                                                                                                                    Fargo
## 3301                                                                                                                                              Heavy Metal
## 3302                                                                                                                                          Pallbearer, The
## 3303                                                                                                                                              Primal Fear
## 3304                                                                                                                                      Mission: Impossible
## 3305                                                                                                                                              Dragonheart
## 3306                                                                                                                                James and the Giant Peach
## 3307                                                                                                                                                     Fear
## 3308                                                                                                                            Kids in the Hall: Brain Candy
## 3309                                                                                                                                               Barbarella
## 3310                                                                                                                                                     Boys
## 3311                                                                                                                                               Craft, The
## 3312                                                                                                                                                Rock, The
## 3313                                                                                                                                                  Twister
## 3314                                                                                                                                             Arrival, The
## 3315                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3316                                                                                                                            Independence Day (a.k.a. ID4)
## 3317                                                                                                                                           Cable Guy, The
## 3318                                                                                                                                                  Kingpin
## 3319                                                                                                                                                   Eraser
## 3320                                                                                                                                     Nutty Professor, The
## 3321                                                                                                                                         Frighteners, The
## 3322                                                                                                                                                Lone Star
## 3323                                                                                                                                               Phenomenon
## 3324                                                                                                                                          Time to Kill, A
## 3325                                                                                                                                           Godfather, The
## 3326                                                                                                                                Island of Dr. Moreau, The
## 3327                                                                          Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 3328                                                                                                                                  Philadelphia Story, The
## 3329                                                                                                                                   Breakfast at Tiffany's
## 3330                                                                                                                                                  Vertigo
## 3331                                                                                                                                              Rear Window
## 3332                                                                                                                                       North by Northwest
## 3333                                                                                                                                                  Charade
## 3334                                                                                                                                               Casablanca
## 3335                                                                                                                                      Maltese Falcon, The
## 3336                                                                                                                                             My Fair Lady
## 3337                                                                                                                                                  Sabrina
## 3338                                                                                                                                            Roman Holiday
## 3339                                                                                                                                     Little Princess, The
## 3340                                                                                                                                       Gone with the Wind
## 3341                                                                                                                                             Citizen Kane
## 3342                                                                                                                                    2001: A Space Odyssey
## 3343                                                                                                                                                  Rebecca
## 3344                                                                                                                                    Foreign Correspondent
## 3345                                                                                                                                                Notorious
## 3346                                                                                                                                               Spellbound
## 3347                                                                                                                                         To Catch a Thief
## 3348                                                                                                                            Adventures of Robin Hood, The
## 3349                                                                                                                                            Thin Man, The
## 3350                                                                                                                                          His Girl Friday
## 3351                                                                                                                                    It's a Wonderful Life
## 3352                                                                                                                             Mr. Smith Goes to Washington
## 3353                                                                                                                                         Bringing Up Baby
## 3354                                                                                                                                            39 Steps, The
## 3355                                                                                                                                        A Walk in the Sun
## 3356                                                                                                                                 Night of the Living Dead
## 3357                                                                                                                                       African Queen, The
## 3358                                                                                                                                                   Picnic
## 3359                                                                                                                                         Parent Trap, The
## 3360                                                                                                                             20,000 Leagues Under the Sea
## 3361                                                                                                                                               Cinderella
## 3362                                                                                                                     Winnie the Pooh and the Blustery Day
## 3363                                                                                                                                             Mary Poppins
## 3364                                                                                                                                                    Dumbo
## 3365                                                                                                                                      Sound of Music, The
## 3366                                                                                                                                                 Die Hard
## 3367                                                                                                                                           Secrets & Lies
## 3368                                                                                                                                       That Thing You Do!
## 3369                                                                                                                                                 Swingers
## 3370                                                                                                                                                 Sleepers
## 3371                                                                                                                      Willy Wonka & the Chocolate Factory
## 3372                                                                                                                                                  Sleeper
## 3373                                                                                                                                     Fish Called Wanda, A
## 3374                                                                                                                             Monty Python's Life of Brian
## 3375                                                                                                                                           Candidate, The
## 3376                                                                                                                                         Bonnie and Clyde
## 3377                                                                                                                                        Dial M for Murder
## 3378                                                                                                                                            Dirty Dancing
## 3379                                                                                                                                           Reservoir Dogs
## 3380                                                                                                                                                  Platoon
## 3381                                                                                                                                      Weekend at Bernie's
## 3382                                                                                                                                           Basic Instinct
## 3383                                                                                                                                               Doors, The
## 3384                                                                                                                                         Crying Game, The
## 3385                                                                                                                                      Glengarry Glen Ross
## 3386                                                                                                                               E.T. the Extra-Terrestrial
## 3387                                                                                                                                                  Top Gun
## 3388                                                                                                                                    Rebel Without a Cause
## 3389                                                                                                                                Streetcar Named Desire, A
## 3390                                                                                                                                           On Golden Pond
## 3391                                                                                                                                           Drop Dead Fred
## 3392                                                                                                                                               Abyss, The
## 3393                                                                                                                                                 Fog, The
## 3394                                                                                                                                     Escape from New York
## 3395                                                                                                                                             Howling, The
## 3396                                                                                                                          Monty Python and the Holy Grail
## 3397                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 3398                                                                                                                        Tin Drum, The (Blechtrommel, Die)
## 3399                                                                                                                                              Bob Roberts
## 3400                                                                                                                                             Delicatessen
## 3401                                                                                              Double Life of Veronique, The (Double Vie de Véronique, La)
## 3402                                                                                                                                           Paths of Glory
## 3403                                                                                                                                            Grifters, The
## 3404                                                                                                                                     English Patient, The
## 3405                                                                                                                                             My Left Foot
## 3406                                                                                                                          One Flew Over the Cuckoo's Nest
## 3407                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 3408                                                                                                                                      Princess Bride, The
## 3409                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3410                                                                                                                                                   Brazil
## 3411                                                                                                                                                   Aliens
## 3412                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3413                                                                                                                                             12 Angry Men
## 3414                                                                                                                                       Lawrence of Arabia
## 3415                                                                                                                                      Clockwork Orange, A
## 3416                                                                                                                                    To Kill a Mockingbird
## 3417                                                                                                                                           Apocalypse Now
## 3418                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 3419                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 3420                                                                                                                                           Third Man, The
## 3421                                                                                                                                               Goodfellas
## 3422                                                                                                                                                    Alien
## 3423                                                                                                                                         Army of Darkness
## 3424                                                                                                                           Big Blue, The (Grand bleu, Le)
## 3425                                                                                                                                                      Ran
## 3426                                                                                                                       Killer, The (Die xue shuang xiong)
## 3427                                                                                                                                                   Psycho
## 3428                                                                                                                                      Blues Brothers, The
## 3429                                                                                                                                  Godfather: Part II, The
## 3430                                                                                                                                        Full Metal Jacket
## 3431                                                                                                                                                  Amadeus
## 3432                                                                                                                              Once Upon a Time in America
## 3433                                                                                                                                              Raging Bull
## 3434                                                                                                                                               Annie Hall
## 3435                                                                                                                                         Right Stuff, The
## 3436                                                                                                                                    Boot, Das (Boat, The)
## 3437                                                                                                                 Seventh Seal, The (Sjunde inseglet, Det)
## 3438                                                                                                                                               Local Hero
## 3439                                                                                                                                          Terminator, The
## 3440                                                                                                                                                    Glory
## 3441                                                                                                                                                Manhattan
## 3442                                                                                                                                       Dead Poets Society
## 3443                                                                                                                                            Graduate, The
## 3444                                                                                                                                            Touch of Evil
## 3445                                                                                                                                Femme Nikita, La (Nikita)
## 3446                                                                                                                            Bridge on the River Kwai, The
## 3447                                                                                                                                                Chinatown
## 3448                                                                                                                           Day the Earth Stood Still, The
## 3449                                                                                                                        Treasure of the Sierra Madre, The
## 3450                                                                                                                                       Better Off Dead...
## 3451                                                                                                                                             Shining, The
## 3452                                                                                                                                              Stand by Me
## 3453                                                                                                                                                        M
## 3454                                                                                                                              Evil Dead II (Dead by Dawn)
## 3455                                                                                                                                        Great Escape, The
## 3456                                                                                                                                         Deer Hunter, The
## 3457                                                                                                                                            Groundhog Day
## 3458                                                                                                                                               Unforgiven
## 3459                                                                                                                                Manchurian Candidate, The
## 3460                                                                                                                                       Pump Up the Volume
## 3461                                                                                                                                     Arsenic and Old Lace
## 3462                                                                                                                                       Back to the Future
## 3463                                                                                                                                     Fried Green Tomatoes
## 3464                                                                                                                                                   Patton
## 3465                                                                                                                                                    Akira
## 3466                                                                                                                                               Highlander
## 3467                                                                                                                                           Cool Hand Luke
## 3468                                                                                                                                       Young Frankenstein
## 3469                                                                                                                                                 Fantasia
## 3470                                                                                                                                                High Noon
## 3471                                                                                                                                           Big Sleep, The
## 3472                                                                                                                                                 Heathers
## 3473                                                                                                                                        Somewhere in Time
## 3474                                                                                                                                                  Ben-Hur
## 3475                                                                                                                                       This Is Spinal Tap
## 3476                                                                                                                                   Some Kind of Wonderful
## 3477                                                                                                                       Indiana Jones and the Last Crusade
## 3478                                                                                                                                              Being There
## 3479                                                                                                                                              Real Genius
## 3480                                                                                                                                     Pink Floyd: The Wall
## 3481                                                                                                                                      Killing Fields, The
## 3482                                                                                                                                          Field of Dreams
## 3483                                                                                                                       Butch Cassidy and the Sundance Kid
## 3484                                                                                                       Until the End of the World (Bis ans Ende der Welt)
## 3485                                                                                                                                  When Harry Met Sally...
## 3486                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3487                                                                                                                          American Werewolf in London, An
## 3488                                                                                                                                   Amityville Horror, The
## 3489                                                                                                                                           Believers, The
## 3490                                                                                                                                               Birds, The
## 3491                                                                                                                                                Blob, The
## 3492                                                                                                                                               Body Parts
## 3493                                                                                                                          Dracula (Bram Stoker's Dracula)
## 3494                                                                                                                                                 Candyman
## 3495                                                                                                                                                Cape Fear
## 3496                                                                                                                                                Cape Fear
## 3497                                                                                                                                                   Carrie
## 3498                                                                                                                               Nightmare on Elm Street, A
## 3499                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 3500                                                                                                                                                Omen, The
## 3501                                                                                                                                       Breaking the Waves
## 3502                                                                                                                                 Star Trek: First Contact
## 3503                                                                                                                                                    Shine
## 3504                                                                                                                                               Die Hard 2
## 3505                                                                                                                            Star Trek: The Motion Picture
## 3506                                                                                                                   Star Trek VI: The Undiscovered Country
## 3507                                                                                                                          Star Trek V: The Final Frontier
## 3508                                                                                                                          Star Trek II: The Wrath of Khan
## 3509                                                                                                                      Star Trek III: The Search for Spock
## 3510                                                                                                                            Star Trek IV: The Voyage Home
## 3511                                                                                                                                           Batman Returns
## 3512                                                                                                                                               Young Guns
## 3513                                                                                                                                                   Grease
## 3514                                                                                                                                                 Grease 2
## 3515                                                                                                                                         Marked for Death
## 3516                                                                                                                                              Under Siege
## 3517                                                                                                                                                     Jaws
## 3518                                                                                                                                                   Jaws 2
## 3519                                                                                                                                                 Jaws 3-D
## 3520                                                                                                                                            Mars Attacks!
## 3521                                                                                                                                            Jerry Maguire
## 3522                                                                                                                                          Raising Arizona
## 3523                                                                                                                                                 Sneakers
## 3524                                                                                                                          Beavis and Butt-Head Do America
## 3525                                                                                                                                Last of the Mohicans, The
## 3526                                                                                                                                             Benny & Joon
## 3527                                                                                                                     Seven Samurai (Shichinin no samurai)
## 3528                                                                                                                       Blue Angel, The (Blaue Engel, Der)
## 3529                                                                                                                                                Toy Story
## 3530                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3531                                                                                                                                                     Babe
## 3532                                                                                                                                   Muppet Treasure Island
## 3533                                                                                                                                               Braveheart
## 3534                                                                                                                                                Apollo 13
## 3535                                                                                                                                           Batman Forever
## 3536                                                                                                                                    Walk in the Clouds, A
## 3537                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3538                                                                                                                       Star Wars: Episode IV - A New Hope
## 3539                                                                                                                                             Pulp Fiction
## 3540                                                                                                                                                 Stargate
## 3541                                                                                                                                Shawshank Redemption, The
## 3542                                                                                                                               Ace Ventura: Pet Detective
## 3543                                                                                                                                             Forrest Gump
## 3544                                                                                                                                           Lion King, The
## 3545                                                                                                                                                Mask, The
## 3546                                                                                                                                                True Lies
## 3547                                                                                                                                            Fugitive, The
## 3548                                                                                                                                            Jurassic Park
## 3549                                                                                                                                   Much Ado About Nothing
## 3550                                                                                                                                           Mrs. Doubtfire
## 3551                                                                                                                                         Schindler's List
## 3552                                                                                                                                                  Aladdin
## 3553                                                                                                                                       Dances with Wolves
## 3554                                                                                                                                                   Batman
## 3555                                                                                                                                Silence of the Lambs, The
## 3556                                                                                                                                     Beauty and the Beast
## 3557                                                                                                                                             Pretty Woman
## 3558                                                                                                                                                    Fargo
## 3559                                                                                                                  Mystery Science Theater 3000: The Movie
## 3560                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 3561                                                                                                                                                  Twister
## 3562                                                                                                                          Wallace & Gromit: A Close Shave
## 3563                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3564                                                                                                                            Independence Day (a.k.a. ID4)
## 3565                                                                                                                                           Godfather, The
## 3566                                                                                                                                              Rear Window
## 3567                                                                                                                                    It Happened One Night
## 3568                                                                                                                                               Casablanca
## 3569                                                                                                                             20,000 Leagues Under the Sea
## 3570                                                                                                                               E.T. the Extra-Terrestrial
## 3571                                                                                                                                    Rebel Without a Cause
## 3572                                                                                                                          Monty Python and the Holy Grail
## 3573                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 3574                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 3575                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3576                                                                                                                                       Lawrence of Arabia
## 3577                                                                                                                                    To Kill a Mockingbird
## 3578                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 3579                                                                                                                                            Graduate, The
## 3580                                                                                                                                     Arsenic and Old Lace
## 3581                                                                                                                                       Back to the Future
## 3582                                                                                                                                                   Gandhi
## 3583                                                                                                                                               Young Guns
## 3584                                                                                                                                             Benny & Joon
## 3585                                                                                                                                Men in Black (a.k.a. MIB)
## 3586                                                                                                                                            Sliding Doors
## 3587                                                                                                                                                    Mulan
## 3588                                                                                                                                        Last Emperor, The
## 3589                                                                                                                                  Poseidon Adventure, The
## 3590                                                                                                                                   Jewel of the Nile, The
## 3591                                                                                                                                              Matrix, The
## 3592                                                                                                                                        Ideal Husband, An
## 3593                                                                                                                                         Sixth Sense, The
## 3594                                                                                                                                           Boys Don't Cry
## 3595                                                                                                                                               Fight Club
## 3596                                                                                                                                   Cider House Rules, The
## 3597                                                                                                                                                Stalag 17
## 3598                                                                                                                          Captain Horatio Hornblower R.N.
## 3599                                                                                                                                                    U-571
## 3600                                                                                                                                          What About Bob?
## 3601                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 3602                                                                                                                         Importance of Being Earnest, The
## 3603                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 3604                                                                                                                                                Gallipoli
## 3605                                                                                                                                                Lady Jane
## 3606                                                                                                                                              Whale Rider
## 3607                                                                                                                                                Anastasia
## 3608                                                                                                                                         Secondhand Lions
## 3609                                                                                                           Lord of the Rings: The Return of the King, The
## 3610                                                                                                                                   I Was a Male War Bride
## 3611                                                                                                                                         Children of Dune
## 3612                                                                                                                                Anne of the Thousand Days
## 3613                                                                                                                                            Memphis Belle
## 3614                                                                                                                                   Farmer's Daughter, The
## 3615                                                                                                                                        Finding Neverland
## 3616                                                                                                                                                   Becket
## 3617                                                                                                                                            Sergeant York
## 3618                                                                                                                                          We're No Angels
## 3619                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 3620                                                                                                                      Red Balloon, The (Ballon rouge, Le)
## 3621                                                                                                                                            Amazing Grace
## 3622                                                                                                                                                 Stardust
## 3623                                                                                                                                        Definitely, Maybe
## 3624                                                                                                                                      Horton Hears a Who!
## 3625                                                                                                                                            Kung Fu Panda
## 3626                                                                                                       Wallace and Gromit in 'A Matter of Loaf and Death'
## 3627                                                                                                                                                GoldenEye
## 3628                                                                                                                                               Get Shorty
## 3629                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3630                                                                                                                                                     Babe
## 3631                                                                                                                                         Dead Man Walking
## 3632                                                                                                                                            Mortal Kombat
## 3633                                                                                                                                     Seven (a.k.a. Se7en)
## 3634                                                                                                                                             Broken Arrow
## 3635                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 3636                                                                                                                                                  Rob Roy
## 3637                                                                                                                  Mighty Morphin Power Rangers: The Movie
## 3638                                                                                                                                                  Species
## 3639                                                                                                                                               Waterworld
## 3640                                                                                                                       Star Wars: Episode IV - A New Hope
## 3641                                                                                                                                      Legends of the Fall
## 3642                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 3643                                                                                                                                     Natural Born Killers
## 3644                                                                                                                                             Pulp Fiction
## 3645                                                                                                                                                 Stargate
## 3646                                                                                                                                   Star Trek: Generations
## 3647                                                                                                                                                Tommy Boy
## 3648                                                                                                                               Ace Ventura: Pet Detective
## 3649                                                                                                                                             Forrest Gump
## 3650                                                                                                                                                    Speed
## 3651                                                                                                                                                  Timecop
## 3652                                                                                                                                                True Lies
## 3653                                                                                                                                           Street Fighter
## 3654                                                                                                                                           Demolition Man
## 3655                                                                                                                                            Fugitive, The
## 3656                                                                                                                                     Hot Shots! Part Deux
## 3657                                                                                                                                            Jurassic Park
## 3658                                                                                                                                         Last Action Hero
## 3659                                                                                                                                               Piano, The
## 3660                                                                                                                                         Schindler's List
## 3661                                                                                                                                             Blade Runner
## 3662                                                                                                                             So I Married an Axe Murderer
## 3663                                                                                                                          Nightmare Before Christmas, The
## 3664                                                                                                                                                Tombstone
## 3665                                                                                                                                               Home Alone
## 3666                                                                                                                               Terminator 2: Judgment Day
## 3667                                                                                                                                       Dances with Wolves
## 3668                                                                                                                                                   Batman
## 3669                                                                                                                                Silence of the Lambs, The
## 3670                                                                                                                          Snow White and the Seven Dwarfs
## 3671                                                                                                                                     Beauty and the Beast
## 3672                                                                                                                                             Pretty Woman
## 3673                                                                                                                                              Heavy Metal
## 3674                                                                                                                                      Mission: Impossible
## 3675                                                                                                                                                Rock, The
## 3676                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3677                                                                                                                            Independence Day (a.k.a. ID4)
## 3678                                                                                                                                         Escape from L.A.
## 3679                                                                                                                                           Godfather, The
## 3680                                                                                                                                      Singin' in the Rain
## 3681                                                                                                                                       North by Northwest
## 3682                                                                                                                                         Some Like It Hot
## 3683                                                                                                                                               Casablanca
## 3684                                                                                                                                      Maltese Falcon, The
## 3685                                                                                                                                             My Fair Lady
## 3686                                                                                                                                     Meet Me in St. Louis
## 3687                                                                                                                                        Wizard of Oz, The
## 3688                                                                                                                                       Gone with the Wind
## 3689                                                                                                                                         My Favorite Year
## 3690                                                                                                                                             Citizen Kane
## 3691                                                                                                                                    2001: A Space Odyssey
## 3692                                                                                                                                                  Top Hat
## 3693                                                                                                                                                    Giant
## 3694                                                                                                                              Around the World in 80 Days
## 3695                                                                                                                                    It's a Wonderful Life
## 3696                                                                                                                             Mr. Smith Goes to Washington
## 3697                                                                                                                                       African Queen, The
## 3698                                                                                                                                               Old Yeller
## 3699                                                                                                                             20,000 Leagues Under the Sea
## 3700                                                                                                                                               Cinderella
## 3701                                                                                                                                             Mary Poppins
## 3702                                                                                                                                 Bedknobs and Broomsticks
## 3703                                                                                                                                      Alice in Wonderland
## 3704                                                                                                                                      Sound of Music, The
## 3705                                                                                                                                                 Die Hard
## 3706                                                                                                                                     Fish Called Wanda, A
## 3707                                                                                                                             Monty Python's Life of Brian
## 3708                                                                                                                                            Dirty Dancing
## 3709                                                                                                                                           Reservoir Dogs
## 3710                                                                                                                                                  Platoon
## 3711                                                                                                                                      Weekend at Bernie's
## 3712                                                                                                                               E.T. the Extra-Terrestrial
## 3713                                                                                                                                    Rebel Without a Cause
## 3714                                                                                                                                           On Golden Pond
## 3715                                                                                                                          Return of the Pink Panther, The
## 3716                                                                                                                                               Abyss, The
## 3717                                                                                                                                     Escape from New York
## 3718                                                                                                                                         Private Benjamin
## 3719                                                                                                                          Monty Python and the Holy Grail
## 3720                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 3721                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 3722                                                                                                                                             Delicatessen
## 3723                                                                                                                          One Flew Over the Cuckoo's Nest
## 3724                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 3725                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3726                                                                                                                                                   Brazil
## 3727                                                                                                                                                   Aliens
## 3728                                                                                                                                             12 Angry Men
## 3729                                                                                                                                      Clockwork Orange, A
## 3730                                                                                                                                           Apocalypse Now
## 3731                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 3732                                                                                                                                                    Alien
## 3733                                                                                                                                                      Ran
## 3734                                                                                                                                  Godfather: Part II, The
## 3735                                                                                                                                        Full Metal Jacket
## 3736                                                                                                                                                  Henry V
## 3737                                                                                                                                                  Amadeus
## 3738                                                                                                                                              Raging Bull
## 3739                                                                                                                                         Right Stuff, The
## 3740                                                                                                                                               Sting, The
## 3741                                                                                                                                          Terminator, The
## 3742                                                                                                                                       Dead Poets Society
## 3743                                                                                                                            Bridge on the River Kwai, The
## 3744                                                                                                                                                Chinatown
## 3745                                                                                                                           Day the Earth Stood Still, The
## 3746                                                                                                                        Treasure of the Sierra Madre, The
## 3747                                                                                                                                                Duck Soup
## 3748                                                                                                                                              Stand by Me
## 3749                                                                                                                                         Deer Hunter, The
## 3750                                                                                                                                            Groundhog Day
## 3751                                                                                                                                               Unforgiven
## 3752                                                                                                                                       Back to the Future
## 3753                                                                                                                                               Highlander
## 3754                                                                                                                                      Great Dictator, The
## 3755                                                                                                                                                 Fantasia
## 3756                                                                                                                                                High Noon
## 3757                                                                                                                                                  Ben-Hur
## 3758                                                                                                                                       This Is Spinal Tap
## 3759                                                                                                                       Indiana Jones and the Last Crusade
## 3760                                                                                                                                              Being There
## 3761                                                                                                                       Unbearable Lightness of Being, The
## 3762                                                                                                                                      Room with a View, A
## 3763                                                                                                                                              Real Genius
## 3764                                                                                                                                     Pink Floyd: The Wall
## 3765                                                                                                                                         Forbidden Planet
## 3766                                                                                                                                          Field of Dreams
## 3767                                                                                                                               Man Who Would Be King, The
## 3768                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3769                                                                                                                          American Werewolf in London, An
## 3770                                                                                                                                   Amityville Horror, The
## 3771                                                                                                                                                Blob, The
## 3772                                                                                                                                                   Carrie
## 3773                                                                                                                                               Cat People
## 3774                                                                                                                                                Omen, The
## 3775                                                                                                                                               Die Hard 2
## 3776                                                                                                                            Star Trek: The Motion Picture
## 3777                                                                                                                   Star Trek VI: The Undiscovered Country
## 3778                                                                                                                          Star Trek V: The Final Frontier
## 3779                                                                                                                          Star Trek II: The Wrath of Khan
## 3780                                                                                                                      Star Trek III: The Search for Spock
## 3781                                                                                                                            Star Trek IV: The Voyage Home
## 3782                                                                                                                                                   Grease
## 3783                                                                                                                                                     Jaws
## 3784                                                                                                                                                   Jaws 2
## 3785                                                                                                                                          Raising Arizona
## 3786                                                                                                                                                  Tin Men
## 3787                                                                                                                                               Turbulence
## 3788                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 3789                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3790                                                                                                                                            Mortal Kombat
## 3791                                                                                                                                     Seven (a.k.a. Se7en)
## 3792                                                                                                                                               Pocahontas
## 3793                                                                                                                                      From Dusk Till Dawn
## 3794                                                                                                                                           Batman Forever
## 3795                                                                                                                                                   Casper
## 3796                                                                                                                                                Desperado
## 3797                                                                                                                                              Judge Dredd
## 3798                                                                                                                                               Waterworld
## 3799                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3800                                                                                                                                                  Ed Wood
## 3801                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 3802                                                                                                                       Star Wars: Episode IV - A New Hope
## 3803                                                                                                                                              Major Payne
## 3804                                                                                                                                             Pulp Fiction
## 3805                                                                                                                                          Specialist, The
## 3806                                                                                                                                         Flintstones, The
## 3807                                                                                                                                             Forrest Gump
## 3808                                                                                                                                           Demolition Man
## 3809                                                                                                                                            Fugitive, The
## 3810                                                                                                                                            Jurassic Park
## 3811                                                                                                                                         Last Action Hero
## 3812                                                                                                                                             Blade Runner
## 3813                                                                                                                          Nightmare Before Christmas, The
## 3814                                                                                                                                    Three Musketeers, The
## 3815                                                                                                                                             True Romance
## 3816                                                                                                                                               Home Alone
## 3817                                                                                                                                                  Aladdin
## 3818                                                                                                                               Terminator 2: Judgment Day
## 3819                                                                                                                                                   Batman
## 3820                                                                                                                                Silence of the Lambs, The
## 3821                                                                                                                                      Mission: Impossible
## 3822                                                                                                                                           Cable Guy, The
## 3823                                                                                                                                                  Kingpin
## 3824                                                                                                                                           Godfather, The
## 3825                                                                                                                             Monty Python's Life of Brian
## 3826                                                                                                                                           Reservoir Dogs
## 3827                                                                                                                               E.T. the Extra-Terrestrial
## 3828                                                                                                                                                  Top Gun
## 3829                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 3830                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 3831                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3832                                                                                                                                                   Aliens
## 3833                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3834                                                                                                                                           Apocalypse Now
## 3835                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 3836                                                                                                                                                    Alien
## 3837                                                                                                                                         Army of Darkness
## 3838                                                                                                                                          Terminator, The
## 3839                                                                                                                                                Bad Taste
## 3840                                                                                                                                         Deer Hunter, The
## 3841                                                                                                                                       Back to the Future
## 3842                                                                                                                       Indiana Jones and the Last Crusade
## 3843                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3844                                                                                                                          Dracula (Bram Stoker's Dracula)
## 3845                                                                                                                                 Star Trek: First Contact
## 3846                                                                                                                            Star Trek: The Motion Picture
## 3847                                                                                                                   Star Trek VI: The Undiscovered Country
## 3848                                                                                                                          Star Trek II: The Wrath of Khan
## 3849                                                                                                                      Star Trek III: The Search for Spock
## 3850                                                                                                                            Star Trek IV: The Voyage Home
## 3851                                                                                                                                           Batman Returns
## 3852                                                                                                                                                     Jaws
## 3853                                                                                                                                            Mars Attacks!
## 3854                                                                                                                                       Fifth Element, The
## 3855                                                                                                                           Lost World: Jurassic Park, The
## 3856                                                                                                                                Men in Black (a.k.a. MIB)
## 3857                                                                                                                                            Air Force One
## 3858                                                                                                                                                Game, The
## 3859                                                                                                                                          Full Monty, The
## 3860                                                                                                                                     The Devil's Advocate
## 3861                                                                                                                                         Truman Show, The
## 3862                                                                                                                                                  Amistad
## 3863                                                                                                                                                  Titanic
## 3864                                                                                                                                      Tomorrow Never Dies
## 3865                                                                                                                                 Replacement Killers, The
## 3866                                                                                                                                            Suicide Kings
## 3867                                                                                                                                              Deep Impact
## 3868                                                                                                                           Fear and Loathing in Las Vegas
## 3869                                                                                                                           X-Files: Fight the Future, The
## 3870                                                                                                                                               Armageddon
## 3871                                                                                                                             There's Something About Mary
## 3872                                                                                                                                            Exorcist, The
## 3873                                                                                                                                       Mask of Zorro, The
## 3874                                                                                                                               Back to the Future Part II
## 3875                                                                                                                                 Godfather: Part III, The
## 3876                                                                                                                                      Little Mermaid, The
## 3877                                                                                                                     Indiana Jones and the Temple of Doom
## 3878                                                                                                                                              Beetlejuice
## 3879                                                                                                                                                     Cube
## 3880                                                                                                                                               Thing, The
## 3881                                                                                                                                      Edward Scissorhands
## 3882                                                                                                                             History of the World: Part I
## 3883                                                                                                                                           Meet Joe Black
## 3884                                                                                                                               Rambo: First Blood Part II
## 3885                                                                                                                                              Patch Adams
## 3886                                                                                                                             Texas Chainsaw Massacre, The
## 3887                                                                                                                                             Office Space
## 3888                                                                                                                        Lock, Stock & Two Smoking Barrels
## 3889                                                                                                                                              Matrix, The
## 3890                                                                                                                                               Entrapment
## 3891                                                                                                                                               Dick Tracy
## 3892                                                                                                                                               Mummy, The
## 3893                                                                                                                           Rocky Horror Picture Show, The
## 3894                                                                                                                                    Thirteenth Floor, The
## 3895                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 3896                                                                                                                     South Park: Bigger, Longer and Uncut
## 3897                                                                                                                                           Wild Wild West
## 3898                                                                                                                                 Blair Witch Project, The
## 3899                                                                                                                                           Eyes Wide Shut
## 3900                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 3901                                                                                                                                          Ghostbusters II
## 3902                                                                                                                                              Mystery Men
## 3903                                                                                                                                         Sixth Sense, The
## 3904                                                                                                                                 Thomas Crown Affair, The
## 3905                                                                                                                                          American Beauty
## 3906                                                                                                                                          Double Jeopardy
## 3907                                                                                                                           Home Alone 2: Lost in New York
## 3908                                                                                                                                               Fight Club
## 3909                                                                                                                                                  RoboCop
## 3910                                                                                                                                 Who Framed Roger Rabbit?
## 3911                                                                                                                                          Licence to Kill
## 3912                                                                                                                                               Spaceballs
## 3913                                                                                                                                                    Dogma
## 3914                                                                                                                                            Sleepy Hollow
## 3915                                                                                                                                 World Is Not Enough, The
## 3916                                                                                                                                          Green Mile, The
## 3917                                                                                                                                 Talented Mr. Ripley, The
## 3918                                                                                                                             Batman: Mask of the Phantasm
## 3919                                                                                                                                            Wayne's World
## 3920                                                                                                                                               Beach, The
## 3921                                                                                                                                              Pitch Black
## 3922                                                                                                                                          Mission to Mars
## 3923                                                                                                                                          Ninth Gate, The
## 3924                                                                                                                                          Erin Brockovich
## 3925                                                                                                                             Teenage Mutant Ninja Turtles
## 3926                                                                                                                                                 Predator
## 3927                                                                                                                                          American Psycho
## 3928                                                                                                                                                Gladiator
## 3929                                                                                                                                   Mission: Impossible II
## 3930                                                                                                                                               Predator 2
## 3931                                                                                                                                              Chicken Run
## 3932                                                                                                                                                    X-Men
## 3933                                                                                                                                          What About Bob?
## 3934                                                                                                                                               Hollow Man
## 3935                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 3936                                                                                                                                         Charlie's Angels
## 3937                                                                                                                                              Unbreakable
## 3938                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 3939                                                                                                                                           Vertical Limit
## 3940                                                                                                                                                   Snatch
## 3941                                                                                                                                    Dude, Where's My Car?
## 3942                                                                                                                               O Brother, Where Art Thou?
## 3943                                                                                                                                           Evil Dead, The
## 3944                                                                                                                                                  Memento
## 3945                                                                                                                                                     Blow
## 3946                                                                                                                                                 Scarface
## 3947                                                                                                                                                    Shrek
## 3948                                                                                                                             A.I. Artificial Intelligence
## 3949                                                                                                             Crimson Rivers, The (Rivières pourpres, Les)
## 3950                                                                                                                                       Planet of the Apes
## 3951                                                                                                                                              Rush Hour 2
## 3952                                                                                                                                              Others, The
## 3953                                                                                                                                             Training Day
## 3954                                                                                                                                           Monsters, Inc.
## 3955                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 3956                                                                                                                                           Ocean's Eleven
## 3957                                                                                                                                              Vanilla Sky
## 3958                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 3959                                                                                                                                          Black Hawk Down
## 3960                                                                                                            Brotherhood of the Wolf (Pacte des loups, Le)
## 3961                                                                                                                                            Resident Evil
## 3962                                                                                                                                               Panic Room
## 3963                                                                                                                                               Spider-Man
## 3964                                                                                                                                    Sum of All Fears, The
## 3965                                                                                                                                          Minority Report
## 3966                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 3967                                                                                                                                        Road to Perdition
## 3968                                                                                                                                               Red Dragon
## 3969                                                                                                                                                Ring, The
## 3970                                                                                                                  Harry Potter and the Chamber of Secrets
## 3971                                                                                                                                          Die Another Day
## 3972                                                                                                                                              Equilibrium
## 3973                                                                                                                   Lord of the Rings: The Two Towers, The
## 3974                                                                                                                                      Catch Me If You Can
## 3975                                                                                                       Man Without a Past, The (Mies vailla menneisyyttä)
## 3976                                                                                                                                         X2: X-Men United
## 3977                                                                                                                                     Matrix Reloaded, The
## 3978                                                                                                                                           Bruce Almighty
## 3979                                                                                                                                            28 Days Later
## 3980                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 3981                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 3982                                                                                                                                               Underworld
## 3983                                                                                                                                        Kill Bill: Vol. 1
## 3984                                                                                                                                         Italian Job, The
## 3985                                                                                                                                  Matrix Revolutions, The
## 3986                                                                                                                                        Last Samurai, The
## 3987                                                                                                                                                 Big Fish
## 3988                                                                                                           Lord of the Rings: The Return of the King, The
## 3989                                                                                                                                         Dawn of the Dead
## 3990                                                                                                                                                  Hellboy
## 3991                                                                                                                                        Kill Bill: Vol. 2
## 3992                                                                                                                                              Van Helsing
## 3993                                                                                                                                         Enter the Dragon
## 3994                                                                                                                                                  Shrek 2
## 3995                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 3996                                                                                                                                             Spider-Man 2
## 3997                                                                                                                                               Collateral
## 3998                                                                                                                                              Grudge, The
## 3999                                                                                                                                            The Machinist
## 4000                                                                                                                                                      Saw
## 4001                                                                                                                                         Incredibles, The
## 4002                                                                                                                        Charlie and the Chocolate Factory
## 4003                                                                                                                                  Appleseed (Appurushîdo)
## 4004                                                                                                                                              Constantine
## 4005                                                                                                                                                 Sin City
## 4006                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 4007                                                                                                                                            Batman Begins
## 4008                                                                                                                                             Corpse Bride
## 4009                                                                                                                                                Toy Story
## 4010                                                                                                                                                     Heat
## 4011                                                                                                                                  American President, The
## 4012                                                                                                                                                   Casino
## 4013                                                                                                                           Ace Ventura: When Nature Calls
## 4014                                                                                                                                              Money Train
## 4015                                                                                                                                                   Powder
## 4016                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 4017                                                                                                                                                     Babe
## 4018                                                                                                                                     Seven (a.k.a. Se7en)
## 4019                                                                                                                                      Usual Suspects, The
## 4020                                                                                                                               Postman, The (Postino, Il)
## 4021                                                                                                                                       Mr. Holland's Opus
## 4022                                                                                                                                             Nick of Time
## 4023                                                                                                                                            Happy Gilmore
## 4024                                                                                                                                               Braveheart
## 4025                                                                                                                                              Taxi Driver
## 4026                                                                                                                                                Apollo 13
## 4027                                                                                                                                           Batman Forever
## 4028                                                                                                                        Beauty of the Day (Belle de jour)
## 4029                                                                                                                                          Johnny Mnemonic
## 4030                                                                                                                                                 Net, The
## 4031                                                                                                                                         Don Juan DeMarco
## 4032                                                                                                                                                  Ed Wood
## 4033                                                                                                                                              French Kiss
## 4034                                                                                                                                              Hoop Dreams
## 4035                                                                                                                                       Heavenly Creatures
## 4036                                                                                                                                                     I.Q.
## 4037                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 4038                                                                                                                       Star Wars: Episode IV - A New Hope
## 4039                                                                                                                                       Little Princess, A
## 4040                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 4041                                                                                                                                                 Outbreak
## 4042                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 4043                                                                                                                                             Pulp Fiction
## 4044                                                                                                                                                Quiz Show
## 4045                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 4046                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 4047                                                                                                                                                 Stargate
## 4048                                                                                                                                Shawshank Redemption, The
## 4049                                                                                                                                            Shallow Grave
## 4050                                                                                                                              What's Eating Gilbert Grape
## 4051                                                                                                                               Ace Ventura: Pet Detective
## 4052                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 4053                                                                                                                                             Forrest Gump
## 4054                                                                                                                                                True Lies
## 4055                                                                                                                                                 Blue Sky
## 4056                                                                                                                                            Carlito's Way
## 4057                                                                                                                                           Demolition Man
## 4058                                                                                                                                            Fugitive, The
## 4059                                                                                                                                           Heaven & Earth
## 4060                                                                                                                                     Hudsucker Proxy, The
## 4061                                                                                                                                            Jurassic Park
## 4062                                                                                                                                         Last Action Hero
## 4063                                                                                                                                 Manhattan Murder Mystery
## 4064                                                                                                                                   Much Ado About Nothing
## 4065                                                                                                                                             Philadelphia
## 4066                                                                                                                                               Piano, The
## 4067                                                                                                                                         Schindler's List
## 4068                                                                                                                                               Serial Mom
## 4069                                                                                                                                               Short Cuts
## 4070                                                                                                                                     Sleepless in Seattle
## 4071                                                                                                                                             Blade Runner
## 4072                                                                                                                                               Home Alone
## 4073                                                                                                                                                  Aladdin
## 4074                                                                                                                               Terminator 2: Judgment Day
## 4075                                                                                                                                       Dances with Wolves
## 4076                                                                                                                                                   Batman
## 4077                                                                                                                                Silence of the Lambs, The
## 4078                                                                                                                                     Beauty and the Beast
## 4079                                                                                                                                             Pretty Woman
## 4080                                                                                                                                             One Fine Day
## 4081                                                                                                                                                    Fargo
## 4082                                                                                                                                      Mission: Impossible
## 4083                                                                                                                                              Dragonheart
## 4084                                                                                                                Song of the Little Road (Pather Panchali)
## 4085                                                                                                                          World of Apu, The (Apur Sansar)
## 4086                                                                                                                          Wallace & Gromit: A Close Shave
## 4087                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 4088                                                                                                                                            Trainspotting
## 4089                                                                                                                            Independence Day (a.k.a. ID4)
## 4090                                                                                                                                     Nutty Professor, The
## 4091                                                                                                                                               Phenomenon
## 4092                                                                                                                                          Time to Kill, A
## 4093                                                                                                              Eyes Without a Face (Yeux sans visage, Les)
## 4094                                                                                                                                           Godfather, The
## 4095                                                                                                                                  Philadelphia Story, The
## 4096                                                                                                                                      Singin' in the Rain
## 4097                                                                                                                                    American in Paris, An
## 4098                                                                                                                                                  Vertigo
## 4099                                                                                                                                              Rear Window
## 4100                                                                                                                                    It Happened One Night
## 4101                                                                                                                                       North by Northwest
## 4102                                                                                                                                           Apartment, The
## 4103                                                                                                                                         Some Like It Hot
## 4104                                                                                                                                                  Charade
## 4105                                                                                                                                               Casablanca
## 4106                                                                                                                                      Maltese Falcon, The
## 4107                                                                                                                                             My Fair Lady
## 4108                                                                                                                                       Gone with the Wind
## 4109                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 4110                                                                                                                                             Citizen Kane
## 4111                                                                                                                                    2001: A Space Odyssey
## 4112                                                                                                                                            All About Eve
## 4113                                                                                                                                                  Rebecca
## 4114                                                                                                                                                Notorious
## 4115                                                                                                                                               Spellbound
## 4116                                                                                                                                         To Catch a Thief
## 4117                                                                                                                                                    Laura
## 4118                                                                                                                                                    Giant
## 4119                                                                                                                                             East of Eden
## 4120                                                                                                                              Around the World in 80 Days
## 4121                                                                                                                                    It's a Wonderful Life
## 4122                                                                                                                             Mr. Smith Goes to Washington
## 4123                                                                                                                                         Bringing Up Baby
## 4124                                                                                                                                            39 Steps, The
## 4125                                                                                                                                       African Queen, The
## 4126                                                                                                                                    Cat on a Hot Tin Roof
## 4127                                                                                                                                      Sound of Music, The
## 4128                                                                                                                                                 Die Hard
## 4129                                                                                                                                           Secrets & Lies
## 4130                                                                                                                     William Shakespeare's Romeo + Juliet
## 4131                                                                                                                                                 Sleepers
## 4132                                                                                                                                                  Sleeper
## 4133                                                                                                                                                  Bananas
## 4134                                                                                                                             Monty Python's Life of Brian
## 4135                                                                                                                                         Bonnie and Clyde
## 4136                                                                                                                                           Reservoir Dogs
## 4137                                                                                                                                                  Platoon
## 4138                                                                                                                                          Sophie's Choice
## 4139                                                                                                                               E.T. the Extra-Terrestrial
## 4140                                                                                                                                                  Top Gun
## 4141                                                                                                                                    Rebel Without a Cause
## 4142                                                                                                                                Streetcar Named Desire, A
## 4143                                                                                                                          Monty Python and the Holy Grail
## 4144                                                                                                                  Cinema Paradiso (Nuovo cinema Paradiso)
## 4145                                                                                                                                             Delicatessen
## 4146                                                                                              Double Life of Veronique, The (Double Vie de Véronique, La)
## 4147                                                                                                                                           Paths of Glory
## 4148                                                                                                                                     English Patient, The
## 4149                                                                                                                                             My Left Foot
## 4150                                                                                                                                        Strictly Ballroom
## 4151                                                                                                                          One Flew Over the Cuckoo's Nest
## 4152                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 4153                                                                                                                                      Princess Bride, The
## 4154                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 4155                                                                                                                                                   Brazil
## 4156                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 4157                                                                                                                                             Withnail & I
## 4158                                                                                                                                             12 Angry Men
## 4159                                                                                                                                       Lawrence of Arabia
## 4160                                                                                                                                      Clockwork Orange, A
## 4161                                                                                                                                    To Kill a Mockingbird
## 4162                                                                                                                                           Apocalypse Now
## 4163                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 4164                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 4165                                                                                                                                           Third Man, The
## 4166                                                                                                                                               Goodfellas
## 4167                                                                                                                                                      Ran
## 4168                                                                                                                       Killer, The (Die xue shuang xiong)
## 4169                                                                                                                                                   Psycho
## 4170                                                                                                                                  Godfather: Part II, The
## 4171                                                                                                                                        Full Metal Jacket
## 4172                                                                                                                                                  Amadeus
## 4173                                                                                                                              Once Upon a Time in America
## 4174                                                                                                                                              Raging Bull
## 4175                                                                                                                                               Annie Hall
## 4176                                                                                                                                         Right Stuff, The
## 4177                                                                                                                                                  Stalker
## 4178                                                                                                                                    Boot, Das (Boat, The)
## 4179                                                                                                                                               Sting, The
## 4180                                                                                                                                         Harold and Maude
## 4181                                                                                                                 Seventh Seal, The (Sjunde inseglet, Det)
## 4182                                                                                                                                          Terminator, The
## 4183                                                                                                                                   Dead Alive (Braindead)
## 4184                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 4185                                                                                                                                                Manhattan
## 4186                                                                                                                                       Dead Poets Society
## 4187                                                                                                                                            Graduate, The
## 4188                                                                                                                                            Touch of Evil
## 4189                                                                                                                            Bridge on the River Kwai, The
## 4190                                                                                                                                               8 1/2 (8½)
## 4191                                                                                                                                                Chinatown
## 4192                                                                                                                        Treasure of the Sierra Madre, The
## 4193                                                                                                                                                Duck Soup
## 4194                                                                                                                                             Shining, The
## 4195                                                                                                                                                        M
## 4196                                                                                                                                        Great Escape, The
## 4197                                                                                                                                         Deer Hunter, The
## 4198                                                                                                                                            Groundhog Day
## 4199                                                                                                                                               Unforgiven
## 4200                                                                                                                                Manchurian Candidate, The
## 4201                                                                                                                                     Arsenic and Old Lace
## 4202                                                                                                                                       Back to the Future
## 4203                                                                                                                                                   Patton
## 4204                                                                                                                                       Cyrano de Bergerac
## 4205                                                                                                    Raise the Red Lantern (Da hong deng long gao gao gua)
## 4206                                                                                                                                      Great Dictator, The
## 4207                                                                                                                                           Big Sleep, The
## 4208                                                                                                                                                  Ben-Hur
## 4209                                                                                                                                       This Is Spinal Tap
## 4210                                                                                                                       Indiana Jones and the Last Crusade
## 4211                                                                                                                                                   Gandhi
## 4212                                                                                                                       Butch Cassidy and the Sundance Kid
## 4213                                                                                                                                             Paris, Texas
## 4214                                                                                                                                  When Harry Met Sally...
## 4215                                                                                                                                               Birds, The
## 4216                                                                                                                                                Cape Fear
## 4217                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 4218                                                                                                                                       Breaking the Waves
## 4219                                                                                                                                 Star Trek: First Contact
## 4220                                                                                                                                           Batman Returns
## 4221                                                                                                                                                   Grease
## 4222                                                                                                                                                     Jaws
## 4223                                                                                                                                            Mars Attacks!
## 4224                                                                                                                                            Jerry Maguire
## 4225                                                                                                                                          Raising Arizona
## 4226                                                                                                                                Last of the Mohicans, The
## 4227                                                                                                                                                   Hamlet
## 4228                                                                                                                                             Dante's Peak
## 4229                                                                                                                                             Lost Highway
## 4230                                                                                                                                                 Anaconda
## 4231                                                                                                                                      Grosse Pointe Blank
## 4232                                                                                                                                                  Volcano
## 4233                                                                                                                                       Fifth Element, The
## 4234                                                                                                                           Lost World: Jurassic Park, The
## 4235                                                                                                                                                  Con Air
## 4236                                                                                                                                  Speed 2: Cruise Control
## 4237                                                                                                                                           Batman & Robin
## 4238                                                                                                                                Men in Black (a.k.a. MIB)
## 4239                                                                                                                                                  Contact
## 4240                                                                                                                                            Air Force One
## 4241                                                                                                                                        L.A. Confidential
## 4242                                                                                                                                                Game, The
## 4243                                                                                                                                            Boogie Nights
## 4244                                                                                                                                         Truman Show, The
## 4245                                                                                                                                                  Amistad
## 4246                                                                                                                                        Good Will Hunting
## 4247                                                                                                                                                  Titanic
## 4248                                                                                                                                      Tomorrow Never Dies
## 4249                                                                                                                                        Big Lebowski, The
## 4250                                                                                                                                       Great Expectations
## 4251                                                                                                                                                Dark City
## 4252                                                                                                                                            U.S. Marshals
## 4253                                                                                                                                                  Everest
## 4254                                                                                                                                           City of Angels
## 4255                                                                                                                                     Character (Karakter)
## 4256                                                                                                                                          Misérables, Les
## 4257                                                                                                                                              Deep Impact
## 4258                                                                                                              Children of Heaven, The (Bacheha-Ye Aseman)
## 4259                                                                                                                                                    Mulan
## 4260                                                                                                                                               Armageddon
## 4261                                                                                                                           All Quiet on the Western Front
## 4262                                                                                                                                     Mutiny on the Bounty
## 4263                                                                                                                                      Great Ziegfeld, The
## 4264                                                                                                                                  How Green Was My Valley
## 4265                                                                                                                                                   Hamlet
## 4266                                                                                                                                    From Here to Eternity
## 4267                                                                                                                                        On the Waterfront
## 4268                                                                                                                                                    Marty
## 4269                                                                                                                                          West Side Story
## 4270                                                                                                                                   Man for All Seasons, A
## 4271                                                                                                                                 In the Heat of the Night
## 4272                                                                                                                                                  Oliver!
## 4273                                                                                                                                          Midnight Cowboy
## 4274                                                                                                                                   French Connection, The
## 4275                                                                                                                                                    Rocky
## 4276                                                                                                                                        Kramer vs. Kramer
## 4277                                                                                                                                          Ordinary People
## 4278                                                                                                                                         Chariots of Fire
## 4279                                                                                                                                      Terms of Endearment
## 4280                                                                                                                                            Out of Africa
## 4281                                                                                                                                        Last Emperor, The
## 4282                                                                                                                                                 Rain Man
## 4283                                                                                                                                       Driving Miss Daisy
## 4284                                                                                                                                            Exorcist, The
## 4285                                                                                                                                          Lethal Weapon 3
## 4286                                                                                                                                               Metropolis
## 4287                                                                                                                               Back to the Future Part II
## 4288                                                                                                                              Back to the Future Part III
## 4289                                                                                                                     Seven Samurai (Shichinin no samurai)
## 4290                                                                                                                           Last Temptation of Christ, The
## 4291                                                                                                                                 Godfather: Part III, The
## 4292                                                                                                                                     Jane Austen's Mafia!
## 4293                                                                                                                                      Saving Private Ryan
## 4294                                                                                                                                           Doctor Zhivago
## 4295                                                                                                                Fanny and Alexander (Fanny och Alexander)
## 4296                                                                                                                     Indiana Jones and the Temple of Doom
## 4297                                                                                                                                               Snake Eyes
## 4298                                                                                                                          Who's Afraid of Virginia Woolf?
## 4299                                                                                                                                                   Legend
## 4300                                                                                                                                              Beetlejuice
## 4301                                                                                                                                                     Rope
## 4302                                                                                                                                                   Frenzy
## 4303                                                                                                                                                   Marnie
## 4304                                                                                                                               Man Who Knew Too Much, The
## 4305                                                                                                                                     Strangers on a Train
## 4306                                                                                                                                        Untouchables, The
## 4307                                                                                                                                        Shadow of a Doubt
## 4308                                                                                                                                         Mr. & Mrs. Smith
## 4309                                                                                                                                                 Rounders
## 4310                                                                                                                                          Say Anything...
## 4311                                                                                                                                                Rush Hour
## 4312                                                                                                                                                    Ronin
## 4313                                                                                                                                              Player, The
## 4314                                                                                                                                      Edward Scissorhands
## 4315                                                                                                                                        Elephant Man, The
## 4316                                                                                                                                            Pleasantville
## 4317                                                                                                                      Life Is Beautiful (La Vita è bella)
## 4318                                                                                                                                       American History X
## 4319                                                                                                                                        Gods and Monsters
## 4320                                                                                                                                               Siege, The
## 4321                                                                                                                                                Elizabeth
## 4322                                                                                                                 Nights of Cabiria (Notti di Cabiria, Le)
## 4323                                                                                                                                       Enemy of the State
## 4324                                                                                                                      Central Station (Central do Brasil)
## 4325                                                                                                                                Celebration, The (Festen)
## 4326                                                                                                                                           Pink Flamingos
## 4327                                                                                                                                     Prince of Egypt, The
## 4328                                                                                                                                      Shakespeare in Love
## 4329                                                                                                                                      Romancing the Stone
## 4330                                                                                                                                          You've Got Mail
## 4331                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 4332                                                                                                                                      Color of Money, The
## 4333                                                                                                                                              October Sky
## 4334                                                                                                                                             Office Space
## 4335                                                                                                                                             Analyze This
## 4336                                                                                                                        Lock, Stock & Two Smoking Barrels
## 4337                                                                                                                                              Matrix, The
## 4338                                                                                                       Dreamlife of Angels, The (Vie rêvée des anges, La)
## 4339                                                                                                                                                       Go
## 4340                                                                                                                                                 Election
## 4341                                                                                                                                                 eXistenZ
## 4342                                                                                                                                               Mummy, The
## 4343                                                                                                                Star Wars: Episode I - The Phantom Menace
## 4344                                                                                                                                                 Superman
## 4345                                                                                                                                                  Dracula
## 4346                                                                                                                                             Frankenstein
## 4347                                                                                                                           Rocky Horror Picture Show, The
## 4348                                                                                                                                Run Lola Run (Lola rennt)
## 4349                                                                                                                                            Arachnophobia
## 4350                                                                                                                                            Summer of Sam
## 4351                                                                                                                                           Eyes Wide Shut
## 4352                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 4353                                                                                                                                                    Trick
## 4354                                                                                                                                            Runaway Bride
## 4355                                                                                                                                             Killing, The
## 4356                                                                                                                                                Spartacus
## 4357                                                                                                                                                   Lolita
## 4358                                                                                                                                             Barry Lyndon
## 4359                                                                                                                  400 Blows, The (Les quatre cents coups)
## 4360                                                                                                                                        Color Purple, The
## 4361                                                                                                                                   Little Shop of Horrors
## 4362                                                                                                                                         Sixth Sense, The
## 4363                                                                                                                                         Mickey Blue Eyes
## 4364                                                                                                                                          American Beauty
## 4365                                                                                                                                              Deliverance
## 4366                                                                                                                                              Three Kings
## 4367                                                                                                                                Sanjuro (Tsubaki Sanjûrô)
## 4368                                                                                                                                           Boys Don't Cry
## 4369                                                                                                                                 Ferris Bueller's Day Off
## 4370                                                                                                                                           Days of Heaven
## 4371                                                                                                                                               Goldfinger
## 4372                                                                                                                                      Sydney (Hard Eight)
## 4373                                                                                                                           Home Alone 2: Lost in New York
## 4374                                                                                                                                               Fight Club
## 4375                                                                                                                                             Fitzcarraldo
## 4376                                                                                                                                    Bringing Out the Dead
## 4377                                                                                                                                 Who Framed Roger Rabbit?
## 4378                                                                                                                                     Being John Malkovich
## 4379                                                                                                                                             Insider, The
## 4380                                                                                                                                         Drugstore Cowboy
## 4381                                                                                                                                             Falling Down
## 4382                                                                                                                                                    Dogma
## 4383                                                                                                                 Messenger: The Story of Joan of Arc, The
## 4384                                                                     Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios)
## 4385                                                                                                                                            Sleepy Hollow
## 4386                                                                                                                                 World Is Not Enough, The
## 4387                                                                                                                All About My Mother (Todo sobre mi madre)
## 4388                                                                                                                                                   Harvey
## 4389                                                            Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 4390                                                                                                                                     Grapes of Wrath, The
## 4391                                                                                                                                 River Runs Through It, A
## 4392                                                                                                                                              Toy Story 2
## 4393                                                                                                                                          Green Mile, The
## 4394                                                                                                                                   Last Picture Show, The
## 4395                                                                                                                                        Anna and the King
## 4396                                                                                                                                            Fantasia 2000
## 4397                                                                                                                                                 Magnolia
## 4398                                                                                                                                               Easy Rider
## 4399                                                                                                                                 Talented Mr. Ripley, The
## 4400                                                                                                                                         Five Easy Pieces
## 4401                                                                                                                             I Am Cuba (Soy Cuba/Ya Kuba)
## 4402                                                                                                                                                Malcolm X
## 4403                                                                                                                          Sister Act 2: Back in the Habit
## 4404                                                                                                                                         Scent of a Woman
## 4405                                                                                                                                             Mariachi, El
## 4406                                                                                                                                              City Lights
## 4407                                                                                                                                                 Kid, The
## 4408                                                                                                                                              Wonder Boys
## 4409                                                                                                                                           Searchers, The
## 4410                                                                                                                                          Bound for Glory
## 4411                                                                                                                                                      JFK
## 4412                                                                                                                                     Night to Remember, A
## 4413                                                                                                                                          Erin Brockovich
## 4414                                                                                                                                    Mirror, The (Zerkalo)
## 4415                                                                                                                                       Do the Right Thing
## 4416                                                                                                                                         Double Indemnity
## 4417                                                                                                                                    Good Morning, Vietnam
## 4418                                                                                                                                             Modern Times
## 4419                                                                                                                                             Hustler, The
## 4420                                                                                                                       Close Encounters of the Third Kind
## 4421                                                                                                                                      Place in the Sun, A
## 4422                                                                                                                                            High Fidelity
## 4423                                                                                                                                                     Hook
## 4424                                                                                                                                         Midnight Express
## 4425                                                                                                                                       Solaris (Solyaris)
## 4426                                                                                                                                                  Network
## 4427                                                                                                                                                Frequency
## 4428                                                                                                                                          American Psycho
## 4429                                                                                                                         What Ever Happened to Baby Jane?
## 4430                                                                                                                                                Limelight
## 4431                                                                                                                                  Idiots, The (Idioterne)
## 4432                                                                                                                                                Gladiator
## 4433                                                                                                                                        Small Time Crooks
## 4434                                                                                                                                   Mission: Impossible II
## 4435                                                                                                                                           Gold Rush, The
## 4436                                                                                                                                         Romeo and Juliet
## 4437                                                                                                                                          Blazing Saddles
## 4438                                                                                                      For a Few Dollars More (Per qualche dollaro in più)
## 4439                                                                                                                                        Conversation, The
## 4440                                                                                                                      Ace in the Hole (Big Carnival, The)
## 4441                                                                                                                                                 Badlands
## 4442                                                                                                                                              Chicken Run
## 4443                                                                                                                                             Patriot, The
## 4444                                                                                                                                         Blow-Up (Blowup)
## 4445                                                                                                                                      Anatomy of a Murder
## 4446                                                                                                                                          Steel Magnolias
## 4447                                                                                                                                                    Shane
## 4448                                                                                                                                            Almost Famous
## 4449                                                                                                                                       Dancer in the Dark
## 4450                                                                                                                                      Requiem for a Dream
## 4451                                                                                                                                      You Can Count on Me
## 4452                                                                                                                                     One Day in September
## 4453                                                                                                                                                   Malèna
## 4454                                                                                                                                              Unbreakable
## 4455                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 4456                                                                                                                                              Wall Street
## 4457                                                                                                                               Born on the Fourth of July
## 4458                                                                                                                                                   Snatch
## 4459                                                                                                                                                 Chocolat
## 4460                                                                                                                                                Cast Away
## 4461                                                                                                                               O Brother, Where Art Thou?
## 4462                                                                                                                                                  Traffic
## 4463                                                                                                                                           House of Games
## 4464                                                                                                                                        Empire of the Sun
## 4465                                                                                                                                                 Hannibal
## 4466                                                                                                                                               15 Minutes
## 4467                                                                                                                                       Enemy at the Gates
## 4468                                                                                                                                                Dish, The
## 4469                                                                                                                                                  Memento
## 4470                                                                                                                           Amores Perros (Love's a Bitch)
## 4471                                                                                                                                    One Night at McCool's
## 4472                                                                                                                Triumph of the Will (Triumph des Willens)
## 4473                                                                                                                                        Fellini Satyricon
## 4474                                                                                                                    Pelle the Conqueror (Pelle erobreren)
## 4475                                                                                                                                             Moulin Rouge
## 4476                                                                                                                                             Pearl Harbor
## 4477                                                                                                                Himalaya (Himalaya - l'enfance d'un chef)
## 4478                                                                                                                                                Evolution
## 4479                                                                                                                                                Swordfish
## 4480                                                                                                                                     Seven Year Itch, The
## 4481                                                                                                                             A.I. Artificial Intelligence
## 4482                                                                                                                                               Sexy Beast
## 4483                                                                                                                                   Sweet Smell of Success
## 4484                                                                                                                                           Legally Blonde
## 4485                                                                                                                                    Africa: The Serengeti
## 4486                                                                                                                                                   Always
## 4487                                                                                                                         Bill & Ted's Excellent Adventure
## 4488                                                                                                                                              Ghost World
## 4489                                                                                                                                              Others, The
## 4490                                                                                                                                                Zoolander
## 4491                                                                                                                                              Serendipity
## 4492                                                                                                                                         Mulholland Drive
## 4493                                                                                                                                      Fiddler on the Roof
## 4494                                                                                                                                                From Hell
## 4495                                                                                                                                             Donnie Darko
## 4496                                                                                                                                Man Who Wasn't There, The
## 4497                                                                                                                                           Monsters, Inc.
## 4498                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 4499                                                                                                                                                 Spy Game
## 4500                                                                                                                           Breathless (À bout de souffle)
## 4501                                                                                                                                           Ocean's Eleven
## 4502                                                                                                                                            No Man's Land
## 4503                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4504                                                                                                                                              Vanilla Sky
## 4505                                                                                                                                                     Iris
## 4506                                                                                                                                                  Lantana
## 4507                                                                                                                                    Royal Tenenbaums, The
## 4508                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 4509                                                                                                                                        Beautiful Mind, A
## 4510                                                                                                                                             Gosford Park
## 4511                                                                                                                                                 I Am Sam
## 4512                                                                                                                                           Monster's Ball
## 4513                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 4514                                                                                                                  Son's Room, The (Stanza del figlio, La)
## 4515                                                                                                                                           Baby's Day Out
## 4516                                                                                                                               Bad and the Beautiful, The
## 4517                                                                                                                                          Monsoon Wedding
## 4518                                                                                                                      Wild Strawberries (Smultronstället)
## 4519                                                                                                                               Magnificent Ambersons, The
## 4520                                                                                                                                    Kissing Jessica Stein
## 4521                                                                                                                  And Your Mother Too (Y tu mamá también)
## 4522                                                                                                                                               Panic Room
## 4523                                                                                                                                      Rashomon (Rashômon)
## 4524                                                                                                                                 My Big Fat Greek Wedding
## 4525                                                                                                  Rome, Open City (a.k.a. Open City) (Roma, città aperta)
## 4526                                                                                                                                         Hollywood Ending
## 4527                                                                                                                                               Spider-Man
## 4528                                                                                                                                  My Beautiful Laundrette
## 4529                                                                                                                 Cranes Are Flying, The (Letyat zhuravli)
## 4530                                                                                                                                              About a Boy
## 4531                                                                                                             Star Wars: Episode II - Attack of the Clones
## 4532                                                                                                                                          Last Waltz, The
## 4533                                                                                                                                                 Insomnia
## 4534                                                                                                                                          Minority Report
## 4535                                                                                                                                       Rabbit-Proof Fence
## 4536                                                                                                                                            Reign of Fire
## 4537                                                                                                                                        Road to Perdition
## 4538                                                                                                                          The Importance of Being Earnest
## 4539                                                                                                     Nosferatu the Vampyre (Nosferatu: Phantom der Nacht)
## 4540                                                                                                                                                    Signs
## 4541                                                                                                                          Tabu: A Story of the South Seas
## 4542                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 4543                                                                                                                                                   Heaven
## 4544                                                                                                                                    Bowling for Columbine
## 4545                                                                                                                                         Punch-Drunk Love
## 4546                                                                                                                                                Ring, The
## 4547                                                                                                                                           Grey Zone, The
## 4548                                                                                                                                                   8 Mile
## 4549                                                                                                                  Harry Potter and the Chamber of Secrets
## 4550                                                                                                                             Talk to Her (Hable con Ella)
## 4551                                                                                                                                                  Solaris
## 4552                                                                                                                                          Treasure Planet
## 4553                                                                                                                                               Adaptation
## 4554                                                                                                                                             Eating Raoul
## 4555                                                                                                                                         Intact (Intacto)
## 4556                                                                                                                   Lord of the Rings: The Two Towers, The
## 4557                                                                                                                                                25th Hour
## 4558                                                                                                                                        Gangs of New York
## 4559                                                                                                                    My Neighbor Totoro (Tonari no Totoro)
## 4560                                                                                                                                      Catch Me If You Can
## 4561                                                                                                                                                  Chicago
## 4562                                                                                                                                               Hours, The
## 4563                                                                                                                                             Pianist, The
## 4564                                                                                                                                      King of Comedy, The
## 4565                                                                                                                                       Son, The (Le fils)
## 4566                                                                                                                             City of God (Cidade de Deus)
## 4567                                                                                                                                                    Gerry
## 4568                                                                                                                                                   Spider
## 4569                                                                                                                              Irreversible (Irréversible)
## 4570                                                                                                                                     Bend It Like Beckham
## 4571                                                                                                                      Europa Europa (Hitlerjunge Salomon)
## 4572                                                                                                                                              Phone Booth
## 4573                                                                                                                                                 Identity
## 4574                                                                                                                                         X2: X-Men United
## 4575                                                                                                                                     Matrix Reloaded, The
## 4576                                                                                                                                             Finding Nemo
## 4577                                                                                                                    White Sheik, The (Sceicco bianco, Lo)
## 4578                                                                                                                                               Intervista
## 4579                                                                                                                                              Barton Fink
## 4580                                                                                                                       Terminator 3: Rise of the Machines
## 4581                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 4582                                                                                                                                      Dirty Pretty Things
## 4583                                                                                                                                   Magdalene Sisters, The
## 4584                                                                                                                                                Accattone
## 4585                                                                                                                                               Umberto D.
## 4586                                                                                                                                        American Splendor
## 4587                                                                                           Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 4588                                                                                                                           Tokyo Story (Tôkyô monogatari)
## 4589                                                                            Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 4590                                                                                                                                                    Ikiru
## 4591                                                                                                                                           Matchstick Men
## 4592                                                                                                                               Once Upon a Time in Mexico
## 4593                                                                                                                                      Lost in Translation
## 4594                                                                                                                 Rules of the Game, The (La règle du jeu)
## 4595                                                                                                                                  All the President's Men
## 4596                                                                                                                                          Boyz N the Hood
## 4597                                                                                                                       Monty Python's The Meaning of Life
## 4598                                                                                                                                       Station Agent, The
## 4599                                                                                                                                             Mystic River
## 4600                                                                                                                                      Intolerable Cruelty
## 4601                                                                                                                                        Kill Bill: Vol. 1
## 4602                                                                                                                                          Pieces of April
## 4603                                                                                                                                                 Elephant
## 4604                                                                                                                            Unvanquished, The (Aparajito)
## 4605                                                                                                                                          Shattered Glass
## 4606                                                                                                                                  Matrix Revolutions, The
## 4607                                                                                                                                      Father of the Bride
## 4608                                                                                                          Master and Commander: The Far Side of the World
## 4609                                                                                                                                                 21 Grams
## 4610                                                                                                        Barbarian Invasions, The (Les invasions barbares)
## 4611                                                                                                                                              Funny Games
## 4612                                                                                                                                        Ordet (Word, The)
## 4613                                                                                                                         Forbidden Games (Jeux interdits)
## 4614                                                                                                Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La)
## 4615                                                                                            Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 4616                                                                                                                                   Hannah and Her Sisters
## 4617                                                                                                                                         Kindergarten Cop
## 4618                                                                                                              Last Tango in Paris (Ultimo tango a Parigi)
## 4619                                                                                                                                 Night of the Hunter, The
## 4620                                                                                                               Things You Can Tell Just by Looking at Her
## 4621                                                                                                                               Betty Blue (37°2 le matin)
## 4622                                                                                                     Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 4623                                                                                                                                                Red River
## 4624                                                                                                                                               Stagecoach
## 4625                                                                                                                              Black Orpheus (Orfeu Negro)
## 4626                                                                                                                                        Hero (Ying xiong)
## 4627                                                                                                                                                     1941
## 4628                                                                                                                                    Night at the Opera, A
## 4629                                                                                                                            Stolen Kisses (Baisers volés)
## 4630                                                                                                                                               In America
## 4631                                                                                                                                                 Big Fish
## 4632                                                                                                           Lord of the Rings: The Return of the King, The
## 4633                                                                                                                                                  Monster
## 4634                                                                                                                                     Cheaper by the Dozen
## 4635                                                                                                                                            Cold Mountain
## 4636                                                                                                                                               Strada, La
## 4637                                                                                                                                            Dreamers, The
## 4638                                                                                                                                         Good bye, Lenin!
## 4639                                                                                                                                            Secret Window
## 4640                                                                                                                    Eternal Sunshine of the Spotless Mind
## 4641                                                                                                                                                 Dogville
## 4642                                                                                                                                              After Hours
## 4643                                                                                                                                        Kill Bill: Vol. 2
## 4644                                                                                                                                                     Troy
## 4645                                                                                                                                      You Only Live Twice
## 4646                                                                                                                               Samouraï, Le (Godson, The)
## 4647                                                                                                                                               Cat People
## 4648                                                                                                                                           Pierrot le fou
## 4649                                                                                                                                               Nostalghia
## 4650                                                                                                                            Throne of Blood (Kumonosu jô)
## 4651                                                                                                                          Zorba the Greek (Alexis Zorbas)
## 4652                                                                                                                 Summer with Monika (Sommaren med Monika)
## 4653                                                                                                                 Dark Water (Honogurai mizu no soko kara)
## 4654                                                                                                                                             Mean Streets
## 4655                                                                                                                            Sunrise: A Song of Two Humans
## 4656                                                                                                                                           Dolce Vita, La
## 4657                                                                                                                           Avventura, L' (Adventure, The)
## 4658                                                                                                                                                Viridiana
## 4659                                                                                                                                          Black Narcissus
## 4660                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 4661                                                                                                                                        Napoleon Dynamite
## 4662                                                                                                                                            Super Size Me
## 4663                                                                                                                                                   Freaks
## 4664                                                                                                                                            Terminal, The
## 4665                                                                                                                                             Spider-Man 2
## 4666                                                                                                    Short Film About Killing, A (Krótki film o zabijaniu)
## 4667                                                                                                         Motorcycle Diaries, The (Diarios de motocicleta)
## 4668                                                                                                                                        I Heart Huckabees
## 4669                                                                                                                                                 Sideways
## 4670                                                                                                                                                 Undertow
## 4671                                                                                                                                                      Ray
## 4672                                                                                                                                                   Kinsey
## 4673                                                                                                                                        Finding Neverland
## 4674                                                                                                                        Bad Education (La mala educación)
## 4675                                                                                                                                           Ocean's Twelve
## 4676                                                                                                                                                    Greed
## 4677                                                                                                                                      Steamboat Bill, Jr.
## 4678                                                                                                                                             Atalante, L'
## 4679                                                                                                                                               Pickpocket
## 4680                                                                                                          Battle of Algiers, The (La battaglia di Algeri)
## 4681                                                                                                                                                     Duel
## 4682                                                                                                              Hearts of Darkness: A Filmmakers Apocalypse
## 4683                                                                                                                                                     2046
## 4684                                                                                                                                       Audition (Ôdishon)
## 4685                                                                                                Very Long Engagement, A (Un long dimanche de fiançailles)
## 4686                                                                                                                            Sea Inside, The (Mar adentro)
## 4687                                                                                                                                      Million Dollar Baby
## 4688                                                                                                                                             Hotel Rwanda
## 4689                                                                                                                        Charlie and the Chocolate Factory
## 4690                                                                                                                                             Aviator, The
## 4691                                                                                                                                            Woodsman, The
## 4692                                                                                                                                                  Stander
## 4693                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 4694                                                                                                                                                 Sin City
## 4695                                                                                              Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo)
## 4696                                                                                                                                        Kingdom of Heaven
## 4697                                                                                                                                                    Crash
## 4698                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 4699                                                                                                                                            Batman Begins
## 4700                                                                                                            Edukators, The (Die Fetten Jahre sind vorbei)
## 4701                                                                                                                                        War of the Worlds
## 4702                                                                                                                                               Dark Water
## 4703                                                                                                                                                Last Days
## 4704                                                                                                                                           Broken Flowers
## 4705                                                                                                                                   Constant Gardener, The
## 4706                                                                                                                                              Lord of War
## 4707                                                                                                                                Everything Is Illuminated
## 4708                                                                                                                                   History of Violence, A
## 4709                                                                                                                                             Oliver Twist
## 4710                                                                                                                                                   Capote
## 4711                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 4712                                                                                                                                       Brokeback Mountain
## 4713                                                                                                                                            Elizabethtown
## 4714                                                                                                                               Good Night, and Good Luck.
## 4715                                                                                                                                                Manderlay
## 4716                                                                                                                                                  Jarhead
## 4717                                                                                                                                                  Syriana
## 4718                                                                                                                                        Pride & Prejudice
## 4719                                                                                                                      Harry Potter and the Goblet of Fire
## 4720                                                                                                                                            Walk the Line
## 4721                                                                                                                                              Match Point
## 4722                                                                                                                                                King Kong
## 4723                                                                                                                                      Memoirs of a Geisha
## 4724                                                                                                                 Three Burials of Melquiades Estrada, The
## 4725                                                                                                                                                   Munich
## 4726                                                                                                                                             Transamerica
## 4727                                                                                                                                           New World, The
## 4728                                                                                                                                              Hoodwinked!
## 4729                                                                                                                                           V for Vendetta
## 4730                                                                                                                                                   Tsotsi
## 4731                                                                                                                                  Mission: Impossible III
## 4732                                                                                                                                       Da Vinci Code, The
## 4733                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 4734                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 4735                                                                                                                                                     Heat
## 4736                                                                                                                                         Dead Man Walking
## 4737                                                                                                                  Things to Do in Denver When You're Dead
## 4738                                                                                                                                             Broken Arrow
## 4739                                                                                                                                                Apollo 13
## 4740                                                                                                                               Die Hard: With a Vengeance
## 4741                                                                                                                                             Pulp Fiction
## 4742                                                                                                                                                 Stargate
## 4743                                                                                                                                             Forrest Gump
## 4744                                                                                                                                                True Lies
## 4745                                                                                                                                            Fugitive, The
## 4746                                                                                                                                                  Aladdin
## 4747                                                                                                                                       Dances with Wolves
## 4748                                                                                                                                                   Batman
## 4749                                                                                                                                              Heavy Metal
## 4750                                                                                                                                      Mission: Impossible
## 4751                                                                                                                                                  Twister
## 4752                                                                                                                            Independence Day (a.k.a. ID4)
## 4753                                                                                                                                                   Eraser
## 4754                                                                                                                                                  Freeway
## 4755                                                                                                                        Tin Drum, The (Blechtrommel, Die)
## 4756                                                                                                                                         Grumpier Old Men
## 4757                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 4758                                                                                                                                      Crossing Guard, The
## 4759                                                                                                                                            Happy Gilmore
## 4760                                                                                                                       Star Wars: Episode IV - A New Hope
## 4761                                                                                                                                       Executive Decision
## 4762                                                                                                                                                    Fargo
## 4763                                                                                                                                              Dragonheart
## 4764                                                                                                                            Kids in the Hall: Brain Candy
## 4765                                                                                                                                         Mulholland Falls
## 4766                                                                                                                                            Trainspotting
## 4767                                                                                                                            Independence Day (a.k.a. ID4)
## 4768                                                                                                                                           Cable Guy, The
## 4769                                                                                                                                                   Eraser
## 4770                                                                                                                                     Nutty Professor, The
## 4771                                                                                                                                               Phenomenon
## 4772                                                                                                                                                   Ransom
## 4773                                                                                                         Tales from the Crypt Presents: Bordello of Blood
## 4774                                                                                                                      Willy Wonka & the Chocolate Factory
## 4775                                                                                                                                       Breaking the Waves
## 4776                                                                                                                                 Star Trek: First Contact
## 4777                                                                                                                                              Sling Blade
## 4778                                                                                                                                            Mars Attacks!
## 4779                                                                                                                          Beavis and Butt-Head Do America
## 4780                                                                                                                                                  Michael
## 4781                                                                                                                                                    Crash
## 4782                                                                                                                                                Toy Story
## 4783                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 4784                                                                                                                                     Seven (a.k.a. Se7en)
## 4785                                                                                                                                      Usual Suspects, The
## 4786                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 4787                                                                                                                                                   Friday
## 4788                                                                                                                                           Batman Forever
## 4789                                                                                                                               Die Hard: With a Vengeance
## 4790                                                                                                                       Star Wars: Episode IV - A New Hope
## 4791                                                                                                                                             Pulp Fiction
## 4792                                                                                                                                                 Stargate
## 4793                                                                                                                                Shawshank Redemption, The
## 4794                                                                                                                               Ace Ventura: Pet Detective
## 4795                                                                                                                                             Forrest Gump
## 4796                                                                                                                                                Mask, The
## 4797                                                                                                                                                    Speed
## 4798                                                                                                                                                True Lies
## 4799                                                                                                                                            Fugitive, The
## 4800                                                                                                                                            Jurassic Park
## 4801                                                                                                                                           Mrs. Doubtfire
## 4802                                                                                                                                             True Romance
## 4803                                                                                                                               Terminator 2: Judgment Day
## 4804                                                                                                                                Silence of the Lambs, The
## 4805                                                                                                                                                    Fargo
## 4806                                                                                                                                      Mission: Impossible
## 4807                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 4808                                                                                                                                                Rock, The
## 4809                                                                                                                                            Trainspotting
## 4810                                                                                                                            Independence Day (a.k.a. ID4)
## 4811                                                                                                                                           Godfather, The
## 4812                                                                                                                                                 Die Hard
## 4813                                                                                                                                           Reservoir Dogs
## 4814                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 4815                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 4816                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 4817                                                                                                                          Beavis and Butt-Head Do America
## 4818                                                                                                                                       Fifth Element, The
## 4819                                                                                                                                Men in Black (a.k.a. MIB)
## 4820                                                                                                                                                  Gattaca
## 4821                                                                                                                                              Jackal, The
## 4822                                                                                                                                        Big Lebowski, The
## 4823                                                                                                                                               Half Baked
## 4824                                                                                                                                            Lost in Space
## 4825                                                                                                                           Fear and Loathing in Las Vegas
## 4826                                                                                                                                      Saving Private Ryan
## 4827                                                                                                                                       American History X
## 4828                                                                                                                                            Bug's Life, A
## 4829                                                                                                                        Lock, Stock & Two Smoking Barrels
## 4830                                                                                                                                              Matrix, The
## 4831                                                                                                                                Run Lola Run (Lola rennt)
## 4832                                                                                                                                          American Beauty
## 4833                                                                                                                                               Fight Club
## 4834                                                                                                                                         Fisher King, The
## 4835                                                                                                                                              Toy Story 2
## 4836                                                                                                                                          Green Mile, The
## 4837                                                                                                                                     Boondock Saints, The
## 4838                                                                                                                                            High Fidelity
## 4839                                                                                                                                                Gladiator
## 4840                                                                                                                                                    Shaft
## 4841                                                                                                                                                   Snatch
## 4842                                                                                                                                        Finding Forrester
## 4843                                                                                                                               O Brother, Where Art Thou?
## 4844                                                                                                                                             Mexican, The
## 4845                                                                                                                                                  Memento
## 4846                                                                                                                                                 Scarface
## 4847                                                                                                                                                    Shrek
## 4848                                                                                                                                             Training Day
## 4849                                                                                                                                                  Bandits
## 4850                                                                                                                                                From Hell
## 4851                                                                                                                                           Ocean's Eleven
## 4852                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4853                                                                                                                                    Royal Tenenbaums, The
## 4854                                                                                                                                        Beautiful Mind, A
## 4855                                                                                                                                          Black Hawk Down
## 4856                                                                                                                                           Super Troopers
## 4857                                                                                                                                                  Ice Age
## 4858                                                                                                                                     Bourne Identity, The
## 4859                                                                                                                         Das Experiment (Experiment, The)
## 4860                                                                                                                                                Secretary
## 4861                                                                                                                                              Equilibrium
## 4862                                                                                                                   Lord of the Rings: The Two Towers, The
## 4863                                                                                                                                                25th Hour
## 4864                                                                                                                                      Catch Me If You Can
## 4865                                                                                                                             City of God (Cidade de Deus)
## 4866                                                                                                                                         X2: X-Men United
## 4867                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 4868                                                                                                                                           Matchstick Men
## 4869                                                                                                                                       Station Agent, The
## 4870                                                                                                                                             Mystic River
## 4871                                                                                                                                        Kill Bill: Vol. 1
## 4872                                                                                                                                         Good bye, Lenin!
## 4873                                                                                                                    Eternal Sunshine of the Spotless Mind
## 4874                                                                                                                                        Kill Bill: Vol. 2
## 4875                                                                                                                                              Man on Fire
## 4876                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 4877                                                                                                                                    Bourne Supremacy, The
## 4878                                                                                                                                             Garden State
## 4879                                                                                                                                               Collateral
## 4880                                                                                                                                        Shaun of the Dead
## 4881                                                                                                                                         Incredibles, The
## 4882                                                                                                                                Tunnel, The (Tunnel, Der)
## 4883                                                                                                                                               Layer Cake
## 4884                                                                                                                      Life Aquatic with Steve Zissou, The
## 4885                                                                                                                                Downfall (Untergang, Der)
## 4886                                                                                                                                 Kung Fu Hustle (Gong fu)
## 4887                                                                                                                                                 Sin City
## 4888                                                                                                                                            Batman Begins
## 4889                                                                                                                                           Broken Flowers
## 4890                                                                                                                                              Lord of War
## 4891                                                                                                                Green Street Hooligans (a.k.a. Hooligans)
## 4892                                                                                                                                                   Capote
## 4893                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 4894                                                                                                                                      Kiss Kiss Bang Bang
## 4895                                                                                                                                                   Munich
## 4896                                                                                                                                           V for Vendetta
## 4897                                                                                                                                    Thank You for Smoking
## 4898                                                                                                                                               Inside Man
## 4899                                                                                                                                      Lucky Number Slevin
## 4900                                                                                                                                    Stranger than Fiction
## 4901                                                                                                                                         Illusionist, The
## 4902                                                                                                                                            Departed, The
## 4903                                                                                                                                          Children of Men
## 4904                                                                                                                                            Prestige, The
## 4905                                                                                                                                            Casino Royale
## 4906                                                                                                                                        Déjà Vu (Deja Vu)
## 4907                                                                                                                                            Blood Diamond
## 4908                                                                                                                                          Cocaine Cowboys
## 4909                                                                                                                                              Ratatouille
## 4910                                                                                                                                                 Hot Fuzz
## 4911                                                                                                                                                      300
## 4912                                                                                                                                                 Fracture
## 4913                                                                                                                                          This Is England
## 4914                                                                                                                                               Mr. Brooks
## 4915                                                                                                                                    Live Free or Die Hard
## 4916                                                                                                                                    Bourne Ultimatum, The
## 4917                                                                                                                                                 Superbad
## 4918                                                                                                                                         Eastern Promises
## 4919                                                                                                                        Tekkonkinkreet (Tekkon kinkurîto)
## 4920                                                                                                                                            Into the Wild
## 4921                                                                                                                                          Michael Clayton
## 4922                                                                                                                                   Lars and the Real Girl
## 4923                                                                                                                                        American Gangster
## 4924                                                                                                                                   No Country for Old Men
## 4925                                                                                                                                      There Will Be Blood
## 4926                                                                                                                                                In Bruges
## 4927                                                                                                                                         Dark Knight, The
## 4928                                                                                                                                                 Iron Man
## 4929                                                                                                                                                    Taken
## 4930                                                                                                                                                Fall, The
## 4931                                                                                                                                            Kung Fu Panda
## 4932                                                                                                                                                   WALL·E
## 4933                                                                                                                                                 Watchmen
## 4934                                                                                                                                        Pineapple Express
## 4935                                                                                                                                       Burn After Reading
## 4936                                                                                                                                               RocknRolla
## 4937                                                                                                                                      Slumdog Millionaire
## 4938                                                                                                                                                   Ip Man
## 4939                                                                                                                                              In the Loop
## 4940                                                                                                                                     Inglourious Basterds
## 4941                                                                                                                                                Star Trek
## 4942                                                                                                                                                       Up
## 4943                                                                                                                                            Hangover, The
## 4944                                                                                      Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 4945                                                                                                                                           Serious Man, A
## 4946                                                                                                                                                   Avatar
## 4947                                                                                                                                          Sherlock Holmes
## 4948                                                                                                                                             Soul Kitchen
## 4949                                                                                                                                                Inception
## 4950                                                                                                                                                Town, The
## 4951                                                                                                                                                True Grit
## 4952                                                                                                                       Sherlock Holmes: A Game of Shadows
## 4953                                                                                                                                             Intouchables
## 4954                                                                                                                                      Usual Suspects, The
## 4955                                                                                                                                          Misérables, Les
## 4956                                                                                                                                              Taxi Driver
## 4957                                                                                                                                             Pulp Fiction
## 4958                                                                                                                                         Schindler's List
## 4959                                                                                                                                Silence of the Lambs, The
## 4960                                                                                                                                               Goodfellas
## 4961                                                                                                                                                Cape Fear
## 4962                                                                                                                                                  Contact
## 4963                                                                                                                                Hunt for Red October, The
## 4964                                                                                                                                              Chasing Amy
## 4965                                                                                                                                        Good Will Hunting
## 4966                                                                                                                                                  Titanic
## 4967                                                                                                                                        Perfect Murder, A
## 4968                                                                                                                                                Celebrity
## 4969                                                                                                                                           Simple Plan, A
## 4970                                                                                                                                      Shakespeare in Love
## 4971                                                                                                                                              October Sky
## 4972                                                                                                                                             Office Space
## 4973                                                                                                                                 Blair Witch Project, The
## 4974                                                                                                                                           Eyes Wide Shut
## 4975                                                                                                                                         Sixth Sense, The
## 4976                                                                                                                                          American Beauty
## 4977                                                                                                                                               Get Shorty
## 4978                                                                                                                               Postman, The (Postino, Il)
## 4979                                                                                                                                               Braveheart
## 4980                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 4981                                                                                                                                  Philadelphia Story, The
## 4982                                                                                                                                      Singin' in the Rain
## 4983                                                                                                                                   Breakfast at Tiffany's
## 4984                                                                                                                                                  Vertigo
## 4985                                                                                                                                              Rear Window
## 4986                                                                                                                                       North by Northwest
## 4987                                                                                                                                           Apartment, The
## 4988                                                                                                                                      Maltese Falcon, The
## 4989                                                                                                                                       Gone with the Wind
## 4990                                                                                                                                    2001: A Space Odyssey
## 4991                                                                                                                                            All About Eve
## 4992                                                                                                                                         To Catch a Thief
## 4993                                                                                                                                    It's a Wonderful Life
## 4994                                                                                                                     William Shakespeare's Romeo + Juliet
## 4995                                                                                                                                     Fish Called Wanda, A
## 4996                                                                                                                                         Crying Game, The
## 4997                                                                                                                                             12 Angry Men
## 4998                                                                                                                                      Clockwork Orange, A
## 4999                                                                                                                                                   Psycho
## 5000                                                                                                                                                  Amadeus
## 5001                                                                                                                            Bridge on the River Kwai, The
## 5002                                                                                                                                                Chinatown
## 5003                                                                                                                                Manchurian Candidate, The
## 5004                                                                                                                                      Room with a View, A
## 5005                                                                                                                     My Life as a Dog (Mitt liv som hund)
## 5006                                                                                                                                            Crucible, The
## 5007                                                                                                                                Hunt for Red October, The
## 5008                                                                                                                                        L.A. Confidential
## 5009                                                                                                                                                  Witness
## 5010                                                                                                                                            Lost in Space
## 5011                                                                                                                                                 Bulworth
## 5012                                                                                                                                        On the Waterfront
## 5013                                                                                                                                          Ordinary People
## 5014                                                                                                                                       Driving Miss Daisy
## 5015                                                                                                                     Seven Samurai (Shichinin no samurai)
## 5016                                                                                                                                      Saving Private Ryan
## 5017                                                                                                                                                Jerk, The
## 5018                                                                                                                                                 Lifeboat
## 5019                                                                                                                                      Edward Scissorhands
## 5020                                                                                                                                           Producers, The
## 5021                                                                                                                      Life Is Beautiful (La Vita è bella)
## 5022                                                                                                                                      Romancing the Stone
## 5023                                                                                                                                         Crocodile Dundee
## 5024                                                                                                                                              Matrix, The
## 5025                                                                                                                                         Cookie's Fortune
## 5026                                                                                                                                   War of the Worlds, The
## 5027                                                                                                                                            Trainspotting
## 5028                                                                                                                                 My Best Friend's Wedding
## 5029                                                                                                                              Mortal Kombat: Annihilation
## 5030                                                                                                                                                 Scream 2
## 5031                                                                                                                                Purple Rose of Cairo, The
## 5032                                                                                                                                                King Kong
## 5033                                                                                                                                    Babe: Pig in the City
## 5034                                                                                                                             Texas Chainsaw Massacre, The
## 5035                                                                                                                                             Pet Sematary
## 5036                                                                                                                                              Matrix, The
## 5037                                                                                                                                              Lake Placid
## 5038                                                                                                                                          Ghostbusters II
## 5039                                                                                                                                               Flashdance
## 5040                                                                                                                                                 Sunshine
## 5041                                                                                                                                  Mothman Prophecies, The
## 5042                                                                                                                                     Matrix Reloaded, The
## 5043                                                                                                                                            28 Days Later
## 5044                                                                                                                                  Matrix Revolutions, The
## 5045                                                                                                                                               Open Water
## 5046                                                                                                                                                      300
## 5047                                                                                                                                         Dark Knight, The
## 5048                                                                                                                                              Daybreakers
## 5049                                                                                                                                                Toy Story
## 5050                                                                                                                                                  Jumanji
## 5051                                                                                                                                                     Heat
## 5052                                                                                                                                             Tom and Huck
## 5053                                                                                                                                  American President, The
## 5054                                                                                                                                                    Nixon
## 5055                                                                                                                                                   Casino
## 5056                                                                                                                                               Four Rooms
## 5057                                                                                                                                               Get Shorty
## 5058                                                                                                                                                Assassins
## 5059                                                                                                                                        Leaving Las Vegas
## 5060                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 5061                                                                                                                                                     Babe
## 5062                                                                                                                                          Dead Presidents
## 5063                                                                                                                                               To Die For
## 5064                                                                                                                                     Seven (a.k.a. Se7en)
## 5065                                                                                                                                      Usual Suspects, The
## 5066                                                                                                                                         Mighty Aphrodite
## 5067                                                                                                                              Indian in the Cupboard, The
## 5068                                                                                                                                      From Dusk Till Dawn
## 5069                                                                                                                                      Crossing Guard, The
## 5070                                                                                                                                                City Hall
## 5071                                                                                                                                               Braveheart
## 5072                                                                                                                                              Taxi Driver
## 5073                                                                                                                                             If Lucy Fell
## 5074                                                                                                                                            Birdcage, The
## 5075                                                                                                                                                Apollo 13
## 5076                                                                                                                                                   Casper
## 5077                                                                                                                                             Crimson Tide
## 5078                                                                                                                                                    Crumb
## 5079                                                                                                                               Die Hard: With a Vengeance
## 5080                                                                                                                                                  Hackers
## 5081                                                                                                                                                  Species
## 5082                                                                                                         To Wong Foo, Thanks for Everything! Julie Newmar
## 5083                                                                                                                                               Waterworld
## 5084                                                                                                                                       White Man's Burden
## 5085                                                                                                                                         Don Juan DeMarco
## 5086                                                                                                                                                Drop Zone
## 5087                                                                                                                               Destiny Turns on the Radio
## 5088                                                                                                                                                  Ed Wood
## 5089                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 5090                                                                                                                                       Jefferson in Paris
## 5091                                                                                                                       Star Wars: Episode IV - A New Hope
## 5092                                                                                                                                             Little Women
## 5093                                                                                                                              Madness of King George, The
## 5094                                                                                                                                            Nobody's Fool
## 5095                                                                                                                                                     Nell
## 5096                                                                                                                                     Natural Born Killers
## 5097                                                                                                                                             Pulp Fiction
## 5098                                                                                                                                                Quiz Show
## 5099                                                                                                                                        Santa Clause, The
## 5100                                                                                                                                Shawshank Redemption, The
## 5101                                                                                                                              What's Eating Gilbert Grape
## 5102                                                                                                                               Ace Ventura: Pet Detective
## 5103                                                                                                                                    Bullets Over Broadway
## 5104                                                                                                                                 Clear and Present Danger
## 5105                                                                                                                                              Client, The
## 5106                                                                                                                                             Forrest Gump
## 5107                                                                                                                              Four Weddings and a Funeral
## 5108                                                                                                                                           Lion King, The
## 5109                                                                                                                                                 Maverick
## 5110                                                                                                                       Mrs. Parker and the Vicious Circle
## 5111                                                                                                                                               Paper, The
## 5112                                                                                                                                                    Speed
## 5113                                                                                                                                                True Lies
## 5114                                                                                                                                                     Wolf
## 5115                                                                                                                                     Addams Family Values
## 5116                                                                                                                                    Age of Innocence, The
## 5117                                                                                                                                                 Airheads
## 5118                                                                                                                                 Beverly Hillbillies, The
## 5119                                                                                                                                               Blue Chips
## 5120                                                                                                                                                 Blue Sky
## 5121                                                                                                                                           Body Snatchers
## 5122                                                                                                                                            Bronx Tale, A
## 5123                                                                                                             City Slickers II: The Legend of Curly's Gold
## 5124                                                                                                                                              Cliffhanger
## 5125                                                                                                                                                     Dave
## 5126                                                                                                                                           Fatal Instinct
## 5127                                                                                                                                           Flesh and Bone
## 5128                                                                                                                                                Firm, The
## 5129                                                                                                                                            Fugitive, The
## 5130                                                                                                                                             Getaway, The
## 5131                                                                                                                                            Guilty as Sin
## 5132                                                                                                                                     Hudsucker Proxy, The
## 5133                                                                                                                                         I'll Do Anything
## 5134                                                                                                                                      In the Line of Fire
## 5135                                                                                                                           What's Love Got to Do with It?
## 5136                                                                                                                                            Jurassic Park
## 5137                                                                                                                                         Last Action Hero
## 5138                                                                                                                                 Manhattan Murder Mystery
## 5139                                                                                                                                           Mrs. Doubtfire
## 5140                                                                                                                                         Perfect World, A
## 5141                                                                                                                                             Philadelphia
## 5142                                                                                                                                               Piano, The
## 5143                                                                                                                                  Remains of the Day, The
## 5144                                                                                                                                               Rising Sun
## 5145                                                                                                                                   Road to Wellville, The
## 5146                                                                                                                                         Ruby in Paradise
## 5147                                                                                                                                         Schindler's List
## 5148                                                                                                                                       Secret Garden, The
## 5149                                                                                                                                               Serial Mom
## 5150                                                                                                                                              Shadowlands
## 5151                                                                                                                                               Short Cuts
## 5152                                                                                                                                Six Degrees of Separation
## 5153                                                                                                                                     Sleepless in Seattle
## 5154                                                                                                                                                   Sliver
## 5155                                                                                                                                             Blade Runner
## 5156                                                                                                                                                Tombstone
## 5157                                                                                                                                             True Romance
## 5158                                                                                                                                            War Room, The
## 5159                                                                                                                                    Celluloid Closet, The
## 5160                                                                                                                                               Home Alone
## 5161                                                                                                                                                    Ghost
## 5162                                                                                                                                                  Aladdin
## 5163                                                                                                                               Terminator 2: Judgment Day
## 5164                                                                                                                                       Dances with Wolves
## 5165                                                                                                                                                   Batman
## 5166                                                                                                                                Silence of the Lambs, The
## 5167                                                                                                                          Snow White and the Seven Dwarfs
## 5168                                                                                                                                     Beauty and the Beast
## 5169                                                                                                                                                Pinocchio
## 5170                                                                                                                                             Pretty Woman
## 5171                                                                                                                                                    Fargo
## 5172                                                                                                                                              Primal Fear
## 5173                                                                                                                                               Diabolique
## 5174                                                                                                                                       Courage Under Fire
## 5175                                                                                                                                James and the Giant Peach
## 5176                                                                                                                                         Mulholland Falls
## 5177                                                                                                                                                Rock, The
## 5178                                                                                                                                                  Twister
## 5179                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 5180                                                                                                                                               Striptease
## 5181                                                                                                                                                     Jack
## 5182                                                                                                                                          Grass Harp, The
## 5183                                                                                                                            Independence Day (a.k.a. ID4)
## 5184                                                                                                                                                 Fan, The
## 5185                                                                                                                                                Lone Star
## 5186                                                                                                                                          Time to Kill, A
## 5187                                                                                                                                         American Buffalo
## 5188                                                                                                                                                   Ransom
## 5189                                                                                                                                           Godfather, The
## 5190                                                                                                                                              Kansas City
## 5191                                                                                                                                  Philadelphia Story, The
## 5192                                                                                                                                      Singin' in the Rain
## 5193                                                                                                                                                  Vertigo
## 5194                                                                                                                                              Rear Window
## 5195                                                                                                                                       North by Northwest
## 5196                                                                                                                                               Casablanca
## 5197                                                                                                                                      Maltese Falcon, The
## 5198                                                                                                                                             My Fair Lady
## 5199                                                                                                                                        Wizard of Oz, The
## 5200                                                                                                                                       Gone with the Wind
## 5201                                                                                                                                         My Favorite Year
## 5202                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 5203                                                                                                                                             Citizen Kane
## 5204                                                                                                                                    2001: A Space Odyssey
## 5205                                                                                                                                                  Rebecca
## 5206                                                                                                                                           My Man Godfrey
## 5207                                                                                                                                            Thin Man, The
## 5208                                                                                                                                    It's a Wonderful Life
## 5209                                                                                                                             Mr. Smith Goes to Washington
## 5210                                                                                                                                       African Queen, The
## 5211                                                                                                                                    Cat on a Hot Tin Roof
## 5212                                                                                                                                        Last Man Standing
## 5213                                                                                                                                             Chamber, The
## 5214                                                                                                                                            Love Bug, The
## 5215                                                                                                                                               Old Yeller
## 5216                                                                                                                                         Parent Trap, The
## 5217                                                                                                                                    Swiss Family Robinson
## 5218                                                                                                                                           That Darn Cat!
## 5219                                                                                                                                  Sword in the Stone, The
## 5220                                                                                                                            Robin Hood: Prince of Thieves
## 5221                                                                                                                                             Mary Poppins
## 5222                                                                                                                                      Sound of Music, The
## 5223                                                                                                                                                 Die Hard
## 5224                                                                                                                                       That Thing You Do!
## 5225                                                                                                                                                 Sleepers
## 5226                                                                                                                      Willy Wonka & the Chocolate Factory
## 5227                                                                                                                                                  Bananas
## 5228                                                                                                                                     Fish Called Wanda, A
## 5229                                                                                                                                          Victor/Victoria
## 5230                                                                                                                                           Candidate, The
## 5231                                                                                                                                         Bonnie and Clyde
## 5232                                                                                                                                        Dial M for Murder
## 5233                                                                                                                                            Dirty Dancing
## 5234                                                                                                                                           Reservoir Dogs
## 5235                                                                                                                                                  Platoon
## 5236                                                                                                                                      Weekend at Bernie's
## 5237                                                                                                                                           Basic Instinct
## 5238                                                                                                                                               Doors, The
## 5239                                                                                                                                         Crying Game, The
## 5240                                                                                                                                      Glengarry Glen Ross
## 5241                                                                                                                                          Sophie's Choice
## 5242                                                                                                                               E.T. the Extra-Terrestrial
## 5243                                                                                                                                                  Top Gun
## 5244                                                                                                                                Streetcar Named Desire, A
## 5245                                                                                                                                             Funeral, The
## 5246                                                                                                                              People vs. Larry Flynt, The
## 5247                                                                                                                                           On Golden Pond
## 5248                                                                                                                                           Drop Dead Fred
## 5249                                                                                                                                     Escape from New York
## 5250                                                                                                                                         Private Benjamin
## 5251                                                                                                                                              Bob Roberts
## 5252                                                                                                                                            Grifters, The
## 5253                                                                                                                                             Shooter, The
## 5254                                                                                                                                 Sex, Lies, and Videotape
## 5255                                                                                                                                      Thin Blue Line, The
## 5256                                                                                                                          One Flew Over the Cuckoo's Nest
## 5257                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 5258                                                                                                                                      Princess Bride, The
## 5259                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 5260                                                                                                                                                   Aliens
## 5261                                                                                                                                      Clockwork Orange, A
## 5262                                                                                                                                    To Kill a Mockingbird
## 5263                                                                                                                                           Apocalypse Now
## 5264                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 5265                                                                                                                                           Third Man, The
## 5266                                                                                                                                               Goodfellas
## 5267                                                                                                                                                    Alien
## 5268                                                                                                                                                   Psycho
## 5269                                                                                                                                      Blues Brothers, The
## 5270                                                                                                                                  Godfather: Part II, The
## 5271                                                                                                                                        Full Metal Jacket
## 5272                                                                                                                                                  Amadeus
## 5273                                                                                                                                           Quiet Man, The
## 5274                                                                                                                              Once Upon a Time in America
## 5275                                                                                                                                              Raging Bull
## 5276                                                                                                                                         Right Stuff, The
## 5277                                                                                                                                               Sting, The
## 5278                                                                                                                                         Harold and Maude
## 5279                                                                                                                                          Terminator, The
## 5280                                                                                                                                                    Glory
## 5281                                                                                                                                                Manhattan
## 5282                                                                                                                                        Miller's Crossing
## 5283                                                                                                                                       Dead Poets Society
## 5284                                                                                                                                            Graduate, The
## 5285                                                                                                                            Bridge on the River Kwai, The
## 5286                                                                                                                                                Chinatown
## 5287                                                                                                                                             Shining, The
## 5288                                                                                                                                              Stand by Me
## 5289                                                                                                                                         Deer Hunter, The
## 5290                                                                                                                                            Groundhog Day
## 5291                                                                                                                                               Unforgiven
## 5292                                                                                                                                Manchurian Candidate, The
## 5293                                                                                                                                       Back to the Future
## 5294                                                                                                                                     Fried Green Tomatoes
## 5295                                                                                                                                                   Patton
## 5296                                                                                                                                           Cool Hand Luke
## 5297                                                                                                                                       Cyrano de Bergerac
## 5298                                                                                                                                       Young Frankenstein
## 5299                                                                                                                                                High Noon
## 5300                                                                                                                                                 Heathers
## 5301                                                                                                                                        Somewhere in Time
## 5302                                                                                                                       Indiana Jones and the Last Crusade
## 5303                                                                                                                                              Being There
## 5304                                                                                                                                          Field of Dreams
## 5305                                                                                                                               Man Who Would Be King, The
## 5306                                                                                                                       Butch Cassidy and the Sundance Kid
## 5307                                                                                                                                  When Harry Met Sally...
## 5308                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 5309                                                                                                                          American Werewolf in London, An
## 5310                                                                                                                                   Amityville Horror, The
## 5311                                                                                                                                           Believers, The
## 5312                                                                                                                                               Birds, The
## 5313                                                                                                                                                Blob, The
## 5314                                                                                                                          Dracula (Bram Stoker's Dracula)
## 5315                                                                                                                                                Cape Fear
## 5316                                                                                                                                                   Carrie
## 5317                                                                                                                                               Cat People
## 5318                                                                                                                                                Omen, The
## 5319                                                                                                                                         Albino Alligator
## 5320                                                                                                                                              Sling Blade
## 5321                                                                                                                                            Crucible, The
## 5322                                                                                                                                               Die Hard 2
## 5323                                                                                                                                           Batman Returns
## 5324                                                                                                                                               Young Guns
## 5325                                                                                                                                                   Grease
## 5326                                                                                                                                              Under Siege
## 5327                                                                                                                                                     Jaws
## 5328                                                                                                                                                   Jaws 2
## 5329                                                                                                                                      My Fellow Americans
## 5330                                                                                                                                            Jerry Maguire
## 5331                                                                                                                                          Raising Arizona
## 5332                                                                                                                                                  Tin Men
## 5333                                                                                                                                                 Sneakers
## 5334                                                                                                                                            Marvin's Room
## 5335                                                                                                                                           Murder at 1600
## 5336                                                                                                                                             Dante's Peak
## 5337                                                                                                                                            Amos & Andrew
## 5338                                                                                                                                           Absolute Power
## 5339                                                                                                   Vegas Vacation (National Lampoon's Las Vegas Vacation)
## 5340                                                                                                                                            Donnie Brasco
## 5341                                                                                                                                                Liar Liar
## 5342                                                                                                                                         Devil's Own, The
## 5343                                                                                                                                                Traveller
## 5344                                                                                                              Austin Powers: International Man of Mystery
## 5345                                                                                                                              Truth or Consequences, N.M.
## 5346                                                                                                                                                  Con Air
## 5347                                                                                                                                           Batman & Robin
## 5348                                                                                                                                                 Hercules
## 5349                                                                                                                                Men in Black (a.k.a. MIB)
## 5350                                                                                                                                                  Contact
## 5351                                                                                                                                     George of the Jungle
## 5352                                                                                                                                                 Cop Land
## 5353                                                                                                                                       Desperate Measures
## 5354                                                                                                                                            Air Force One
## 5355                                                                                                                                Hunt for Red October, The
## 5356                                                                                                                                     My Own Private Idaho
## 5357                                                                                                                                                 In & Out
## 5358                                                                                                                                        L.A. Confidential
## 5359                                                                                                                                           Kiss the Girls
## 5360                                                                                                                                        Thousand Acres, A
## 5361                                                                                                                                                Game, The
## 5362                                                                                                                                     The Devil's Advocate
## 5363                                                                                                                                           Rainmaker, The
## 5364                                                                                                                                            Boogie Nights
## 5365                                                                                                                                                  Witness
## 5366                                                                                                                                         Truman Show, The
## 5367                                                                                                                                               Red Corner
## 5368                                                                                                                                      Alien: Resurrection
## 5369                                                                                                                                             Apostle, The
## 5370                                                                                                                                     Deconstructing Harry
## 5371                                                                                                                                        Good Will Hunting
## 5372                                                                                                                  Midnight in the Garden of Good and Evil
## 5373                                                                                                                                                  Titanic
## 5374                                                                                                                                             Postman, The
## 5375                                                                                                                                             Jackie Brown
## 5376                                                                                                                                        Big Lebowski, The
## 5377                                                                                                                                              Wag the Dog
## 5378                                                                                                                                                 Palmetto
## 5379                                                                                                                                       As Good as It Gets
## 5380                                                                                                                                         King of New York
## 5381                                                                                                                                                 Twilight
## 5382                                                                                                                                                     Hush
## 5383                                                                                                                                              Wild Things
## 5384                                                                                                                                           Primary Colors
## 5385                                                                                                                                    Spanish Prisoner, The
## 5386                                                                                                                                              Sour Grapes
## 5387                                                                                                                                          Misérables, Les
## 5388                                                                                                                                              Deep Impact
## 5389                                                                                                                                                 Godzilla
## 5390                                                                                                                           Fear and Loathing in Las Vegas
## 5391                                                                                                                                        Perfect Murder, A
## 5392                                                                                                                                             Out of Sight
## 5393                                                                                                                                               Armageddon
## 5394                                                                                                                             There's Something About Mary
## 5395                                                                                                                              Greatest Show on Earth, The
## 5396                                                                                                                                        On the Waterfront
## 5397                                                                                                                                          West Side Story
## 5398                                                                                                                                                  Oliver!
## 5399                                                                                                                                          Midnight Cowboy
## 5400                                                                                                                                   French Connection, The
## 5401                                                                                                                                                    Rocky
## 5402                                                                                                                                        Kramer vs. Kramer
## 5403                                                                                                                                          Ordinary People
## 5404                                                                                                                                         Chariots of Fire
## 5405                                                                                                                                      Terms of Endearment
## 5406                                                                                                                                        Last Emperor, The
## 5407                                                                                                                                                 Rain Man
## 5408                                                                                                                                       Driving Miss Daisy
## 5409                                                                                                                                                 Repo Man
## 5410                                                                                                                                      Breakfast Club, The
## 5411                                                                                                                                                Halloween
## 5412                                                                                                                                              Poltergeist
## 5413                                                                                                                                            Exorcist, The
## 5414                                                                                                                                            Lethal Weapon
## 5415                                                                                                                                          Lethal Weapon 2
## 5416                                                                                                                                          Lethal Weapon 3
## 5417                                                                                                                                                 Gremlins
## 5418                                                                                                                                            Soylent Green
## 5419                                                                                                                               Back to the Future Part II
## 5420                                                                                                                              Back to the Future Part III
## 5421                                                                                                                                  Poseidon Adventure, The
## 5422                                                                                                                             Absent-Minded Professor, The
## 5423                                                                                                                                 Godfather: Part III, The
## 5424                                                                                                                                             Rapture, The
## 5425                                                                                                                                                   Lolita
## 5426                                                                                                                                      Saving Private Ryan
## 5427                                                                                                                                 Honey, I Shrunk the Kids
## 5428                                                                                                                                               Roger & Me
## 5429                                                                                                                                Purple Rose of Cairo, The
## 5430                                                                                                                                           Tender Mercies
## 5431                                                                                                                                              Blue Velvet
## 5432                                                                                                                                         Jungle Book, The
## 5433                                                                                                                                      Little Mermaid, The
## 5434                                                                                                                                        Mighty Ducks, The
## 5435                                                                                                                              Muppet Christmas Carol, The
## 5436                                                                                                                                                   Popeye
## 5437                                                                                                                                           Rocketeer, The
## 5438                                                                                                                                                     Tron
## 5439                                                                                                                                               L.A. Story
## 5440                                                                                                                                                Jerk, The
## 5441                                                                                                                                             Grand Canyon
## 5442                                                                                                                                           Outsiders, The
## 5443                                                                                                                     Indiana Jones and the Temple of Doom
## 5444                                                                                                                                   Lord of the Rings, The
## 5445                                                                                                                              1984 (Nineteen Eighty-Four)
## 5446                                                                                                                                           Dead Zone, The
## 5447                                                                                                                                           Needful Things
## 5448                                                                                                                                                     Cujo
## 5449                                                                                                                                     Children of the Corn
## 5450                                                                                                                                       Addams Family, The
## 5451                                                                                                                                               Snake Eyes
## 5452                                                                                                                                     Nutty Professor, The
## 5453                                                                                                                                          Sixteen Candles
## 5454                                                                                                                                           Pretty in Pink
## 5455                                                                                                                                          St. Elmo's Fire
## 5456                                                                                                                                                    House
## 5457                                                                                                                       Henry: Portrait of a Serial Killer
## 5458                                                                                                                                          Rosemary's Baby
## 5459                                                                                                                                       Return to Paradise
## 5460                                                                                                                                              Beetlejuice
## 5461                                                                                                                               Man Who Knew Too Much, The
## 5462                                                                                                                                  Trouble with Harry, The
## 5463                                                                                                                                                       54
## 5464                                                                                                                                                   Willow
## 5465                                                                                                                                        Untouchables, The
## 5466                                                                                                                                                 Rounders
## 5467                                                                                                                                              Simon Birch
## 5468                                                                                                                                             My Bodyguard
## 5469                                                                                                                                           Broadcast News
## 5470                                                                                                                                             Working Girl
## 5471                                                                                                                                       Married to the Mob
## 5472                                                                                                                                           My Blue Heaven
## 5473                                                                                                                                                     Hero
## 5474                                                                                                                                                     Toys
## 5475                                                                                                                                    Young Doctors in Love
## 5476                                                                                                                                          Blame It on Rio
## 5477                                                                                                                                        Seventh Sign, The
## 5478                                                                                                                                          We're No Angels
## 5479                                                                                                                                          Mortal Thoughts
## 5480                                                                                                                                          Few Good Men, A
## 5481                                                                                                                                        Indecent Proposal
## 5482                                                                                                                                                    Ronin
## 5483                                                                                                                      Fiendish Plot of Dr. Fu Manchu, The
## 5484                                                                                                                                              Player, The
## 5485                                                                                                                                      Edward Scissorhands
## 5486                                                                                                                                  Night at the Roxbury, A
## 5487                                                                                                                                           Producers, The
## 5488                                                                                                                             History of the World: Part I
## 5489                                                                                                                                          My Cousin Vinny
## 5490                                                                                                                                            One Tough Cop
## 5491                                                                                                                           2010: The Year We Make Contact
## 5492                                                                                                                                        Elephant Man, The
## 5493                                                                                                                                                Apt Pupil
## 5494                                                                                                                                            Pleasantville
## 5495                                                                                                                                       American History X
## 5496                                                                                                                                               Siege, The
## 5497                                                                                                                                                Elizabeth
## 5498                                                                                                                                      Stepford Wives, The
## 5499                                                                                                                           Pope of Greenwich Village, The
## 5500                                                                                                                                           Big Chill, The
## 5501                                                                                                                                       Enemy of the State
## 5502                                                                                                                                            Bug's Life, A
## 5503                                                                                                                                                King Kong
## 5504                                                                                                                                Desperately Seeking Susan
## 5505                                                                                                                                                   Fletch
## 5506                                                                                                                                                  Gung Ho
## 5507                                                                                                                                        View to a Kill, A
## 5508                                                                                                                                                   Psycho
## 5509                                                                                                                                           Simple Plan, A
## 5510                                                                                                                                      Shakespeare in Love
## 5511                                                                                                                                   Miracle on 34th Street
## 5512                                                                                                                               Rambo: First Blood Part II
## 5513                                                                                                                         First Blood (Rambo: First Blood)
## 5514                                                                                                                                                   Cocoon
## 5515                                                                                                                                                 Rocky II
## 5516                                                                                                                                                Rocky III
## 5517                                                                                                                                                 Rocky IV
## 5518                                                                                                                                                  Rocky V
## 5519                                                                                                                                                Heartburn
## 5520                                                                                                                                        Nothing in Common
## 5521                                                                                                                                          Karate Kid, The
## 5522                                                                                                                                          You've Got Mail
## 5523                                                                                                                                       Thin Red Line, The
## 5524                                                                                                                                                  Stepmom
## 5525                                                                                                                                          Civil Action, A
## 5526                                                                                                                                               Hurlyburly
## 5527                                                                                                                                                 Fly, The
## 5528                                                                                                                                           Running Scared
## 5529                                                                                                                                          Ruthless People
## 5530                                                                                                                                       Jumpin' Jack Flash
## 5531                                                                                                                                         Crocodile Dundee
## 5532                                                                                                                                      Color of Money, The
## 5533                                                                                                                                                  Payback
## 5534                                                                                                                                                      8MM
## 5535                                                                                                                                             Pet Sematary
## 5536                                                                                                                                                Christine
## 5537                                                                                                                                              Night Shift
## 5538                                                                                                                                                  Airport
## 5539                                                                                                                                             Airport 1975
## 5540                                                                                                                                            Rollercoaster
## 5541                                                                                                                                    Towering Inferno, The
## 5542                                                                                                                                              Logan's Run
## 5543                                                                                                                                       Planet of the Apes
## 5544                                                                                                                           Beneath the Planet of the Apes
## 5545                                                                                                                        Battle for the Planet of the Apes
## 5546                                                                                                                       Conquest of the Planet of the Apes
## 5547                                                                                                                       Escape from the Planet of the Apes
## 5548                                                                                                                                               Earthquake
## 5549                                                                                                                                             Analyze This
## 5550                                                                                                                                             Dead Ringers
## 5551                                                                                                                                               True Crime
## 5552                                                                                                                                              Matrix, The
## 5553                                                                                                                                      Out-of-Towners, The
## 5554                                                                                                                                                Metroland
## 5555                                                                                                                                              Pushing Tin
## 5556                                                                                                                                                 Election
## 5557                                                                                                                                               Entrapment
## 5558                                                                                                                                         Winslow Boy, The
## 5559                                                                                                                                               Dick Tracy
## 5560                                                                                                                                               Mummy, The
## 5561                                                                                                                                           Mommie Dearest
## 5562                                                                                                                                                 Superman
## 5563                                                                                                                                              Superman II
## 5564                                                                                                                                             Superman III
## 5565                                                                                                                           Invasion of the Body Snatchers
## 5566                                                                                                                                             Notting Hill
## 5567                                                                                                                                                   Tarzan
## 5568                                                                                                                                  General's Daughter, The
## 5569                                                                                                                                           Wild Wild West
## 5570                                                                                                                                            Summer of Sam
## 5571                                                                                                                                           Arlington Road
## 5572                                                                                                                                           Eyes Wide Shut
## 5573                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 5574                                                                                                                                                   Lolita
## 5575                                                                                                                                             Barry Lyndon
## 5576                                                                                                                                      Crimes of the Heart
## 5577                                                                                                                                        Color Purple, The
## 5578                                                                                                                                                 No Mercy
## 5579                                                                                                                                   Little Shop of Horrors
## 5580                                                                                                                                       Morning After, The
## 5581                                                                                                                                               Radio Days
## 5582                                                                                                                                                  Frances
## 5583                                                                                                                                         Sixth Sense, The
## 5584                                                                                                                                 Thomas Crown Affair, The
## 5585                                                                                                                                                Bowfinger
## 5586                                                                                                                                     Pit and the Pendulum
## 5587                                                                                                                                                Cat's Eye
## 5588                                                                                                Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 5589                                                                                                                                                Airplane!
## 5590                                                                                                                           American Werewolf in Paris, An
## 5591                                                                                             European Vacation (aka National Lampoon's European Vacation)
## 5592                                                                                                                              National Lampoon's Vacation
## 5593                                                                                                                                                      Big
## 5594                                                                                                                                          Tequila Sunrise
## 5595                                                                                                                                       Pelican Brief, The
## 5596                                                                                                                                       Christmas Story, A
## 5597                                                                                                                                         Mickey Blue Eyes
## 5598                                                                                                          Three Days of the Condor (3 Days of the Condor)
## 5599                                                                                                                                                Muse, The
## 5600                                                                                                                                           Stir of Echoes
## 5601                                                                                                                                                 Saturn 3
## 5602                                                                                                                                       Soldier's Story, A
## 5603                                                                                                                                       I Saw What You Did
## 5604                                                                                                                                          American Beauty
## 5605                                                                                                                                     For Love of the Game
## 5606                                                                                                                                              Deliverance
## 5607                                                                                                                                                Sommersby
## 5608                                                                                                                                          Double Jeopardy
## 5609                                                                                                                                                  Mumford
## 5610                                                                                                                                              Three Kings
## 5611                                                                                                                                           Boys Don't Cry
## 5612                                                                                                                                               Limey, The
## 5613                                                                                                                                             Total Recall
## 5614                                                                                                                                                Body Heat
## 5615                                                                                                                                 Ferris Bueller's Day Off
## 5616                                                                                                                                                     Reds
## 5617                                                                                                                                               Flashdance
## 5618                                                                                                                                         Dirty Dozen, The
## 5619                                                                                                                                               Goldfinger
## 5620                                                                                                                                         Blue Lagoon, The
## 5621                                                                                                                                      Sydney (Hard Eight)
## 5622                                                                                                                                 Someone to Watch Over Me
## 5623                                                                                                                                               Fight Club
## 5624                                                                                                                                      Straight Story, The
## 5625                                                                                                                                            Bad Seed, The
## 5626                                                                                                                                            All That Jazz
## 5627                                                                                                                                  Crimes and Misdemeanors
## 5628                                                                                                                                    Bringing Out the Dead
## 5629                                                                                                                                         Crazy in Alabama
## 5630                                                                                                                                                  RoboCop
## 5631                                                                                                                                 Who Framed Roger Rabbit?
## 5632                                                                                                                                       For Your Eyes Only
## 5633                                                                                                                                         Live and Let Die
## 5634                                                                                                                                             Insider, The
## 5635                                                                                                                                                     Coma
## 5636                                                                                                                                         Drugstore Cowboy
## 5637                                                                                                                                             Falling Down
## 5638                                                                                                                                           Omega Man, The
## 5639                                                                                                                                           Mister Roberts
## 5640                                                                                                                                     Face in the Crowd, A
## 5641                                                                                                                                           Trading Places
## 5642                                                                                                                                               Dead Again
## 5643                                                                                                                 Messenger: The Story of Joan of Arc, The
## 5644                                                                                                                                               Poison Ivy
## 5645                                                                                                                                             Verdict, The
## 5646                                                                                                                                        Stand and Deliver
## 5647                                                                                                                                               Moonstruck
## 5648                                                                                                                                         Jeremiah Johnson
## 5649                                                                                                                                            Sleepy Hollow
## 5650                                                                                                                                 World Is Not Enough, The
## 5651                                                                                                                                                 Scrooged
## 5652                                                                                                                                     Grapes of Wrath, The
## 5653                                                                                                                                             Natural, The
## 5654                                                                                                                                         Fatal Attraction
## 5655                                                                                                                                              Jagged Edge
## 5656                                                                                                                                             Midnight Run
## 5657                                                                                                                                               Awakenings
## 5658                                                                                                                                                Backdraft
## 5659                                                                                                                                         Fisher King, The
## 5660                                                                                                                                      Places in the Heart
## 5661                                                                                                                                              Toy Story 2
## 5662                                                                                                                             Distinguished Gentleman, The
## 5663                                                                                                                                  Bonfire of the Vanities
## 5664                                                                                                                                            Stealing Home
## 5665                                                                                                                                           Two Jakes, The
## 5666                                                                                                                                   Glass Bottom Boat, The
## 5667                                                                                                                                          Green Mile, The
## 5668                                                                                                                                   Last Picture Show, The
## 5669                                                                                                                                         Bicentennial Man
## 5670                                                                                                                                                 Magnolia
## 5671                                                                                                                                         Carnal Knowledge
## 5672                                                                                                                               The Falcon and the Snowman
## 5673                                                                                                                                         Any Given Sunday
## 5674                                                                                                                                          Man on the Moon
## 5675                                                                                                                                 Talented Mr. Ripley, The
## 5676                                                                                                                                   Snow Falling on Cedars
## 5677                                                                                                                                            Presidio, The
## 5678                                                                                                                                                 Papillon
## 5679                                                                                                                                    Boys from Brazil, The
## 5680                                                                                                                                         Against All Odds
## 5681                                                                                                                             Fast Times at Ridgemont High
## 5682                                                                                                                                                   Poison
## 5683                                                                                                                                          Pacific Heights
## 5684                                                                                                                                        Goodbye Girl, The
## 5685                                                                                                                                                Malcolm X
## 5686                                                                                                                                               Sister Act
## 5687                                                                                                                          Hand That Rocks the Cradle, The
## 5688                                                                                                                                         Scent of a Woman
## 5689                                                                                                                                            Wayne's World
## 5690                                                                                                                                   League of Their Own, A
## 5691                                                                                                                                            Patriot Games
## 5692                                                                                                                                           Bodyguard, The
## 5693                                                                                                                                        Death Becomes Her
## 5694                                                                                                                                     White Men Can't Jump
## 5695                                                                                                                                            Forever Young
## 5696                                                                                                                                      Single White Female
## 5697                                                                                                                                                 Snow Day
## 5698                                                                                                                                         To Sir with Love
## 5699                                                                                                                                              Boiler Room
## 5700                                                                                                                                        Flamingo Kid, The
## 5701                                                                                                                                           Reindeer Games
## 5702                                                                                                                                                Key Largo
## 5703                                                                                                                                          Mission to Mars
## 5704                                                                                                                                      Defending Your Life
## 5705                                                                                                                                            Breaking Away
## 5706                                                                                                                              Hoosiers (a.k.a. Best Shot)
## 5707                                                                                                                                              Bull Durham
## 5708                                                                                                                                        Dog Day Afternoon
## 5709                                                                                                                                        American Graffiti
## 5710                                                                                                                                                 Betrayed
## 5711                                                                                                                                               Volunteers
## 5712                                                                                                                                                      JFK
## 5713                                                                                                                                         Who's That Girl?
## 5714                                                                                                                                               Blind Date
## 5715                                                                                                                                                   Nadine
## 5716                                                                                                                                          Thelma & Louise
## 5717                                                                                                                                   ...And Justice for All
## 5718                                                                                                                                             Animal House
## 5719                                                                                                                                             Jungle Fever
## 5720                                                                                                                                               Champ, The
## 5721                                                                                                                                                 Red Dawn
## 5722                                                                                                                                       Eyes of Laura Mars
## 5723                                                                                                                                    Good Morning, Vietnam
## 5724                                                                                                                             Guess Who's Coming to Dinner
## 5725                                                                                                                                             Hustler, The
## 5726                                                                                                                                           Jacob's Ladder
## 5727                                                                                                                                                Bamba, La
## 5728                                                                                                                                   Road to El Dorado, The
## 5729                                                                                                                                                     Hook
## 5730                                                                                                                                                True Grit
## 5731                                                                                                                                         Midnight Express
## 5732                                                                                                                                                   Misery
## 5733                                                                                                                                       Mr. Saturday Night
## 5734                                                                                                                                                  Network
## 5735                                                                                                                                               No Way Out
## 5736                                                                                                                                       North Dallas Forty
## 5737                                                                                                                                          Odd Couple, The
## 5738                                                                                                                                      Rules of Engagement
## 5739                                                                                                                                                   Arthur
## 5740                                                                                                                                               Parenthood
## 5741                                                                                                                                     Prince of Tides, The
## 5742                                                                                                                          Postman Always Rings Twice, The
## 5743                                                                                                                                          American Psycho
## 5744                                                                                                                                        Keeping the Faith
## 5745                                                                                                                                       Where the Money Is
## 5746                                                                                                                                                    Diner
## 5747                                                                                                                                                  Cabaret
## 5748                                                                                                                         What Ever Happened to Baby Jane?
## 5749                                                                                                                                              Auntie Mame
## 5750                                                                                                                                           Guys and Dolls
## 5751                                                                                                                                             Marathon Man
## 5752                                                                                                                                     Virgin Suicides, The
## 5753                                                                                                                                               Jennifer 8
## 5754                                                                                                                                          Big Kahuna, The
## 5755                                                                                                                                                Gladiator
## 5756                                                                                                                                  Pee-wee's Big Adventure
## 5757                                                                                                                                            Things Change
## 5758                                                                                                                                       Honeymoon in Vegas
## 5759                                                                                                                                        Small Time Crooks
## 5760                                                                                                                                                Moonraker
## 5761                                                                                                                                          American Gigolo
## 5762                                                                                                                                          Blazing Saddles
## 5763                                                                                                                                             Blood Simple
## 5764                                                                                                                                 Fabulous Baker Boys, The
## 5765                                                                                                                                           Prizzi's Honor
## 5766                                                                                                                                               Flatliners
## 5767                                                                                                                                                  Porky's
## 5768                                                                                                                                             Alien Nation
## 5769                                                                                                                                                  Mad Max
## 5770                                                                                                                               Mad Max Beyond Thunderdome
## 5771                                                                                                                                                 Soapdish
## 5772                                                                                                                                      Long Walk Home, The
## 5773                                                                                                                                              Coming Home
## 5774                                                                                                                                       Prince of the City
## 5775                                                                                                                                                  Serpico
## 5776                                                                                                                                              Chicken Run
## 5777                                                                                                                                             Patriot, The
## 5778                                                                                                                                                      F/X
## 5779                                                                                                                                                 Croupier
## 5780                                                                                                                                                Footloose
## 5781                                                                                                                                                 H.O.T.S.
## 5782                                                                                  Everything You Always Wanted to Know About Sex * But Were Afraid to Ask
## 5783                                                                                                                                               Hollow Man
## 5784                                                                                                                                             Bronco Billy
## 5785                                                                                                                                          Steel Magnolias
## 5786                                                                                                                                        Tao of Steve, The
## 5787                                                                                                                                  Eyes of Tammy Faye, The
## 5788                                                                                                                                               Cat Ballou
## 5789                                                                                                                                            Almost Famous
## 5790                                                                                                                                         Fantastic Voyage
## 5791                                                                                                                                         Meet the Parents
## 5792                                                                                                                                           Contender, The
## 5793                                                                                                                                               Billy Jack
## 5794                                                                                                                                      You Can Count on Me
## 5795                                                                                                                                              Unbreakable
## 5796                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 5797                                                                                                                             Planes, Trains & Automobiles
## 5798                                                                                                                                              Wall Street
## 5799                                                                                                                               Born on the Fourth of July
## 5800                                                                                                                                               Talk Radio
## 5801                                                                                                                                                   Snatch
## 5802                                                                                                                                                Punchline
## 5803                                                                                                                                                 Chocolat
## 5804                                                                                                                                          What Women Want
## 5805                                                                                                                                                Cast Away
## 5806                                                                                                                                        Miss Congeniality
## 5807                                                                                                                               O Brother, Where Art Thou?
## 5808                                                                                                                                           State and Main
## 5809                                                                                                                                            Thirteen Days
## 5810                                                                                                                                                  Traffic
## 5811                                                                                                                                           House of Games
## 5812                                                                                                                                                    Annie
## 5813                                                                                                                              Officer and a Gentleman, An
## 5814                                                                                                                                                    Panic
## 5815                                                                                                                                               Love Field
## 5816                                                                                                                                             Mystic Pizza
## 5817                                                                                                                                        Prelude to a Kiss
## 5818                                                                                                                                        Beverly Hills Cop
## 5819                                                                                                                                            Big Easy, The
## 5820                                                                                                                                            Big Town, The
## 5821                                                                                                                                Brave Little Toaster, The
## 5822                                                                                                                                         Eddie Murphy Raw
## 5823                                                                                                                                         Gardens of Stone
## 5824                                                                                                                                                 Ironweed
## 5825                                                                                                                                           Less Than Zero
## 5826                                                                                                                                           Lost Boys, The
## 5827                                                                                                                                                Mannequin
## 5828                                                                                                                                Million Dollar Hotel, The
## 5829                                                                                                                                                 Hannibal
## 5830                                                                                                                                               15 Minutes
## 5831                                                                                                                                             Elmer Gantry
## 5832                                                                                                                                      Reversal of Fortune
## 5833                                                                                                                                     Revenge of the Nerds
## 5834                                                                                                                                                  Memento
## 5835                                                                                                                                            Heartbreakers
## 5836                                                                                                                                                     Blow
## 5837                                                                                                                                    Bridget Jones's Diary
## 5838                                                                                                                                                 Scarface
## 5839                                                                                                                                   Days of Wine and Roses
## 5840                                                                                                                                          Lost in America
## 5841                                                                                                                             World According to Garp, The
## 5842                                                                                                                             Nine to Five (a.k.a. 9 to 5)
## 5843                                                                                                                                                Norma Rae
## 5844                                                                                                                                                    Shrek
## 5845                                                                                                                                             Moulin Rouge
## 5846                                                                                                                                             Pearl Harbor
## 5847                                                                                                                                              Ice Castles
## 5848                                                                                                                                  Postcards From the Edge
## 5849                                                                                                                                            City Slickers
## 5850                                                                                                                                            Eight Men Out
## 5851                                                                                                                                      Mississippi Burning
## 5852                                                                                                                               Throw Momma from the Train
## 5853                                                                                                                                                Swordfish
## 5854                                                                                                                                   Anniversary Party, The
## 5855                                                                                                                                                     Shag
## 5856                                                                                                                                           Unlawful Entry
## 5857                                                                                                                                                  Tootsie
## 5858                                                                                                                             A.I. Artificial Intelligence
## 5859                                                                                                                                               Sexy Beast
## 5860                                                                                                                                      Cannonball Run, The
## 5861                                                                                                                        Man Who Shot Liberty Valance, The
## 5862                                                                                                                                          Shadows and Fog
## 5863                                                                                                                                           Something Wild
## 5864                                                                                                                                           Legally Blonde
## 5865                                                                                                                                  Accidental Tourist, The
## 5866                                                                                                                                             Accused, The
## 5867                                                                                                                                                  Beaches
## 5868                                                                                                                                  Bright Lights, Big City
## 5869                                                                                                                                          Clean and Sober
## 5870                                                                                                                                                 Cocktail
## 5871                                                                                                                                                   Colors
## 5872                                                                                                                                        Coming to America
## 5873                                                                                                                                             Criminal Law
## 5874                                                                                                                                        Crossing Delancey
## 5875                                                                                                                                                   D.O.A.
## 5876                                                                                                                                           Dead Pool, The
## 5877                                                                                                                                  Dirty Rotten Scoundrels
## 5878                                                                                                                                 Everybody's All-American
## 5879                                                                                                                                               Masquerade
## 5880                                                                                                                                        Moon Over Parador
## 5881                                                                                                                                My Stepmother Is an Alien
## 5882                                                                                                                                               Off Limits
## 5883                                                                                                                            Tucker: The Man and His Dream
## 5884                                                                                                                                                   Always
## 5885                                                                                                                                         Big Picture, The
## 5886                                                                                                                                                    Blaze
## 5887                                                                                                                                         Innocent Man, An
## 5888                                                                                                                                    Last Exit to Brooklyn
## 5889                                                                                                                                              Let It Ride
## 5890                                                                                                                                       Look Who's Talking
## 5891                                                                                                                                         Miss Firecracker
## 5892                                                                                                                                         New York Stories
## 5893                                                                                                                                              Next of Kin
## 5894                                                                                                                                    America's Sweethearts
## 5895                                                                                                                                       Planet of the Apes
## 5896                                                                                                                                              Sea of Love
## 5897                                                                                                                                    War of the Roses, The
## 5898                                                                                                                                    Princess Diaries, The
## 5899                                                                                                                                         Paint Your Wagon
## 5900                                                                                                                                            Shootist, The
## 5901                                                                                                                                           Altered States
## 5902                                                                                                                                    Any Which Way You Can
## 5903                                                                                                                                                 Rat Race
## 5904                                                                                                                          Curse of the Jade Scorpion, The
## 5905                                                                                                                                              Hunter, The
## 5906                                                                                                                                             Training Day
## 5907                                                                                                                                          Little Man Tate
## 5908                                                                                                                                        Play Misty for Me
## 5909                                                                                                                                       Hearts in Atlantis
## 5910                                                                                                                                                 Brubaker
## 5911                                                                                                                                                    Carny
## 5912                                                                                                                                    Coal Miner's Daughter
## 5913                                                                                                                                Man Who Wasn't There, The
## 5914                                                                                                                                           Monsters, Inc.
## 5915                                                                                                                                                    Heist
## 5916                                                                                                                                              Shallow Hal
## 5917                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 5918                                                                                                                                                Novocaine
## 5919                                                                                                                                                 Toy, The
## 5920                                                                                                                                          Dressed to Kill
## 5921                                                                                                                                             Flash Gordon
## 5922                                                                                                                                        Lord of the Flies
## 5923                                                                                                                       Ocean's Eleven (a.k.a. Ocean's 11)
## 5924                                                                                                                                         Independent, The
## 5925                                                                                                                                           Ocean's Eleven
## 5926                                                                                                                                     Moscow on the Hudson
## 5927                                                                                                                                                  Lantana
## 5928                                                                                                                                    Royal Tenenbaums, The
## 5929                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 5930                                                                                                                                        Beautiful Mind, A
## 5931                                                                                                                                           Monster's Ball
## 5932                                                                                                                                          Another 48 Hrs.
## 5933                                                                                                                                             Formula, The
## 5934                                                                                                                                                  48 Hrs.
## 5935                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 5936                                                                                                                                              Mrs. Soffel
## 5937                                                                                                                                The Count of Monte Cristo
## 5938                                                                                                                                            Good Son, The
## 5939                                                                                                                                                   Sleuth
## 5940                                                                                                                                            Summer of '42
## 5941                                                                                                                                                Used Cars
## 5942                                                                                                                                                Dragonfly
## 5943                                                                                                                                         We Were Soldiers
## 5944                                                                                                                                             Intersection
## 5945                                                                                                                                             Full Frontal
## 5946                                                                                                                                                Hopscotch
## 5947                                                                                                                                         Jazz Singer, The
## 5948                                                                                                                                    Long Good Friday, The
## 5949                                                                                          Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane)
## 5950                                                                                                                                                 Oh, God!
## 5951                                                                                                                                                     Taps
## 5952                                                                                                                                    Smokey and the Bandit
## 5953                                                                                                                                               Stir Crazy
## 5954                                                                                                                         Piano Teacher, The (La pianiste)
## 5955                                                                                                                                        Crimes of Passion
## 5956                                                                                                                                    Evil That Men Do, The
## 5957                                                                                                                                           Changing Lanes
## 5958                                                                                                                                          Cat's Meow, The
## 5959                                                                                                                                 My Big Fat Greek Wedding
## 5960                                                                                                                                   Joe Versus the Volcano
## 5961                                                                                                                                  Taking Care of Business
## 5962                                                                                                                                     Three Men and a Baby
## 5963                                                                                                                              Three Men and a Little Lady
## 5964                                                                                                                                             Cadillac Man
## 5965                                                                                                                                       Coca-Cola Kid, The
## 5966                                                                                                                                          Thief of Hearts
## 5967                                                                                                                                            Rambling Rose
## 5968                                                                                                                                               Unfaithful
## 5969                                                                                                                                                    Whore
## 5970                                                                                                                                Every Which Way But Loose
## 5971                                                                                                                                                 Insomnia
## 5972                                                                                         Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 5973                                                                                                                                    Sum of All Fears, The
## 5974                                                                                                                                          Minority Report
## 5975                                                                                                                                   Look Who's Talking Now
## 5976                                                                                                                                        Road to Perdition
## 5977                                                                                                                                                  Perfect
## 5978                                                                                                                                                    Signs
## 5979                                                                                                                                               Blood Work
## 5980                                                                                                                                                    Hush!
## 5981                                                                                                                                          Time After Time
## 5982                                                                                                                            Down and Out in Beverly Hills
## 5983                                                                                                                                              True Colors
## 5984                                                                                                                                                  Swimfan
## 5985                                                                                                                                          Betsy's Wedding
## 5986                                                                                                                                       Sweet Home Alabama
## 5987                                                                                                                                               Red Dragon
## 5988                                                                                                                                                 Fan, The
## 5989                                                                                                                                                 Comedian
## 5990                                                                                                                                                Ring, The
## 5991                                                                                                                                               Auto Focus
## 5992                                                                                                                                           Billy Bathgate
## 5993                                                                                                                                            Staying Alive
## 5994                                                                                                                                             Urban Cowboy
## 5995                                                                                                                                                 Tom Horn
## 5996                                                                                                                                             Wholly Moses
## 5997                                                                                                                                                   Xanadu
## 5998                                                                                                                                        Absence of Malice
## 5999                                                                                                                                                 Blow Out
## 6000                                                                                                                                       Continental Divide
## 6001                                                                                                                                             Endless Love
## 6002                                                                                                                                        Eye of the Needle
## 6003                                                                                                                                  First Monday in October
## 6004                                                                                                                                        Four Seasons, The
## 6005                                                                                                                                                Neighbors
## 6006                                                                                                                                          Far from Heaven
## 6007                                                                                                                                             Toy Soldiers
## 6008                                                                                                                                              Raggedy Man
## 6009                                                                                                                                                  Ragtime
## 6010                                                                                                                                         Sharky's Machine
## 6011                                                                                                                                                  So Fine
## 6012                                                                                                                                         Southern Comfort
## 6013                                                                                                                                         True Confessions
## 6014                                                                                                                                             Analyze That
## 6015                                                                                                                                               Adaptation
## 6016                                                                                                                                          Author! Author!
## 6017                                                                                                                                             Best Friends
## 6018                                                                                                                     Best Little Whorehouse in Texas, The
## 6019                                                                                                                                              Cannery Row
## 6020                                                                                                                                                Deathtrap
## 6021                                                                                                                                             Eating Raoul
## 6022                                                                                                                                            About Schmidt
## 6023                                                                                                                                        Gangs of New York
## 6024                                                                                                                                                     Narc
## 6025                                                                                                                                            Bad Influence
## 6026                                                                                                                                               Blue Steel
## 6027                                                                                                                                         Body of Evidence
## 6028                                                                                                                                              Miami Blues
## 6029                                                                                                                                      Catch Me If You Can
## 6030                                                                                                                                                  Chicago
## 6031                                                                                                                                      King of Comedy, The
## 6032                                                                                                                                                 Dogfight
## 6033                                                                                                                                            Honkytonk Man
## 6034                                                                                                                                              Making Love
## 6035                                                                                                                                                  Missing
## 6036                                                                                                                                                Monsignor
## 6037                                                                                                                                            Personal Best
## 6038                                                                                                                                           Shoot the Moon
## 6039                                                                                                                                                    Q & A
## 6040                                                                                                                                        Gods and Generals
## 6041                                                                                                                                  Bringing Down the House
## 6042                                                                                                                                           Born Yesterday
## 6043                                                                                                                                                    Equus
## 6044                                                                                                                                  Glenn Miller Story, The
## 6045                                                                                                                                               Green Card
## 6046                                                                                                                                             One Good Cop
## 6047                                                                                                                                                    Basic
## 6048                                                                                                                                              Phone Booth
## 6049                                                                                                                                             Legal Eagles
## 6050                                                                                                                    Marrying Man, The (Too Hot to Handle)
## 6051                                                                                                                                           Chorus Line, A
## 6052                                                                                                                                   Electric Horseman, The
## 6053                                                                                                                                        Mr. & Mrs. Bridge
## 6054                                                                                                                                               Shenandoah
## 6055                                                                                                                                          This Boy's Life
## 6056                                                                                                                                              Barton Fink
## 6057                                                                                                                                    Long, Hot Summer, The
## 6058                                                                                                                                         Half Moon Street
## 6059                                                                                                                                               Seabiscuit
## 6060                                                                                                                                          Dangerous Minds
## 6061                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 6062                                                                                                                                      Usual Suspects, The
## 6063                                                                                                                                              Taxi Driver
## 6064                                                                                                                       Star Wars: Episode IV - A New Hope
## 6065                                                                                                                                             Pulp Fiction
## 6066                                                                                                                                Shawshank Redemption, The
## 6067                                                                                                                                            Reality Bites
## 6068                                                                                                                                                  Timecop
## 6069                                                                                                                                         Schindler's List
## 6070                                                                                                                                             Blade Runner
## 6071                                                                                                                                            Trainspotting
## 6072                                                                                                                                           Godfather, The
## 6073                                                                                                                                              Rear Window
## 6074                                                                                                                                           Reservoir Dogs
## 6075                                                                                                                                      Weekend at Bernie's
## 6076                                                                                                                                 Sex, Lies, and Videotape
## 6077                                                                                                                                      Princess Bride, The
## 6078                                                                                                                                      Clockwork Orange, A
## 6079                                                                                                                                           Apocalypse Now
## 6080                                                                                                                                  Godfather: Part II, The
## 6081                                                                                                                                               Sting, The
## 6082                                                                                                                                      Killing Fields, The
## 6083                                                                                                                                               Young Guns
## 6084                                                                                                                                                    Evita
## 6085                                                                                                                                         Chariots of Fire
## 6086                                                                                                                                                Labyrinth
## 6087                                                                                                                                      Saving Private Ryan
## 6088                                                                                                                                          Say Anything...
## 6089                                                                                                                                       American History X
## 6090                                                                                                                                             Office Space
## 6091                                                                                                                                              Matrix, The
## 6092                                                                                                                                Run Lola Run (Lola rennt)
## 6093                                                                                                                                               Fight Club
## 6094                                                                                                                                     Being John Malkovich
## 6095                                                                                                                                               Moonstruck
## 6096                                                                                                                                                 Scrooged
## 6097                                                                                                                                         Running Man, The
## 6098                                                                                                                                       Perfect Storm, The
## 6099                                                                                                                                            Almost Famous
## 6100                                                                                                                                             Best in Show
## 6101                                                                                                                                           Monsters, Inc.
## 6102                                                                                                                                    Royal Tenenbaums, The
## 6103                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 6104                                                                                                                                     Bourne Identity, The
## 6105                                                                                                                   Lord of the Rings: The Two Towers, The
## 6106                                                                                                                                             Pianist, The
## 6107                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 6108                                                                                                                                      Lost in Translation
## 6109                                                                                                           Lord of the Rings: The Return of the King, The
## 6110                                                                                                                    Eternal Sunshine of the Spotless Mind
## 6111                                                                                                                                         Incredibles, The
## 6112                                                                                                                     Enron: The Smartest Guys in the Room
## 6113                                                                                                                                            Batman Begins
## 6114                                                                                                                                           V for Vendetta
## 6115                                                                                                                                    Thank You for Smoking
## 6116                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 6117                                                                                                                                              Ratatouille
## 6118                                                                                                                                                 Superbad
## 6119                                                                                                                                   Lars and the Real Girl
## 6120                                                                                                                                   No Country for Old Men
## 6121                                                                                                                                         Dark Knight, The
## 6122                                                                                                                                                 Iron Man
## 6123                                                                                                                                              Gran Torino
## 6124                                                                                                                                        Fantastic Mr. Fox
## 6125                                                                                                                                                   Avatar
## 6126                                                                                                                                      Alice in Wonderland
## 6127                                                                                                                                 How to Train Your Dragon
## 6128                                                                                                                                                 Kick-Ass
## 6129                                                                                                                                                  Jumanji
## 6130                                                                                                                           Ace Ventura: When Nature Calls
## 6131                                                                                                                                          Dangerous Minds
## 6132                                                                                                                                            Mortal Kombat
## 6133                                                                                                                                               Braveheart
## 6134                                                                                                                                                Apollo 13
## 6135                                                                                                                                           Batman Forever
## 6136                                                                                                                                                   Casper
## 6137                                                                                                                               Die Hard: With a Vengeance
## 6138                                                                                                                                             First Knight
## 6139                                                                                                                                              Judge Dredd
## 6140                                                                                                                            Under Siege 2: Dark Territory
## 6141                                                                                                                                               Waterworld
## 6142                                                                                                                                               Disclosure
## 6143                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 6144                                                                                                                                                     I.Q.
## 6145                                                                                                                                             Little Women
## 6146                                                                                                                                      Legends of the Fall
## 6147                                                                                                                                                 Outbreak
## 6148                                                                                                                                             Pulp Fiction
## 6149                                                                                                                                                Quiz Show
## 6150                                                                                                                                                 Stargate
## 6151                                                                                                                                        Santa Clause, The
## 6152                                                                                                                                                Tommy Boy
## 6153                                                                                                                              What's Eating Gilbert Grape
## 6154                                                                                                                               Ace Ventura: Pet Detective
## 6155                                                                                                                                 Clear and Present Danger
## 6156                                                                                                                                              Client, The
## 6157                                                                                                                                             Forrest Gump
## 6158                                                                                                                                           Lion King, The
## 6159                                                                                                                                                Mask, The
## 6160                                                                                                                                                    Speed
## 6161                                                                                                                                                True Lies
## 6162                                                                                                                                     Addams Family Values
## 6163                                                                                                                                    Beverly Hills Cop III
## 6164                                                                                                                                            Bronx Tale, A
## 6165                                                                                                             City Slickers II: The Legend of Curly's Gold
## 6166                                                                                                                                              Cliffhanger
## 6167                                                                                                                                                     Dave
## 6168                                                                                                                                           Demolition Man
## 6169                                                                                                                                            Fugitive, The
## 6170                                                                                                                                            Jurassic Park
## 6171                                                                                                                                                Tombstone
## 6172                                                                                                                                                  Aladdin
## 6173                                                                                                                               Terminator 2: Judgment Day
## 6174                                                                                                                                       Dances with Wolves
## 6175                                                                                                                                                   Batman
## 6176                                                                                                                                     Beauty and the Beast
## 6177                                                                                                                           Ace Ventura: When Nature Calls
## 6178                                                                                                                                              Black Sheep
## 6179                                                                                                                                           Canadian Bacon
## 6180                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 6181                                                                                                                               Ace Ventura: Pet Detective
## 6182                                                                                                                                                    Speed
## 6183                                                                                                                                               Serial Mom
## 6184                                                                                                                                 Welcome to the Dollhouse
## 6185                                                                                                                                                   Ransom
## 6186                                                                                                                                                 Basquiat
## 6187                                                                                                                                       North by Northwest
## 6188                                                                                                                                                 Swingers
## 6189                                                                                                                                      Weekend at Bernie's
## 6190                                                                                                                              People vs. Larry Flynt, The
## 6191                                                                                                                                 Sex, Lies, and Videotape
## 6192                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6193                                                                                                                                      Princess Bride, The
## 6194                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6195                                                                                                                                               Annie Hall
## 6196                                                                                                                                             Shining, The
## 6197                                                                                                                                              Stand by Me
## 6198                                                                                                                                                 Heathers
## 6199                                                                                                                       Indiana Jones and the Last Crusade
## 6200                                                                                                                               Nightmare on Elm Street, A
## 6201                                                                                                                                       Jingle All the Way
## 6202                                                                                                                                          Raising Arizona
## 6203                                                                                                                                                   Scream
## 6204                                                                                                                                                 Scream 2
## 6205                                                                                                                                              Spice World
## 6206                                                                                                                                       As Good as It Gets
## 6207                                                                                                                                                Labyrinth
## 6208                                                                                                                                          Friday the 13th
## 6209                                                                                                                                                Halloween
## 6210                                                                                                                                             Halloween II
## 6211                                                                                                                       Halloween III: Season of the Witch
## 6212                                                                                                                                              Poltergeist
## 6213                                                                                                                                             Goonies, The
## 6214                                                                                                                                       Mask of Zorro, The
## 6215                                                                                                                                              BASEketball
## 6216                                                                                                                                               Roger & Me
## 6217                                                                                                                                                   Popeye
## 6218                                                                                Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 6219                                                                                                                                           Pretty in Pink
## 6220                                                                                                                                       Wrongfully Accused
## 6221                                                                                                                                                   Willow
## 6222                                                                                                                                       American History X
## 6223                                                                                                                                                   Fletch
## 6224                                                                                                                                                 Rushmore
## 6225                                                                                                                                         Crocodile Dundee
## 6226                                                                                                                                             Office Space
## 6227                                                                                                                                   Breakfast of Champions
## 6228                                                                                                                                         Cruel Intentions
## 6229                                                                                                                                                 Election
## 6230                                                                                                                                               Mummy, The
## 6231                                                                                                                                                Get Bruce
## 6232                                                                                                                                             American Pie
## 6233                                                                                                                                                Cat's Eye
## 6234                                                                                                                           American Werewolf in Paris, An
## 6235                                                                                                                              National Lampoon's Vacation
## 6236                                                                                                                                           Drive Me Crazy
## 6237                                                                                                                                             Happy, Texas
## 6238                                                                                                                                                Body Heat
## 6239                                                                                                                                 Ferris Bueller's Day Off
## 6240                                                                                                                                                Hairspray
## 6241                                                                                                                                               Fight Club
## 6242                                                                                                                                     Being John Malkovich
## 6243                                                                                                                                           American Movie
## 6244                                                                                                                                            Stuart Little
## 6245                                                                                                                                                 Scream 3
## 6246                                                                                                                                              Boiler Room
## 6247                                                                                                                                              Wonder Boys
## 6248                                                                                                                                          Erin Brockovich
## 6249                                                                                                                                            High Fidelity
## 6250                                                                                                                                               Caddyshack
## 6251                                                                                                                                          Big Kahuna, The
## 6252                                                                                                                            Smiling Fish and Goat on Fire
## 6253                                                                                                                                  Pee-wee's Big Adventure
## 6254                                                                                                                                                Road Trip
## 6255                                                                                                                                               Jesus' Son
## 6256                                                                                                                                       Me, Myself & Irene
## 6257                                                                                                                                              Scary Movie
## 6258                                                                                                                                             Chuck & Buck
## 6259                                                                                                                                        Tao of Steve, The
## 6260                                                                                                                                        Cecil B. DeMented
## 6261                                                                                                                            Original Kings of Comedy, The
## 6262                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 6263                                                                                                                                              Nurse Betty
## 6264                                                                                                                                            Almost Famous
## 6265                                                                                                                                       Dancer in the Dark
## 6266                                                                                                                                             Best in Show
## 6267                                                                                                                                Emperor's New Groove, The
## 6268                                                                                                                                                  Pollock
## 6269                                                                                                                               O Brother, Where Art Thou?
## 6270                                                                                                                                     Revenge of the Nerds
## 6271                                                                                                                                                 Joe Dirt
## 6272                                                                                                                                  Josie and the Pussycats
## 6273                                                                                                                                                  Chopper
## 6274                                                                                                                               Throw Momma from the Train
## 6275                                                                                                                                              Animal, The
## 6276                                                                                                                                               Sexy Beast
## 6277                                                                                                                                            Scary Movie 2
## 6278                                                                                                                                           Legally Blonde
## 6279                                                                                                                                                    Bully
## 6280                                                                                                                                                     Made
## 6281                                                                                                                                            Caddyshack II
## 6282                                                                                                                                                   Colors
## 6283                                                                                                                                   Ernest Saves Christmas
## 6284                                                                                                                                      Great Outdoors, The
## 6285                                                                                                                                                    Twins
## 6286                                                                                                                                       Look Who's Talking
## 6287                                                                                                                                                 Loverboy
## 6288                                                                                                                                              Ghost World
## 6289                                                                                                                                       Planet of the Apes
## 6290                                                                                                                                  Wet Hot American Summer
## 6291                                                                                                                               Return of Swamp Thing, The
## 6292                                                                                                                                See No Evil, Hear No Evil
## 6293                                                                                                                                                      UHF
## 6294                                                                                                                                               Uncle Buck
## 6295                                                                                                                                           American Pie 2
## 6296                                                                                                                                                 Rat Race
## 6297                                                                                                                                                 Silkwood
## 6298                                                                                                                                             Donnie Darko
## 6299                                                                                                                                              Shallow Hal
## 6300                                                                                                                                                Novocaine
## 6301                                                                                                                                                 Toy, The
## 6302                                                                                                                                           Stunt Man, The
## 6303                                                                                                                                           Ocean's Eleven
## 6304                                                                                                                                   Not Another Teen Movie
## 6305                                                                                                                                              Vanilla Sky
## 6306                                                                                                                                       White Water Summer
## 6307                                                                                                                                           Monster's Ball
## 6308                                                                                                                                             Storytelling
## 6309                                                                                                                                               Crossroads
## 6310                                                                                                                                              High Crimes
## 6311                                                                                                                                       Husbands and Wives
## 6312                                                                                                                            Kid Stays in the Picture, The
## 6313                                                                                                                                    Bowling for Columbine
## 6314                                                                                                                                         Punch-Drunk Love
## 6315                                                                                                                                                     Heat
## 6316                                                                                                                                               Get Shorty
## 6317                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 6318                                                                                                                                                 Clueless
## 6319                                                                                                                                     Seven (a.k.a. Se7en)
## 6320                                                                                                                                      Usual Suspects, The
## 6321                                                                                                                                      From Dusk Till Dawn
## 6322                                                                                                                                               Braveheart
## 6323                                                                                                                                                Apollo 13
## 6324                                                                                                                                             Strange Days
## 6325                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 6326                                                                                                                       Star Wars: Episode IV - A New Hope
## 6327                                                                                                                                     Natural Born Killers
## 6328                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 6329                                                                                                                                             Pulp Fiction
## 6330                                                                                                                                                 Stargate
## 6331                                                                                                                              What's Eating Gilbert Grape
## 6332                                                                                                                                                    Speed
## 6333                                                                                                                                  In the Mouth of Madness
## 6334                                                                                                                                           Demolition Man
## 6335                                                                                                                                              Killing Zoe
## 6336                                                                                                                                         Schindler's List
## 6337                                                                                                                                             Blade Runner
## 6338                                                                                                                                             True Romance
## 6339                                                                                                                                            War Room, The
## 6340                                                                                                                                 Welcome to the Dollhouse
## 6341                                                                                                                                    Celluloid Closet, The
## 6342                                                                                                                               Terminator 2: Judgment Day
## 6343                                                                                                                                Silence of the Lambs, The
## 6344                                                                                                                                     Beauty and the Beast
## 6345                                                                                                                                          Wild Bunch, The
## 6346                                                                                                                                                    Fargo
## 6347                                                                                                                                              Heavy Metal
## 6348                                                                                                                         Some Folks Call It a Sling Blade
## 6349                                                                                                                                               Craft, The
## 6350                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 6351                                                                                                                                           Godfather, The
## 6352                                                                                                                                               Casablanca
## 6353                                                                                                                                      Maltese Falcon, The
## 6354                                                                                                                                        Wizard of Oz, The
## 6355                                                                                                                                             Citizen Kane
## 6356                                                                                                                                    2001: A Space Odyssey
## 6357                                                                                                                            Adventures of Robin Hood, The
## 6358                                                                                                                                       African Queen, The
## 6359                                                                                                                                                 Die Hard
## 6360                                                                                                                     William Shakespeare's Romeo + Juliet
## 6361                                                                                                                                           Reservoir Dogs
## 6362                                                                                                                                                  Platoon
## 6363                                                                                                                                           Basic Instinct
## 6364                                                                                                                               E.T. the Extra-Terrestrial
## 6365                                                                                                                                    Rebel Without a Cause
## 6366                                                                                                                                Streetcar Named Desire, A
## 6367                                                                                                                              People vs. Larry Flynt, The
## 6368                                                                                                                                     Escape from New York
## 6369                                                                                                                                             Howling, The
## 6370                                                                                                                                       When We Were Kings
## 6371                                                                                                                                           Paths of Glory
## 6372                                                                                                                                            Grifters, The
## 6373                                                                                                                          One Flew Over the Cuckoo's Nest
## 6374                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6375                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6376                                                                                                                                                   Aliens
## 6377                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 6378                                                                                                                                       Lawrence of Arabia
## 6379                                                                                                                                      Clockwork Orange, A
## 6380                                                                                                                                    To Kill a Mockingbird
## 6381                                                                                                                                           Apocalypse Now
## 6382                                                                                                                                               Goodfellas
## 6383                                                                                                                                                    Alien
## 6384                                                                                                                                         Army of Darkness
## 6385                                                                                                                                                   Psycho
## 6386                                                                                                                                      Blues Brothers, The
## 6387                                                                                                                                  Godfather: Part II, The
## 6388                                                                                                                                        Full Metal Jacket
## 6389                                                                                                                                         Right Stuff, The
## 6390                                                                                                                                               Sting, The
## 6391                                                                                                                                          Terminator, The
## 6392                                                                                                                                            Graduate, The
## 6393                                                                                                                            Bridge on the River Kwai, The
## 6394                                                                                                                                                Chinatown
## 6395                                                                                                                           Day the Earth Stood Still, The
## 6396                                                                                                                        Treasure of the Sierra Madre, The
## 6397                                                                                                                                             Shining, The
## 6398                                                                                                                                              Stand by Me
## 6399                                                                                                                                        Great Escape, The
## 6400                                                                                                                                         Deer Hunter, The
## 6401                                                                                                                                Manchurian Candidate, The
## 6402                                                                                                                                       Back to the Future
## 6403                                                                                                                                                   Patton
## 6404                                                                                                                                           Cool Hand Luke
## 6405                                                                                                                                                  Ben-Hur
## 6406                                                                                                                                     Pink Floyd: The Wall
## 6407                                                                                                                                      Killing Fields, The
## 6408                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 6409                                                                                                                          American Werewolf in London, An
## 6410                                                                                                                          Dracula (Bram Stoker's Dracula)
## 6411                                                                                                       Bride of Frankenstein, The (Bride of Frankenstein)
## 6412                                                                                                                                              Sling Blade
## 6413                                                                                                                                                     Jaws
## 6414                                                                                                                                                 Sneakers
## 6415                                                                                                                                                   Scream
## 6416                                                                                                                                             Lost Highway
## 6417                                                                                                                                       Fifth Element, The
## 6418                                                                                                                                Men in Black (a.k.a. MIB)
## 6419                                                                                                                                                 Cop Land
## 6420                                                                                                                                        Conspiracy Theory
## 6421                                                                                                                                Hunt for Red October, The
## 6422                                                                                                                                        L.A. Confidential
## 6423                                                                                                                                     The Devil's Advocate
## 6424                                                                                                                                                  Gattaca
## 6425                                                                                                                                        Starship Troopers
## 6426                                                                                                                                      Alien: Resurrection
## 6427                                                                                                                                                   Fallen
## 6428                                                                                                                             There's Something About Mary
## 6429                                                                                                                                     Mutiny on the Bounty
## 6430                                                                                                                                          Midnight Cowboy
## 6431                                                                                                                                                    Rocky
## 6432                                                                                                                                                 Repo Man
## 6433                                                                                                                                            Exorcist, The
## 6434                                                                                                                                            Soylent Green
## 6435                                                                                                                                      Saving Private Ryan
## 6436                                                                                                                                               Roger & Me
## 6437                                                                                                                                              Blue Velvet
## 6438                                                                                                                                                     Tron
## 6439                                                                                                                                               Thing, The
## 6440                                                                                                                                              Player, The
## 6441                                                                                                                           2010: The Year We Make Contact
## 6442                                                                                                                    I Still Know What You Did Last Summer
## 6443                                                                                                                                       Enemy of the State
## 6444                                                                                                                                                King Kong
## 6445                                                                                                                                      Shakespeare in Love
## 6446                                                                                                                                                   Cocoon
## 6447                                                                                                                                                Westworld
## 6448                                                                                                                                              Logan's Run
## 6449                                                                                                                                       Planet of the Apes
## 6450                                                                                                                                    Village of the Damned
## 6451                                                                                                                                              Matrix, The
## 6452                                                                                                                                                 Election
## 6453                                                                                                                                                  Dracula
## 6454                                                                                                                                             Frankenstein
## 6455                                                                                                                           Rocky Horror Picture Show, The
## 6456                                                                                                                                   War of the Worlds, The
## 6457                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 6458                                                                                                                                         Sixth Sense, The
## 6459                                                                                                                           American Werewolf in Paris, An
## 6460                                                                                                                                                      Big
## 6461                                                                                                                                          American Beauty
## 6462                                                                                                                                      Hard Day's Night, A
## 6463                                                                                                                                              Deliverance
## 6464                                                                                                                                                 Phantasm
## 6465                                                                                                                                           Boys Don't Cry
## 6466                                                                                                                                             Total Recall
## 6467                                                                                                                                      High Plains Drifter
## 6468                                                                                                                                         Dirty Dozen, The
## 6469                                                                                                                                                   Dr. No
## 6470                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 6471                                                                                                                                            All That Jazz
## 6472                                                                                                                                                  RoboCop
## 6473                                                                                                                                 Who Framed Roger Rabbit?
## 6474                                                                                                                                           Omega Man, The
## 6475                                                                                                                                           Mister Roberts
## 6476                                                                                                                                         Longest Day, The
## 6477                                                                                                                                        Tora! Tora! Tora!
## 6478                                                                                                                                         Jeremiah Johnson
## 6479                                                                                                                                               Easy Rider
## 6480                                                                                                                                                Stalag 17
## 6481                                                                                                                                            Patriot Games
## 6482                                                                                                                                                 Snow Day
## 6483                                                                                                                                              Bull Durham
## 6484                                                                                                                                                      JFK
## 6485                                                                                                                                          Thelma & Louise
## 6486                                                                                                                                                      Hud
## 6487                                                                                                                                             Hustler, The
## 6488                                                                                                                       Close Encounters of the Third Kind
## 6489                                                                                                                                                  Network
## 6490                                                                                                                                  Outlaw Josey Wales, The
## 6491                                                                                                                                                 Predator
## 6492                                                                                                                                             Marathon Man
## 6493                                                                                                                                        Seven Days in May
## 6494                                                                                                                                                  Mad Max
## 6495                                                                                                                            Road Warrior, The (Mad Max 2)
## 6496                                                                                                                                              Angel Heart
## 6497                                                                                                                                                Near Dark
## 6498                                                                                                                                           Breaker Morant
## 6499                                                                                                                                               Hellraiser
## 6500                                                                                                                                         Fantastic Voyage
## 6501                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 6502                                                                                                                                                   Powder
## 6503                                                                                                                                        Dolores Claiborne
## 6504                                                                                                                                       Heavenly Creatures
## 6505                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 6506                                                                                                                                               Craft, The
## 6507                                                                                                                                                     Emma
## 6508                                                                                                                                             My Fair Lady
## 6509                                                                                                                                                    Dumbo
## 6510                                                                                                                                 Long Kiss Goodnight, The
## 6511                                                                                                                                        Strictly Ballroom
## 6512                                                                                                                                         Right Stuff, The
## 6513                                                                                                                                Femme Nikita, La (Nikita)
## 6514                                                                                                                                Manchurian Candidate, The
## 6515                                                                                                                                                     Tron
## 6516                                                                                                                                                    Ronin
## 6517                                                                                                                                              Player, The
## 6518                                                                                                                                                Elizabeth
## 6519                                                                                                                                             Time Bandits
## 6520                                                                                                                                               Moonstruck
## 6521                                                                                                                                       Perfect Storm, The
## 6522                                                                                                                                                     Heat
## 6523                                                                                                                                                   Casino
## 6524                                                                                                                                               Four Rooms
## 6525                                                                                                                                               Get Shorty
## 6526                                                                                                                                        Leaving Las Vegas
## 6527                                                                                                                                          Dangerous Minds
## 6528                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 6529                                                                                                                                         Dead Man Walking
## 6530                                                                                                                                              Richard III
## 6531                                                                                                                                               To Die For
## 6532                                                                                                                                      Usual Suspects, The
## 6533                                                                                                                                         Mighty Aphrodite
## 6534                                                                                                                                                  Georgia
## 6535                                                                                                                                    Home for the Holidays
## 6536                                                                                                                               Postman, The (Postino, Il)
## 6537                                                                                                                              French Twist (Gazon maudit)
## 6538                                                                                                                                              Taxi Driver
## 6539                                                                                                                                   Brothers McMullen, The
## 6540                                                                                                                                                 Bad Boys
## 6541                                                                                                                                  Basketball Diaries, The
## 6542                                                                                                                                                  Rob Roy
## 6543                                                                                                                               Die Hard: With a Vengeance
## 6544                                                                                                                                            Billy Madison
## 6545                                                                                                                                                   Clerks
## 6546                                                                                                                     Eat Drink Man Woman (Yin shi nan nu)
## 6547                                                                                                                                              French Kiss
## 6548                                                                                                                                   Farinelli: il castrato
## 6549                                                                                                                                              Hoop Dreams
## 6550                                                                                                                                               Houseguest
## 6551                                                                                                                                         Immortal Beloved
## 6552                                                                                                                                                     I.Q.
## 6553                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 6554                                                                                                                                                   Junior
## 6555                                                                                                                       Star Wars: Episode IV - A New Hope
## 6556                                                                                                                                             Little Women
## 6557                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 6558                                                                                                                              Madness of King George, The
## 6559                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 6560                                                                                                                                   Miracle on 34th Street
## 6561                                                                                                                                                     Nell
## 6562                                                                                                                                     Natural Born Killers
## 6563                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 6564                                                                                                                                             Pulp Fiction
## 6565                                                                                                                                                Quiz Show
## 6566                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 6567                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 6568                                                                                                                 Three Colors: White (Trzy kolory: Bialy)
## 6569                                                                                                                                  Stuart Saves His Family
## 6570                                                                                                                                          Specialist, The
## 6571                                                                                                                                Shawshank Redemption, The
## 6572                                                                                                             Strawberry and Chocolate (Fresa y chocolate)
## 6573                                                                                                                                     Vanya on 42nd Street
## 6574                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 6575                                                                                                                                    Bullets Over Broadway
## 6576                                                                                                                                              Client, The
## 6577                                                                                                                                             Forrest Gump
## 6578                                                                                                                              Four Weddings and a Funeral
## 6579                                                                                                                                         Jungle Book, The
## 6580                                                                                                                                                 Maverick
## 6581                                                                                                                                            Reality Bites
## 6582                                                                                                                                 When a Man Loves a Woman
## 6583                                                                                                                                                     Wolf
## 6584                                                                                                                                    Age of Innocence, The
## 6585                                                                                                                                    Beverly Hills Cop III
## 6586                                                                                                                                            Carlito's Way
## 6587                                                                                                             City Slickers II: The Legend of Curly's Gold
## 6588                                                                                                                                              Cliffhanger
## 6589                                                                                                                                                     Dave
## 6590                                                                                                                                                Firm, The
## 6591                                                                                                                                            Fugitive, The
## 6592                                                                                                                                House of the Spirits, The
## 6593                                                                                                                                In the Name of the Father
## 6594                                                                                                                                            Jurassic Park
## 6595                                                                                                                                               Kalifornia
## 6596                                                                                                                                  Man Without a Face, The
## 6597                                                                                                                                             Philadelphia
## 6598                                                                                                                                               Piano, The
## 6599                                                                                                                                  Remains of the Day, The
## 6600                                                                                                                                        Romeo Is Bleeding
## 6601                                                                                                                                                     Rudy
## 6602                                                                                                                                         Schindler's List
## 6603                                                                                                                                       Secret Garden, The
## 6604                                                                                                                                               Serial Mom
## 6605                                                                                                                                              Shadowlands
## 6606                                                                                                                                     Sleepless in Seattle
## 6607                                                                                                                                                   Sliver
## 6608                                                                                                                             So I Married an Axe Murderer
## 6609                                                                                                                          Nightmare Before Christmas, The
## 6610                                                                                                                                               Home Alone
## 6611                                                                                                                                                    Ghost
## 6612                                                                                                                                                  Aladdin
## 6613                                                                                                                                       Dances with Wolves
## 6614                                                                                                                                                   Batman
## 6615                                                                                                                                Silence of the Lambs, The
## 6616                                                                                                                                             Pretty Woman
## 6617                                                                                                                                               Diabolique
## 6618                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 6619                                                                                                                                            Trainspotting
## 6620                                                                                                                                     Nutty Professor, The
## 6621                                                                                                                                                     Emma
## 6622                                                                                                                                                 Die Hard
## 6623                                                                                               Return of Martin Guerre, The (Retour de Martin Guerre, Le)
## 6624                                                                                                                                 Star Trek: First Contact
## 6625                                                                                                                                           101 Dalmatians
## 6626                                                                                                                                                Toy Story
## 6627                                                                                                                                           Lion King, The
## 6628                                                                                                                                     Beauty and the Beast
## 6629                                                                                                                                   Breakfast at Tiffany's
## 6630                                                                                                                                               Casablanca
## 6631                                                                                                                                       Gone with the Wind
## 6632                                                                                                                            Adventures of Robin Hood, The
## 6633                                                                                                                          One Flew Over the Cuckoo's Nest
## 6634                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6635                                                                                                                                       Dead Poets Society
## 6636                                                                                                                                  When Harry Met Sally...
## 6637                                                                                                                                                    Mulan
## 6638                                                                                                                                      Saving Private Ryan
## 6639                                                                                                                                      Little Mermaid, The
## 6640                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 6641                                                                                                                                                Rush Hour
## 6642                                                                                                                                          American Beauty
## 6643                                                                                                                                    East-West (Est-ouest)
## 6644                                                                                                                                            High Fidelity
## 6645                                                                                                                                             East is East
## 6646                                                                                                                      Flintstones in Viva Rock Vegas, The
## 6647                                                                                                                                              Chicken Run
## 6648                                                                                                                                         Meet the Parents
## 6649                                                                                                                                         Charlie's Angels
## 6650                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 6651                                                                                                                                                   Snatch
## 6652                                                                                                                                                 Chocolat
## 6653                                                                                                                                    Dude, Where's My Car?
## 6654                                                                                                                                          What Women Want
## 6655                                                                                                                                                  Traffic
## 6656                                                                                                                                      Save the Last Dance
## 6657                                                                                                                                     Wedding Planner, The
## 6658                                                                                                                                                   Casino
## 6659                                                                                                                                     Seven (a.k.a. Se7en)
## 6660                                                                                                                                               Braveheart
## 6661                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 6662                                                                                                                                             Pulp Fiction
## 6663                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 6664                                                                                                                                Shawshank Redemption, The
## 6665                                                                                                                                             Forrest Gump
## 6666                                                                                                                                           Lion King, The
## 6667                                                                                                                                            Little Buddha
## 6668                                                                                                                                                Mask, The
## 6669                                                                                                                                         Schindler's List
## 6670                                                                                                                                                  Aladdin
## 6671                                                                                                                                       Dances with Wolves
## 6672                                                                                                                                Silence of the Lambs, The
## 6673                                                                                                                                            Trainspotting
## 6674                                                                                                                                                     Emma
## 6675                                                                                                                                           Godfather, The
## 6676                                                                                                                                            All About Eve
## 6677                                                                                                                                                  Bananas
## 6678                                                                                                                             Monty Python's Life of Brian
## 6679                                                                                                                          Monty Python and the Holy Grail
## 6680                                                                                                                  Cinema Paradiso (Nuovo cinema Paradiso)
## 6681                                                                                                                                               Goodfellas
## 6682                                                                                                                                  Godfather: Part II, The
## 6683                                                                                                                                                Manhattan
## 6684                                                                                                Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance)
## 6685                                                                                                                                         Truman Show, The
## 6686                                                                                                                                        Good Will Hunting
## 6687                                                                                                                                            Lethal Weapon
## 6688                                                                                                                                                   Lolita
## 6689                                                                                                                Fanny and Alexander (Fanny och Alexander)
## 6690                                                                                                                                                 Mephisto
## 6691                                                                                                                                     Return of Jafar, The
## 6692                                                                                                                              Autumn Sonata (Höstsonaten)
## 6693                                                                                                                                        Untouchables, The
## 6694                                                                                                                      Life Is Beautiful (La Vita è bella)
## 6695                                                                                                                                              Matrix, The
## 6696                                                                                                                                              Superman II
## 6697                                                                                                                       Red Violin, The (Violon rouge, Le)
## 6698                                                                                                                                               Radio Days
## 6699                                                                                                                                          American Beauty
## 6700                                                                                                                                               Fight Club
## 6701                                                                                                                        Ghost Dog: The Way of the Samurai
## 6702                                                                                                                                                Gladiator
## 6703                                                                                                                                                   Baraka
## 6704                                                                                                                                    Good Morning, Babylon
## 6705                                                                                                                                                  Memento
## 6706                                                                                                                  Cries and Whispers (Viskningar och rop)
## 6707                                                                                                                                  Not Without My Daughter
## 6708                                                                                                                                                     Fame
## 6709                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 6710                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 6711                                                                                                                                        Beautiful Mind, A
## 6712                                                                                                                                               Spider-Man
## 6713                                                                                                                                     Bourne Identity, The
## 6714                                                                                                                   Lord of the Rings: The Two Towers, The
## 6715                                                                                                   Night of the Shooting Stars (Notte di San Lorenzo, La)
## 6716                                                                                                                                     Matrix Reloaded, The
## 6717                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 6718                                                                                                                                             Mystic River
## 6719                                                                                                                                        Kill Bill: Vol. 1
## 6720                                                                                                                                                 21 Grams
## 6721                                                                                                     Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 6722                                                                                                                                                 Amarcord
## 6723                                                                                                           Lord of the Rings: The Return of the King, The
## 6724                                                                                                                                               Strada, La
## 6725                                                                                                                                                  Persona
## 6726                                                                                                         Scenes From a Marriage (Scener ur ett äktenskap)
## 6727                                                                                                                                        Kill Bill: Vol. 2
## 6728                                                                                                                                          Shame (Skammen)
## 6729                                                                                                          Smiles of a Summer Night (Sommarnattens leende)
## 6730                                                                                                                                           Dolce Vita, La
## 6731                                                                                                                                      Hiroshima Mon Amour
## 6732                                                                                                                                                Viridiana
## 6733                                                                                                    Short Film About Killing, A (Krótki film o zabijaniu)
## 6734                                                                                                                                 Decalogue, The (Dekalog)
## 6735                                                                                                                                            Batman Begins
## 6736                                                                                                             Lives of Others, The (Das leben der Anderen)
## 6737                                                                                                                                                  Offside
## 6738                                                                                                                                            Blood Diamond
## 6739                                                                                                                                         Eastern Promises
## 6740                                                                                                                                            Into the Wild
## 6741                                                                                                                                         Dark Knight, The
## 6742                                                                                                                                                  Fiorile
## 6743                                                                                                                                                   WALL·E
## 6744                                                                                                                                              Gran Torino
## 6745                                                                                                         Through the Olive Trees (Zire darakhatan zeyton)
## 6746                                                                                                                                            Padre padrone
## 6747                                                                                                                                 Prophet, A (Un Prophète)
## 6748                                                                                                                              About Elly (Darbareye Elly)
## 6749                                                                                                                                                Inception
## 6750                                                                                                                                                Incendies
## 6751                                                                                                                  Separation, A (Jodaeiye Nader az Simin)
## 6752                                                                                                                                       Hunt, The (Jagten)
## 6753                                                                                                                                      Patience Stone, The
## 6754                                                                                                                     Caesar Must Die (Cesare deve morire)
## 6755                                                                                                                              Oh Boy (A Coffee in Berlin)
## 6756                                                                                                                                                   Wadjda
## 6757                                                                                                                                     Past, The (Le passé)
## 6758                                                                                                                                             Blue Jasmine
## 6759                                                                                                                                                 Nebraska
## 6760                                                                                                               Blue Is the Warmest Color (La vie d'Adèle)
## 6761                                                                                                                                            Congress, The
## 6762                                                                                                                          The Hunger Games: Catching Fire
## 6763                                                                                                                                 Wolf of Wall Street, The
## 6764                                                                                                                 Fireworks Wednesday (Chaharshanbe-soori)
## 6765                                                                                                                                Grand Budapest Hotel, The
## 6766                                                                                                                      Captain America: The Winter Soldier
## 6767                                                                                                                                                  Calvary
## 6768                                                                                                                                              The Martian
## 6769                                                                                                                                                     Heat
## 6770                                                                                                                                                GoldenEye
## 6771                                                                                                                                                   Casino
## 6772                                                                                                                                               Get Shorty
## 6773                                                                                                                                                  Copycat
## 6774                                                                                                                                          Dangerous Minds
## 6775                                                                                                                                     Seven (a.k.a. Se7en)
## 6776                                                                                                                                      Usual Suspects, The
## 6777                                                                                                                                                   Friday
## 6778                                                                                                                                      From Dusk Till Dawn
## 6779                                                                                                                                          Misérables, Les
## 6780                                                                                                                                                Screamers
## 6781                                                                                                                                               Braveheart
## 6782                                                                                                                                                 Bad Boys
## 6783                                                                                                                                                Apollo 13
## 6784                                                                                                                                           Batman Forever
## 6785                                                                                                                                                    Congo
## 6786                                                                                                                                                    Crumb
## 6787                                                                                                                               Die Hard: With a Vengeance
## 6788                                                                                                                                             First Knight
## 6789                                                                                                                                                  Hackers
## 6790                                                                                                                                                     Kids
## 6791                                                                                                                                        Lord of Illusions
## 6792                                                                                                                                                 Mallrats
## 6793                                                                                                                                            Prophecy, The
## 6794                                                                                                                                             Strange Days
## 6795                                                                                                                                             Castle Freak
## 6796                                                                                                                                                   Clerks
## 6797                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 6798                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 6799                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 6800                                                                                                                                            Beyond Bedlam
## 6801                                                                                                                                     Natural Born Killers
## 6802                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 6803                                                                                                                                             Pulp Fiction
## 6804                                                                                                                                          Specialist, The
## 6805                                                                                                                                                 Stargate
## 6806                                                                                                              Tales from the Crypt Presents: Demon Knight
## 6807                                                                                                                                      Tales from the Hood
## 6808                                                                                                                                    Village of the Damned
## 6809                                                                                                                                                Tommy Boy
## 6810                                                                                                                                               Virtuosity
## 6811                                                                                                                               Ace Ventura: Pet Detective
## 6812                                                                                                                                                Crow, The
## 6813                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 6814                                                                                                                                                True Lies
## 6815                                                                                                                                           Body Snatchers
## 6816                                                                                                                                              Cliffhanger
## 6817                                                                                                                                            Fugitive, The
## 6818                                                                                                                                                Tombstone
## 6819                                                                                                                                             True Romance
## 6820                                                                                                                                                  Aladdin
## 6821                                                                                                                                       Dances with Wolves
## 6822                                                                                                                                                   Batman
## 6823                                                                                                                                Silence of the Lambs, The
## 6824                                                                                                                                     Beauty and the Beast
## 6825                                                                                                                          Candyman: Farewell to the Flesh
## 6826                                                                                                                                    Hellraiser: Bloodline
## 6827                                                                                                                                      Mission: Impossible
## 6828                                                                                                                                                     Fear
## 6829                                                                                                                            Kids in the Hall: Brain Candy
## 6830                                                                                                                                                 Spy Hard
## 6831                                                                                                                                      Usual Suspects, The
## 6832                                                                                                                       Star Wars: Episode IV - A New Hope
## 6833                                                                                                                          Monty Python and the Holy Grail
## 6834                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6835                                                                                                                                      Princess Bride, The
## 6836                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6837                                                                                                                                               Fight Club
## 6838                                                                                                                                                  Memento
## 6839                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 6840                                                                                                           Lord of the Rings: The Return of the King, The
## 6841                                                                                                                    Eternal Sunshine of the Spotless Mind
## 6842                                                                                                                                        Shaun of the Dead
## 6843                                                                                                                                         Incredibles, The
## 6844                                                                                                                                            Batman Begins
## 6845                                                                                                                                      Kiss Kiss Bang Bang
## 6846                                                                                                                                           V for Vendetta
## 6847                                                                                                                                            Departed, The
## 6848                                                                                                                                          Children of Men
## 6849                                                                                                                                            Prestige, The
## 6850                                                                                                                                            Casino Royale
## 6851                                                                                                                                                 Hot Fuzz
## 6852                                                                                                                                                   Zodiac
## 6853                                                                                                                                   No Country for Old Men
## 6854                                                                                                                                         Dark Knight, The
## 6855                                                                                                                                     Inglourious Basterds
## 6856                                                                                                                                                     Moon
## 6857                                                                                                                                                       Up
## 6858                                                                                                                                               District 9
## 6859                                                                                                                                           Shutter Island
## 6860                                                                                                                                                Inception
## 6861                                                                                                                              Scott Pilgrim vs. the World
## 6862                                                                                                                                         Django Unchained
## 6863                                                                                                                                                      Her
## 6864                                                                                                                                             Interstellar
## 6865                                                                                                                                                Gone Girl
## 6866                                                                                                                                       The Imitation Game
## 6867                                                                                                                                       Mad Max: Fury Road
## 6868                                                                                                               Star Wars: Episode VII - The Force Awakens
## 6869                                                                                                                                                 Deadpool
## 6870                                                                                                                           Me and Earl and the Dying Girl
## 6871                                                                                                                                              The Martian
## 6872                                                                                                                                      10 Cloverfield Lane
## 6873                                                                                                                                                 Zootopia
## 6874                                                                                                                                                  Jumanji
## 6875                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 6876                                                                                                                                               Braveheart
## 6877                                                                                                                                                   Angela
## 6878                                                                                                                               Die Hard: With a Vengeance
## 6879                                                                                                                                          Johnny Mnemonic
## 6880                                                                                                                                              Judge Dredd
## 6881                                                                                                                                                  Species
## 6882                                                                                                                                               Waterworld
## 6883                                                                                                                                                  Exotica
## 6884                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 6885                                                                                                                       Star Wars: Episode IV - A New Hope
## 6886                                                                                                                                       Little Princess, A
## 6887                                                                                                                                                 Stargate
## 6888                                                                                                                                                Tank Girl
## 6889                                                                                                                                   Star Trek: Generations
## 6890                                                                                                                                    Village of the Damned
## 6891                                                                                                                                                Crow, The
## 6892                                                                                                                                             Forrest Gump
## 6893                                                                                                                                                    Speed
## 6894                                                                                                                                                True Lies
## 6895                                                                                                                                           Body Snatchers
## 6896                                                                                                                                                Coneheads
## 6897                                                                                                                                           Demolition Man
## 6898                                                                                                                                            Fugitive, The
## 6899                                                                                                                                             Blade Runner
## 6900                                                                                                                                                   Batman
## 6901                                                                                                                                              Heavy Metal
## 6902                                                                                                                                      Mission: Impossible
## 6903                                                                                                                                               Barbarella
## 6904                                                                                                                                                  Twister
## 6905                                                                                                                                             Arrival, The
## 6906                                                                                                                            Independence Day (a.k.a. ID4)
## 6907                                                                                                                                         Escape from L.A.
## 6908                                                                                                                                     Little Princess, The
## 6909                                                                                                                                        Wizard of Oz, The
## 6910                                                                                                                                    2001: A Space Odyssey
## 6911                                                                                                                                            Fly Away Home
## 6912                                                                                                                                       Lawnmower Man, The
## 6913                                                                                                                      Willy Wonka & the Chocolate Factory
## 6914                                                                                                                                                  Sleeper
## 6915                                                                                                                               E.T. the Extra-Terrestrial
## 6916                                                                                                                                               Abyss, The
## 6917                                                                                                                                     Escape from New York
## 6918                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6919                                                                                                                                                   Aliens
## 6920                                                                                                                                      Clockwork Orange, A
## 6921                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 6922                                                                                                                                                    Alien
## 6923                                                                                                                                      Blues Brothers, The
## 6924                                                                                                                                        Full Metal Jacket
## 6925                                                                                                                                          Terminator, The
## 6926                                                                                                                                       Back to the Future
## 6927                                                                                                                                     Pink Floyd: The Wall
## 6928                                                                                                                                          Field of Dreams
## 6929                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 6930                                                                                                                                               Birds, The
## 6931                                                                                                                                 Star Trek: First Contact
## 6932                                                                                                                            Star Trek: The Motion Picture
## 6933                                                                                                                   Star Trek VI: The Undiscovered Country
## 6934                                                                                                                          Star Trek V: The Final Frontier
## 6935                                                                                                                          Star Trek II: The Wrath of Khan
## 6936                                                                                                                      Star Trek III: The Search for Spock
## 6937                                                                                                                            Star Trek IV: The Voyage Home
## 6938                                                                                                                                       Cement Garden, The
## 6939                                                                                                                                       Fifth Element, The
## 6940                                                                                                                                                  Ponette
## 6941                                                                                                                                                  Con Air
## 6942                                                                                                                                Men in Black (a.k.a. MIB)
## 6943                                                                                                                                                    Spawn
## 6944                                                                                                                                        Starship Troopers
## 6945                                                                                                                                      Alien: Resurrection
## 6946                                                                                                                                     Sweet Hereafter, The
## 6947                                                                                                                                              Wag the Dog
## 6948                                                                                                                                                Dark City
## 6949                                                                                                                                      Blues Brothers 2000
## 6950                                                                                                                                                   Sphere
## 6951                                                                                                                                              Deep Impact
## 6952                                                                                                                                                Lawn Dogs
## 6953                                                                                                                                               Armageddon
## 6954                                                                                                                                                 Repo Man
## 6955                                                                                                                                            Exorcist, The
## 6956                                                                                                                                          Lethal Weapon 2
## 6957                                                                                                                                                 Gremlins
## 6958                                                                                                                                            Soylent Green
## 6959                                                                                                                               Back to the Future Part II
## 6960                                                                                                                              Back to the Future Part III
## 6961                                                                                                                                                   Lolita
## 6962                                                                                                                                                     Tron
## 6963                                                                                                                              1984 (Nineteen Eighty-Four)
## 6964                                                                                                                                              Beetlejuice
## 6965                                                                                                                                                     Cube
## 6966                                                                                                                           2010: The Year We Make Contact
## 6967                                                                                                                                                  Soldier
## 6968                                                                                                                                                 Fly, The
## 6969                                                                                                                                                 Fly, The
## 6970                                                                                                                                                  Airport
## 6971                                                                                                                                             Airport 1975
## 6972                                                                                                                                              Airport '77
## 6973                                                                                                                                              Logan's Run
## 6974                                                                                                                                       Planet of the Apes
## 6975                                                                                                                           Beneath the Planet of the Apes
## 6976                                                                                                                        Battle for the Planet of the Apes
## 6977                                                                                                                       Conquest of the Planet of the Apes
## 6978                                                                                                                               Concorde: Airport '79, The
## 6979                                                                                                                                    Village of the Damned
## 6980                                                                                                                                              Matrix, The
## 6981                                                                                                                                                 eXistenZ
## 6982                                                                                                                                                 Superman
## 6983                                                                                                                                              Superman II
## 6984                                                                                                                                             Superman III
## 6985                                                                                                                                                   Lolita
## 6986                                                                                                                                   Little Shop of Horrors
## 6987                                                                                                                                        Universal Soldier
## 6988                                                                                                                                          American Beauty
## 6989                                                                                                                                                    Tommy
## 6990                                                                                                                                             Total Recall
## 6991                                                                                                                                 Ferris Bueller's Day Off
## 6992                                                                                                                                         Blue Lagoon, The
## 6993                                                                                                                                               Spaceballs
## 6994                                                                                                                                         Bicentennial Man
## 6995                                                                                                                                             Galaxy Quest
## 6996                                                                                                                                            Wayne's World
## 6997                                                                                                                                              Pitch Black
## 6998                                                                                                                                          Mission to Mars
## 6999                                                                                                                       Close Encounters of the Third Kind
## 7000                                                                                                                                                Ladyhawke
## 7001                                                                                                                                     Virgin Suicides, The
## 7002                                                                                                                                        Battlefield Earth
## 7003                                                                                                                                                Moonraker
## 7004                                                                                                                                         Running Man, The
## 7005                                                                                                                                                  Starman
## 7006                                                                                                                                                  Mad Max
## 7007                                                                                                                            Road Warrior, The (Mad Max 2)
## 7008                                                                                                                               Mad Max Beyond Thunderdome
## 7009                                                                                                                                               Titan A.E.
## 7010                                                                                                                                                    X-Men
## 7011                                                                                                                                                 Freejack
## 7012                                                                                                                                                Cell, The
## 7013                                                                                                                                       Dancer in the Dark
## 7014                                                                                                                                                  Runaway
## 7015                                                                                                                                             6th Day, The
## 7016                                                                                                                                                    Annie
## 7017                                                                                                                                                 Spy Kids
## 7018                                                                                                                                                    Shrek
## 7019                                                                                                                             A.I. Artificial Intelligence
## 7020                                                                                                                                                  Outland
## 7021                                                                                                                        Final Fantasy: The Spirits Within
## 7022                                                                                                                                                They Live
## 7023                                                                                                                                               Millennium
## 7024                                                                                                                                                      UHF
## 7025                                                                                                                                                Def-Con 4
## 7026                                                                                                                                  Phantom of the Paradise
## 7027                                                                                                                                             Quadrophenia
## 7028                                                                                                                                                    K-PAX
## 7029                                                                                                                                                     Fame
## 7030                                                                                                                                            Resident Evil
## 7031                                                                                                                                               Spider-Man
## 7032                                                                                                                                          Minority Report
## 7033                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7034                                                                                                                                            Reign of Fire
## 7035                                                                                                                                              The Big Bus
## 7036                                                                                                                Beau Pere (a.k.a. Stepfather) (Beau-père)
## 7037                                                                                                                                               Rollerball
## 7038                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 7039                                                                                                                                            Staying Alive
## 7040                                                                                                                                                   Xanadu
## 7041                                                                                                                                                  Solaris
## 7042                                                                                                                                              Equilibrium
## 7043                                                                                                                                 Day of the Triffids, The
## 7044                                                                                                                                        Pirate Movie, The
## 7045                                                                                                                                                Daredevil
## 7046                                                                                                                                                Core, The
## 7047                                                                                                                                    Andromeda Strain, The
## 7048                                                                                                                                                 Wiz, The
## 7049                                                                                                                                         X2: X-Men United
## 7050                                                                                                                                     Matrix Reloaded, The
## 7051                                                                                                                                              Whale Rider
## 7052                                                                                                                                            28 Days Later
## 7053                                                                                                                       Terminator 3: Rise of the Machines
## 7054                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 7055                                                                                                                                                 THX 1138
## 7056                                                                                                                                     Handmaid's Tale, The
## 7057                                                                                                                    Sgt. Pepper's Lonely Hearts Club Band
## 7058                                                                                                                                           School of Rock
## 7059                                                                                                                                  Matrix Revolutions, The
## 7060                                                                                                                                      Cat in the Hat, The
## 7061                                                                                                                                                 WarGames
## 7062                                                                                                                           Invasion of the Body Snatchers
## 7063                                                                                                                                   Jesus Christ Superstar
## 7064                                                                                                                                                Peter Pan
## 7065                                                                                                                                                  Hellboy
## 7066                                                                                                                                                   Zardoz
## 7067                                                                                                                                          Death Race 2000
## 7068                                                                                                                               Chronicles of Riddick, The
## 7069                                                                                                                                              Pretty Baby
## 7070                                                                                                                                    Last Starfighter, The
## 7071                                                                                                                                                 I, Robot
## 7072                                                                                                                                Resident Evil: Apocalypse
## 7073                                                                                                                                               Braveheart
## 7074                                                                                                                               Die Hard: With a Vengeance
## 7075                                                                                                                       Star Wars: Episode IV - A New Hope
## 7076                                                                                                                                             Pulp Fiction
## 7077                                                                                                                                Shawshank Redemption, The
## 7078                                                                                                                                 Clear and Present Danger
## 7079                                                                                                                                             Forrest Gump
## 7080                                                                                                                                                True Lies
## 7081                                                                                                                                            Fugitive, The
## 7082                                                                                                                                            Jurassic Park
## 7083                                                                                                                                             Philadelphia
## 7084                                                                                                                                         Schindler's List
## 7085                                                                                                                                                  Aladdin
## 7086                                                                                                                               Terminator 2: Judgment Day
## 7087                                                                                                                                      Mission: Impossible
## 7088                                                                                                                                                Rock, The
## 7089                                                                                                                            Independence Day (a.k.a. ID4)
## 7090                                                                                                                                                 Die Hard
## 7091                                                                                                                               E.T. the Extra-Terrestrial
## 7092                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 7093                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 7094                                                                                                                                                   Aliens
## 7095                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 7096                                                                                                                       Indiana Jones and the Last Crusade
## 7097                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 7098                                                                                                                                               Die Hard 2
## 7099                                                                                                                                       Fifth Element, The
## 7100                                                                                                                                                 Face/Off
## 7101                                                                                                                                        Good Will Hunting
## 7102                                                                                                                                                  Titanic
## 7103                                                                                                                                      Saving Private Ryan
## 7104                                                                                                                                              Matrix, The
## 7105                                                                                                                                             Total Recall
## 7106                                                                                                                                                  RoboCop
## 7107                                                                                                                                                    X-Men
## 7108                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 7109                                                                                                                                           Monsters, Inc.
## 7110                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 7111                                                                                                                                               Spider-Man
## 7112                                                                                                                   Lord of the Rings: The Two Towers, The
## 7113                                                                                                           Lord of the Rings: The Return of the King, The
## 7114                                                                                                                                         Band of Brothers
## 7115                                                                                                                                             Spider-Man 2
## 7116                                                                                                                                         Incredibles, The
## 7117                                                                                                                                            Batman Begins
## 7118                                                                                                                      Harry Potter and the Goblet of Fire
## 7119                                                                                                                                           V for Vendetta
## 7120                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 7121                                                                                                                                            Departed, The
## 7122                                                                                                                                         Dark Knight, The
## 7123                                                                                                                                                 Iron Man
## 7124                                                                                                                                      Slumdog Millionaire
## 7125                                                                                                                                                Star Trek
## 7126                                                                                                                   Harry Potter and the Half-Blood Prince
## 7127                                                                                                                                               District 9
## 7128                                                                                                                                          Sherlock Holmes
## 7129                                                                                                                                           Shutter Island
## 7130                                                                                                                                 How to Train Your Dragon
## 7131                                                                                                                                                Inception
## 7132                                                                                                                                       X-Men: First Class
## 7133                                                                                                                                            Avengers, The
## 7134                                                                                                                                   Dark Knight Rises, The
## 7135                                                                                                                       Hobbit: An Unexpected Journey, The
## 7136                                                                                                                     Hobbit: The Desolation of Smaug, The
## 7137                                                                                                                                 Wolf of Wall Street, The
## 7138                                                                                                                                             Interstellar
## 7139                                                                                                                                         Edge of Tomorrow
## 7140                                                                                                                                  Guardians of the Galaxy
## 7141                                                                                                               Star Wars: Episode VII - The Force Awakens
## 7142                                                                                                                                               Inside Out
## 7143                                                                                                                                                Toy Story
## 7144                                                                                                                                                     Babe
## 7145                                                                                                                                                 Clueless
## 7146                                                                                                                                      From Dusk Till Dawn
## 7147                                                                                                                                            Happy Gilmore
## 7148                                                                                                                                               Braveheart
## 7149                                                                                                                                            Billy Madison
## 7150                                                                                                                                                   Clerks
## 7151                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7152                                                                                                                                  While You Were Sleeping
## 7153                                                                                                                                             Forrest Gump
## 7154                                                                                                                                            Jurassic Park
## 7155                                                                                                                                           Mrs. Doubtfire
## 7156                                                                                                                                                     Rudy
## 7157                                                                                                                                         Schindler's List
## 7158                                                                                                                                   Brady Bunch Movie, The
## 7159                                                                                                                                                  Aladdin
## 7160                                                                                                                               Terminator 2: Judgment Day
## 7161                                                                                                                                                    Fargo
## 7162                                                                                                                                                  Matilda
## 7163                                                                                                                                                     Emma
## 7164                                                                                                                                      Sound of Music, The
## 7165                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 7166                                                                                                                                                   Grease
## 7167                                                                                                                                            Fools Rush In
## 7168                                                                                                                                            Private Parts
## 7169                                                                                                                   Romy and Michele's High School Reunion
## 7170                                                                                                              Austin Powers: International Man of Mystery
## 7171                                                                                                                           Lost World: Jurassic Park, The
## 7172                                                                                                                                 My Best Friend's Wedding
## 7173                                                                                                                                Men in Black (a.k.a. MIB)
## 7174                                                                                                                                           Kiss Me, Guido
## 7175                                                                                                                                            Boogie Nights
## 7176                                                                                                                                             Postman, The
## 7177                                                                                                                                      Wedding Singer, The
## 7178                                                                                                                                                   Paulie
## 7179                                                                                                                              Object of My Affection, The
## 7180                                                                                                                                                 Bulworth
## 7181                                                                                                                                        Can't Hardly Wait
## 7182                                                                                                                                                    Mulan
## 7183                                                                                                                                      Terms of Endearment
## 7184                                                                                                                                      Breakfast Club, The
## 7185                                                                                                                                            Exorcist, The
## 7186                                                                                                                                            Lethal Weapon
## 7187                                                                                                                                                 Gremlins
## 7188                                                                                                                                Gremlins 2: The New Batch
## 7189                                                                                                                                 Honey, I Shrunk the Kids
## 7190                                                                                                                                      Little Mermaid, The
## 7191                                                                                                                                        Mighty Ducks, The
## 7192                                                                                                                                                Jerk, The
## 7193                                                                                                                                          Sixteen Candles
## 7194                                                                                                                                  Gods Must Be Crazy, The
## 7195                                                                                                                                          Rosemary's Baby
## 7196                                                                                                                                      Edward Scissorhands
## 7197                                                                                                                                            Pleasantville
## 7198                                                                                                                                            Bug's Life, A
## 7199                                                                                                                                    Babe: Pig in the City
## 7200                                                                                                                                             Little Voice
## 7201                                                                                                                                                 Rushmore
## 7202                                                                                                                                      Shakespeare in Love
## 7203                                                                                                                                            Varsity Blues
## 7204                                                                                                                                                 Fly, The
## 7205                                                                                                                                                 Fly, The
## 7206                                                                                                                                      Blast from the Past
## 7207                                                                                                                                             Analyze This
## 7208                                                                                                          William Shakespeare's A Midsummer Night's Dream
## 7209                                                                                                                                             Notting Hill
## 7210                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 7211                                                                                                                                  General's Daughter, The
## 7212                                                                                                                                        Ideal Husband, An
## 7213                                                                                                                     South Park: Bigger, Longer and Uncut
## 7214                                                                                                                                             American Pie
## 7215                                                                                                                                              Mystery Men
## 7216                                                                                                                                                Bowfinger
## 7217                                                                                                                                                Airplane!
## 7218                                                                                                                                       Christmas Story, A
## 7219                                                                                                                                       Outside Providence
## 7220                                                                                                                                          American Beauty
## 7221                                                                                 Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 7222                                                                                                                                           Three to Tango
## 7223                                                                                                                                     Being John Malkovich
## 7224                                                                                                                                      Bone Collector, The
## 7225                                                                                                                                                    Dogma
## 7226                                                                                                                                              Toy Story 2
## 7227                                                                                                                                         Bicentennial Man
## 7228                                                                                                                                                 Magnolia
## 7229                                                                                                                                         Any Given Sunday
## 7230                                                                                                                                              My Dog Skip
## 7231                                                                                                                                               Sister Act
## 7232                                                                                                                                          Wayne's World 2
## 7233                                                                                                                                   League of Their Own, A
## 7234                                                                                                                                                 Snow Day
## 7235                                                                                                                                    Whole Nine Yards, The
## 7236                                                                                                                                        Final Destination
## 7237                                                                                                                                           Grumpy Old Men
## 7238                                                                                                                                            High Fidelity
## 7239                                                                                                                                                Frequency
## 7240                                                                                                                                              Me Myself I
## 7241                                                                                                                                           Bachelor Party
## 7242                                                                                                                                          American Psycho
## 7243                                                                                                                                                    U-571
## 7244                                                                                                                                            Shanghai Noon
## 7245                                                                                                                                                 Soapdish
## 7246                                                                                                                                             Patriot, The
## 7247                                                                                                                                              House Party
## 7248                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 7249                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 7250                                                                                                                                               Hellraiser
## 7251                                                                                                                                         Meet the Parents
## 7252                                                                                                                                           Pay It Forward
## 7253                                                                                                                                                Toy Story
## 7254                                                                                                                                         Grumpier Old Men
## 7255                                                                                                                              Father of the Bride Part II
## 7256                                                                                                                                                     Heat
## 7257                                                                                                                                    Sense and Sensibility
## 7258                                                                                                                                        Leaving Las Vegas
## 7259                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 7260                                                                                                                                       Mr. Holland's Opus
## 7261                                                                                                                                             Broken Arrow
## 7262                                                                                                                                            Happy Gilmore
## 7263                                                                                                                                           Down Periscope
## 7264                                                                                                                                            Birdcage, The
## 7265                                                                                                                       Star Wars: Episode IV - A New Hope
## 7266                                                                                                                                       Executive Decision
## 7267                                                                                                                                              Primal Fear
## 7268                                                                                                                                               Sgt. Bilko
## 7269                                                                                                                                      Mission: Impossible
## 7270                                                                                                                                                Rock, The
## 7271                                                                                                                                                  Twister
## 7272                                                                                                                            Independence Day (a.k.a. ID4)
## 7273                                                                                                                                                   Eraser
## 7274                                                                                                                                     Nutty Professor, The
## 7275                                                                                                                                               Phenomenon
## 7276                                                                                                                                          Time to Kill, A
## 7277                                                                                                                                 Long Kiss Goodnight, The
## 7278                                                                                                                                Robin Hood: Men in Tights
## 7279                                                                                                                                      Singin' in the Rain
## 7280                                                                                                                                                  Vertigo
## 7281                                                                                                                                                   Brazil
## 7282                                                                                                                                               Birds, The
## 7283                                                                                                                                              Chasing Amy
## 7284                                                                                                                                            Boogie Nights
## 7285                                                                                                                                                Dark City
## 7286                                                                                                                               10 Things I Hate About You
## 7287                                                                                                                                Run Lola Run (Lola rennt)
## 7288                                                                                                                                            Arachnophobia
## 7289                                                                                                                                                    Dogma
## 7290                                                                                                                                                 Magnolia
## 7291                                                                                                                                              City Lights
## 7292                                                                                                                                             Patriot, The
## 7293                                                                                                                           Amores Perros (Love's a Bitch)
## 7294                                                                                                                                    Bridget Jones's Diary
## 7295                                                                                                                                        Beautiful Mind, A
## 7296                                                                                                                             Talk to Her (Hable con Ella)
## 7297                                                                                                               Beauty and the Beast (La belle et la bête)
## 7298                                                                                                                                      Au Hasard Balthazar
## 7299                                                                                                                                          Misérables, Les
## 7300                                                                                                                                         Flintstones, The
## 7301                                                                                                                                               Craft, The
## 7302                                                                                                                                       Back to the Future
## 7303                                                                                                                                       Jingle All the Way
## 7304                                                                                                                                                  Volcano
## 7305                                                                                                                                             Home Alone 3
## 7306                                                                                                                                                 Repo Man
## 7307                                                                                                                                            Avengers, The
## 7308                                                                                                                 Police Academy 2: Their First Assignment
## 7309                                                                                                                     Police Academy 4: Citizens on Patrol
## 7310                                                                                                                       Police Academy 6: City Under Siege
## 7311                                                                                                                                   Miracle on 34th Street
## 7312                                                                                                                                             Analyze This
## 7313                                                                                                                                         Cruel Intentions
## 7314                                                                                                                                               Entrapment
## 7315                                                                                                                                       Christmas Story, A
## 7316                                                                                                                                            Stuart Little
## 7317                                                                                                                                               Sister Act
## 7318                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 7319                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 7320                                                                                                                   Lord of the Rings: The Two Towers, The
## 7321                                                                                                                                         Kindergarten Cop
## 7322                                                                                                           Lord of the Rings: The Return of the King, The
## 7323                                                                                                                        Police Academy: Mission to Moscow
## 7324                                                                                                                                     Bourne Identity, The
## 7325                                                                                                                                               Madagascar
## 7326                                                                                                                                            Batman Begins
## 7327                                                                                                                                            Blood Diamond
## 7328                                                                                                                                              Ratatouille
## 7329                                                                                                                                         Dark Knight, The
## 7330                                                                                                                                             Visitor, The
## 7331                                                                                                                                                Inception
## 7332                                                                                                                                      Social Network, The
## 7333                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 7334                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 7335                                                                                                                                            Avengers, The
## 7336                                                                                                                                   Dark Knight Rises, The
## 7337                                                                                                                  Batman: The Dark Knight Returns, Part 1
## 7338                                                                                                                                                Toy Story
## 7339                                                                                                                                                  Jumanji
## 7340                                                                                                                                                GoldenEye
## 7341                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 7342                                                                                                                                                 Clueless
## 7343                                                                                                                                      Usual Suspects, The
## 7344                                                                                                                                             Broken Arrow
## 7345                                                                                                                                               Braveheart
## 7346                                                                                                                                                Apollo 13
## 7347                                                                                                                                           Batman Forever
## 7348                                                                                                                                                    Congo
## 7349                                                                                                                                             Crimson Tide
## 7350                                                                                                                               Die Hard: With a Vengeance
## 7351                                                                                                                                              Judge Dredd
## 7352                                                                                                                                               Waterworld
## 7353                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7354                                                                                                                                              French Kiss
## 7355                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 7356                                                                                                                                      Legends of the Fall
## 7357                                                                                                                                     Natural Born Killers
## 7358                                                                                                                                                 Outbreak
## 7359                                                                                                                                             Pulp Fiction
## 7360                                                                                                                                                Quiz Show
## 7361                                                                                                                                          Specialist, The
## 7362                                                                                                                                                 Stargate
## 7363                                                                                                                                   Star Trek: Generations
## 7364                                                                                                                               Ace Ventura: Pet Detective
## 7365                                                                                                                                 Clear and Present Danger
## 7366                                                                                                                                                True Lies
## 7367                                                                                                                                     Addams Family Values
## 7368                                                                                                                                    Beverly Hills Cop III
## 7369                                                                                                                                              Cliffhanger
## 7370                                                                                                                                           Demolition Man
## 7371                                                                                                                                            Fugitive, The
## 7372                                                                                                                                                  Aladdin
## 7373                                                                                                                                                   Batman
## 7374                                                                                                                                Silence of the Lambs, The
## 7375                                                                                                                                     Beauty and the Beast
## 7376                                                                                                                                                Toy Story
## 7377                                                                                                                                                  Jumanji
## 7378                                                                                                                                                     Babe
## 7379                                                                                                                                               Braveheart
## 7380                                                                                                                                              Taxi Driver
## 7381                                                                                                                                                   Casper
## 7382                                                                                                                                                Desperado
## 7383                                                                                                                                                   Clerks
## 7384                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7385                                                                                                                                     Natural Born Killers
## 7386                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 7387                                                                                                                                             Pulp Fiction
## 7388                                                                                                                               Ace Ventura: Pet Detective
## 7389                                                                                                                                             Forrest Gump
## 7390                                                                                                                                           Lion King, The
## 7391                                                                                                                                                Mask, The
## 7392                                                                                                                                            Jurassic Park
## 7393                                                                                                                                                    Naked
## 7394                                                                                                                                         Schindler's List
## 7395                                                                                                                                             Blade Runner
## 7396                                                                                                                                 Welcome to the Dollhouse
## 7397                                                                                                                                Silence of the Lambs, The
## 7398                                                                                                                                     Beauty and the Beast
## 7399                                                                                                                                      Mission: Impossible
## 7400                                                                                                                                                Space Jam
## 7401                                                                                                                      Ghost in the Shell (Kôkaku kidôtai)
## 7402                                                                                                                                            Trainspotting
## 7403                                                                                                                                           Cable Guy, The
## 7404                                                                                                                                           Godfather, The
## 7405                                                                                                                                    2001: A Space Odyssey
## 7406                                                                                                                               E.T. the Extra-Terrestrial
## 7407                                                                                                                                               Abyss, The
## 7408                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 7409                                                                                                                                             Delicatessen
## 7410                                                                                                                                             My Left Foot
## 7411                                                                                                                                      Clockwork Orange, A
## 7412                                                                                                                                                    Alien
## 7413                                                                                                                                        Full Metal Jacket
## 7414                                                                                                                                          Terminator, The
## 7415                                                                                                                                             Shining, The
## 7416                                                                                                                                       Back to the Future
## 7417                                                                                                                                                    Akira
## 7418                                                                                                                                                   Gandhi
## 7419                                                                                                                                                   Scream
## 7420                                                                                                                                                Liar Liar
## 7421                                                                                                                                                 Anaconda
## 7422                                                                                                                                       Fifth Element, The
## 7423                                                                                                                           Lost World: Jurassic Park, The
## 7424                                                                                                                                Men in Black (a.k.a. MIB)
## 7425                                                                                                                                                    Spawn
## 7426                                                                                                                                        Starship Troopers
## 7427                                                                                                                                         Truman Show, The
## 7428                                                                                                                                                  Titanic
## 7429                                                                                                                                        Big Lebowski, The
## 7430                                                                                                                                       As Good as It Gets
## 7431                                                                                                                                                 Godzilla
## 7432                                                                                                                           Fear and Loathing in Las Vegas
## 7433                                                                                                                                               Armageddon
## 7434                                                                                                                                                       Pi
## 7435                                                                                                                             There's Something About Mary
## 7436                                                                                                                                            Exorcist, The
## 7437                                                                                                                                       Mask of Zorro, The
## 7438                                                                                                                                                    Blade
## 7439                                                                                                                                                     Cube
## 7440                                                                                                                                               Thing, The
## 7441                                                                                                                                      Edward Scissorhands
## 7442                                                                                                                                                     Antz
## 7443                                                                                                                                                Happiness
## 7444                                                                                                                      Life Is Beautiful (La Vita è bella)
## 7445                                                                                                                                       American History X
## 7446                                                                                                                                            Bug's Life, A
## 7447                                                                                                                                                 Fly, The
## 7448                                                                                                                        Lock, Stock & Two Smoking Barrels
## 7449                                                                                                                                              Matrix, The
## 7450                                                                                                                                               Mummy, The
## 7451                                                                                                                                Run Lola Run (Lola rennt)
## 7452                                                                                                                     South Park: Bigger, Longer and Uncut
## 7453                                                                                                                                             American Pie
## 7454                                                                                                                                 Blair Witch Project, The
## 7455                                                                                                                                            Deep Blue Sea
## 7456                                                                                                                                         Sixth Sense, The
## 7457                                                                                                                                                 Stigmata
## 7458                                                                                                                                               Fight Club
## 7459                                                                                                                                 Who Framed Roger Rabbit?
## 7460                                                                                                                                     Being John Malkovich
## 7461                                                                                                                        Princess Mononoke (Mononoke-hime)
## 7462                                                                                                                                              Toy Story 2
## 7463                                                                                                                                          Green Mile, The
## 7464                                                                                                                                                 Predator
## 7465                                                                                                                                                Gladiator
## 7466                                                                                                                                                   Baraka
## 7467                                                                                                                                       Gone in 60 Seconds
## 7468                                                                                                                                               Titan A.E.
## 7469                                                                                                                                              Chicken Run
## 7470                                                                                                                                                    X-Men
## 7471                                                                                                                                      Requiem for a Dream
## 7472                                                                                                                                                Bedazzled
## 7473                                                                                                                                                   Snatch
## 7474                                                                                                                                Emperor's New Groove, The
## 7475                                                                                                                                                Cast Away
## 7476                                                                                                                                                  Memento
## 7477                                                                                                                                       Mummy Returns, The
## 7478                                                                                                                                                    Shrek
## 7479                                                                                                                                Fast and the Furious, The
## 7480                                                                                                                        Final Fantasy: The Spirits Within
## 7481                                                                                                                                              Others, The
## 7482                                                                                                                                             Donnie Darko
## 7483                                                                                                                                           Monsters, Inc.
## 7484                                                                                                          Devil's Backbone, The (Espinazo del diablo, El)
## 7485                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 7486                                                                                                                                              Vanilla Sky
## 7487                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 7488                                                                                                                                        Beautiful Mind, A
## 7489                                                                                                                                          Black Hawk Down
## 7490                                                                                                            Vampire Hunter D: Bloodlust (Banpaia hantâ D)
## 7491                                                                                                                                                  Ice Age
## 7492                                                                                                                  And Your Mother Too (Y tu mamá también)
## 7493                                                                                                                                               Spider-Man
## 7494                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7495                                                                                                                                                    Signs
## 7496                                                                                                                                           Thesis (Tesis)
## 7497                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 7498                                                                                                                                    Bowling for Columbine
## 7499                                                                                                                                                Ring, The
## 7500                                                                                                                  Grave of the Fireflies (Hotaru no haka)
## 7501                                                                                                                                               Adaptation
## 7502                                                                                                                                              Equilibrium
## 7503                                                                                                                   Lord of the Rings: The Two Towers, The
## 7504                                                                                                                    My Neighbor Totoro (Tonari no Totoro)
## 7505                                                                                                                                             Pianist, The
## 7506                                                                                                                             City of God (Cidade de Deus)
## 7507                                                                                                                              Irreversible (Irréversible)
## 7508                                                                                                                                                     Spun
## 7509                                                                                                                                             Ringu (Ring)
## 7510                                                                                                Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 7511                                                                                                                              Lilya 4-Ever (Lilja 4-ever)
## 7512                                                                                                       Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 7513                                                                                                                                     Matrix Reloaded, The
## 7514                                                                                                                                           Bruce Almighty
## 7515                                                                                                                                             Finding Nemo
## 7516                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 7517                                                                                                                                      Lost in Translation
## 7518                                                                                                                            Ninja Scroll (Jûbei ninpûchô)
## 7519                                                                                                                                                 Elephant
## 7520                                                                                                                                  Matrix Revolutions, The
## 7521                                                                                                                                                 21 Grams
## 7522                                                                                            Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 7523                                                                                                                                                 Big Fish
## 7524                                                                                                           Lord of the Rings: The Return of the King, The
## 7525                                                                                                                            Ichi the Killer (Koroshiya 1)
## 7526                                                                                                                                     The Butterfly Effect
## 7527                                                                                                                                        Touching the Void
## 7528                                                                                                                                         Dawn of the Dead
## 7529                                                                                                                    Eternal Sunshine of the Spotless Mind
## 7530                                                                                                                                                  Hellboy
## 7531                                                                                                                         I'm Not Scared (Io non ho paura)
## 7532                                                                                                              Tale of Two Sisters, A (Janghwa, Hongryeon)
## 7533                                                                                                                                                Gladiator
## 7534                                                                                                                       Jin Roh: The Wolf Brigade (Jin-Rô)
## 7535                                                                                                                                                  Shrek 2
## 7536                                                                                                                                        Napoleon Dynamite
## 7537                                                                                                        Manufacturing Consent: Noam Chomsky and the Media
## 7538                                                                                                                                             Spider-Man 2
## 7539                                                                                                        Maria Full of Grace (Maria, Llena eres de gracia)
## 7540                                                                                                                                             Garden State
## 7541                                                                                                                      Harold and Kumar Go to White Castle
## 7542                                                                                                                                        Shaun of the Dead
## 7543                                                                                                                                       Cannibal Holocaust
## 7544                                                                                                                                               Shark Tale
## 7545                                                                                                                                            The Machinist
## 7546                                                                                                                                                      Saw
## 7547                                                                                                                                         Incredibles, The
## 7548                                                                                                                                       Polar Express, The
## 7549                                                                                                              Kiki's Delivery Service (Majo no takkyûbin)
## 7550                                                                                                              Porco Rosso (Crimson Pig) (Kurenai no buta)
## 7551                                              Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni)
## 7552                                                                                                                     My Sassy Girl (Yeopgijeogin geunyeo)
## 7553                                                                                                                                           Animatrix, The
## 7554                                                                                                                                 Bukowski: Born into This
## 7555                                                                                                    Last Life in the Universe (Ruang rak noi nid mahasan)
## 7556                                                                                                                      Cat Returns, The (Neko no ongaeshi)
## 7557                                                                                                                                                  Old Boy
## 7558                                                                                                    Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 7559                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 7560                                                                                                                                               Mean Creek
## 7561                                                                                                                                         Corporation, The
## 7562                                                                                                                                             Yes Men, The
## 7563                                                                                                                                       Born into Brothels
## 7564                                                                                                                        Charlie and the Chocolate Factory
## 7565                                                                                                                   Kamikaze Girls (Shimotsuma monogatari)
## 7566                                                                                                                                Downfall (Untergang, Der)
## 7567                                                                                                                Rory O'Shea Was Here (Inside I'm Dancing)
## 7568                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 7569                                                                                                                                 Kung Fu Hustle (Gong fu)
## 7570                                                                                                                                                   Robots
## 7571                                                                                                                                      Memories (Memorîzu)
## 7572                                                                                                                                           Harvie Krumpet
## 7573                                                                                                                                                 Sin City
## 7574                                                                                                                     Enron: The Smartest Guys in the Room
## 7575                                                                                                                                                    Crash
## 7576                                                                                                                                               Madagascar
## 7577                                                                                                                                         Mr. & Mrs. Smith
## 7578                                                                                                                                     Devil's Rejects, The
## 7579                                                                                                                                                 Serenity
## 7580                                                                                                                            Hidden (a.k.a. Cache) (Caché)
## 7581                                                                                                                                Everything Is Illuminated
## 7582                                                                                                                                             Corpse Bride
## 7583                                                                                                                       Final Fantasy VII: Advent Children
## 7584                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 7585                                                                                                                                        Pride & Prejudice
## 7586                                                                                                                                                King Kong
## 7587                                                                                                                                     Mozart and the Whale
## 7588                                                                                                                                                   Hostel
## 7589                                                                                                                                  Ice Age 2: The Meltdown
## 7590                                                                                                                                           V for Vendetta
## 7591                                                                                                                                     Hills Have Eyes, The
## 7592                                                                                                             Lives of Others, The (Das leben der Anderen)
## 7593                                                                                                                           Devil and Daniel Johnston, The
## 7594                                                                                                                                                  Slither
## 7595                                                                                                                                               Hard Candy
## 7596                                                                                                                                           Over the Hedge
## 7597                                                                                                                                                     Cars
## 7598                                                                                                                                   Devil Wears Prada, The
## 7599                                                                                                                                   Inconvenient Truth, An
## 7600                                                                                                                                     Little Miss Sunshine
## 7601                                                                                                                                            Monster House
## 7602                                                                                                                                    Stranger than Fiction
## 7603                                                                                                                                Pursuit of Happyness, The
## 7604                                                                                                                                           Ant Bully, The
## 7605                                                                                                                                                Mind Game
## 7606                                                                                                                                         Illusionist, The
## 7607                                                                                                                                               Jesus Camp
## 7608                                                                                                                                            Fountain, The
## 7609                                                                                                             Science of Sleep, The (La science des rêves)
## 7610                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 7611                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 7612                                                                                                                                              Open Season
## 7613                                                                                                                                          Children of Men
## 7614                                                                                                                                            Prestige, The
## 7615                                                                                                                                             Flushed Away
## 7616                                                                                                                         Perfume: The Story of a Murderer
## 7617                                                                                                                                        Déjà Vu (Deja Vu)
## 7618                                                                                                                                        Linda Linda Linda
## 7619                                                                                                                                     Bridge to Terabithia
## 7620                                                                                                                                              Ratatouille
## 7621                                                                                                                                                 Hot Fuzz
## 7622                                                                                                                                                   Zodiac
## 7623                                                                                                                                                      300
## 7624                                                                                                                                               Grindhouse
## 7625                                                                                                                                       Meet the Robinsons
## 7626                                                                                                      Inglorious Bastards (Quel maledetto treno blindato)
## 7627                                                                                                                                                 Sunshine
## 7628                                                                                                                                                Disturbia
## 7629                                                                                                                                             Spider-Man 3
## 7630                                                                                                                                          Shrek the Third
## 7631                                                                                                                                               Them (Ils)
## 7632                                                                                                                                                Surf's Up
## 7633                                                                                                                                              Death Proof
## 7634                                                                                               Power of Nightmares, The: The Rise of the Politics of Fear
## 7635                                                                                                                                                    Sicko
## 7636                                                                                                                                             Transformers
## 7637                                                                                                                                      Simpsons Movie, The
## 7638                                                                                                                                                 Superbad
## 7639                                                                                                                                            Planet Terror
## 7640                                                                                                                                            Into the Wild
## 7641                                                                                                                                   Lars and the Real Girl
## 7642                                                                                                                                               Persepolis
## 7643                                                                                                                                                  Control
## 7644                                                                                                                                                Bee Movie
## 7645                                                                                       Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le)
## 7646                                                                                                                                      Man from Earth, The
## 7647                                                                                                                                                  Beowulf
## 7648                                                                                                                                             Murder Party
## 7649                                                                                                                                                      XXY
## 7650                                                                                                                                                Mist, The
## 7651                                                                                                                                              I Am Legend
## 7652                                                                                                                            Orphanage, The (Orfanato, El)
## 7653                                                                                                                                                     Juno
## 7654                                                                                                                                         Kite Runner, The
## 7655                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 7656                                                                                                                                      There Will Be Blood
## 7657                                                                                                                                               Dedication
## 7658                                                                                                                                                    [REC]
## 7659                                                                                                                                              Cloverfield
## 7660                                                                                                                                                 Arranged
## 7661                                                                                                   Girl Who Leapt Through Time, The (Toki o kakeru shôjo)
## 7662                                                                                                                              Hellboy II: The Golden Army
## 7663                                                                                                                                                In Bruges
## 7664                                                                                                 Art of Negative Thinking, The (Kunsten å tenke negativt)
## 7665                                                                                                                                      Horton Hears a Who!
## 7666                                                                                                                                                 Penelope
## 7667                                                                                                                                       Class, The (Klass)
## 7668                                                                                                                                         Dark Knight, The
## 7669                                                                                                                                           Happy-Go-Lucky
## 7670                                                                                                                                            Son of Rambow
## 7671                                                                                                                                                 Iron Man
## 7672                                                                                                                                                Fall, The
## 7673                                                                                                                                             Lake of Fire
## 7674                                                                                                                                            Kung Fu Panda
## 7675                                                                                                                                                   WALL·E
## 7676                                                                                                                                                Get Smart
## 7677                                                                                                                 Futurama: The Beast with a Billion Backs
## 7678                                                                                                       Gonzo: The Life and Work of Dr. Hunter S. Thompson
## 7679                                                                                                                                                 Watchmen
## 7680                                                                                                                                            American Teen
## 7681                                                                                                            Let the Right One In (Låt den rätte komma in)
## 7682                                                                                                                                       Burn After Reading
## 7683                                                                                                                                                  Martyrs
## 7684                                                                                                                                       Gomorrah (Gomorra)
## 7685                                                                                                                                  Futurama: Bender's Game
## 7686                                                                                                                              Madagascar: Escape 2 Africa
## 7687                                                                                                                                      Slumdog Millionaire
## 7688                                                                                                                                              Role Models
## 7689                                                                                                                              Class, The (Entre les murs)
## 7690                                                                                                                                                     Bolt
## 7691                                                                                                                                                    Doubt
## 7692                                                                                                                                             Seven Pounds
## 7693                                                                                                                     Curious Case of Benjamin Button, The
## 7694                                                                                                                                                  Yes Man
## 7695                                                                                                                                                 Valkyrie
## 7696                                                                                                        5 Centimeters per Second (Byôsoku 5 senchimêtoru)
## 7697                                                                                                                                                    Ben X
## 7698                                                                                                                              Ponyo (Gake no ue no Ponyo)
## 7699                                                                                                                                                   Ip Man
## 7700                                                                                                                                                 Coraline
## 7701                                                                                                                                   Departures (Okuribito)
## 7702                                                                                                                                                  Knowing
## 7703                                                                                                 Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 7704                                                                                                                                      Monsters vs. Aliens
## 7705                                                                                                                                            Adventureland
## 7706                                                                                                                                     Inglourious Basterds
## 7707                                                                                                                                                     Moon
## 7708                                                                                                                                                Star Trek
## 7709                                                               Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei)
## 7710                                                                                                                                                       Up
## 7711                                                                                                                                            Hangover, The
## 7712                                                                                                                      Transformers: Revenge of the Fallen
## 7713                                                                                                                           Ice Age: Dawn of the Dinosaurs
## 7714                                                                                                                                       My Sister's Keeper
## 7715                                                                                                                                     (500) Days of Summer
## 7716                                                                                                                                                   Orphan
## 7717                                                                                                                                               District 9
## 7718                                                                                      Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 7719                                                                                                                                                     Adam
## 7720                                                                                                       Secret in Their Eyes, The (El secreto de sus ojos)
## 7721                                                                                                                                                        9
## 7722                                                                                                                        Cloudy with a Chance of Meatballs
## 7723                                                                                                                                               Food, Inc.
## 7724                                                                                                                                      Paranormal Activity
## 7725                                                                                                                                                Cove, The
## 7726                                                                                                                                                      Ink
## 7727                                                                                                                                  Invention of Lying, The
## 7728                                                                                                                                               Zombieland
## 7729                                                                                                                                            Education, An
## 7730                                                                                                                                             Mary and Max
## 7731                                                                                                                                                  Balance
## 7732                                                                                                                                                Astro Boy
## 7733                                                                                                                                         Fourth Kind, The
## 7734                                                                                                                                        Lovely Bones, The
## 7735                                                                                                                                         Everybody's Fine
## 7736                                                                                                                                                   Avatar
## 7737                                                                                                                                          Sherlock Holmes
## 7738                                                                                                                                              Daybreakers
## 7739                                                                                                                                         Book of Eli, The
## 7740                                                                                                                                                 Collapse
## 7741                                                                                                                    Dragon Hunters (Chasseurs de dragons)
## 7742                                                                                                                                                 3 Idiots
## 7743                                                                                                                                                 Triangle
## 7744                                                                                                                               Yes Men Fix the World, The
## 7745                                                                                                                                      Alice in Wonderland
## 7746                                                                                                                                 How to Train Your Dragon
## 7747                                                                                                                         Micmacs (Micmacs à tire-larigot)
## 7748                                                                                                                                                 Kick-Ass
## 7749                                                                                                                                    Dogtooth (Kynodontas)
## 7750                                                                                                                    Human Centipede, The (First Sequence)
## 7751                                                                                                                                               Iron Man 2
## 7752                                                                                                                                      You Don't Know Jack
## 7753                                                                                                                                              Toy Story 3
## 7754                                                                                                                                  Kurt Cobain About a Son
## 7755                                                                                                                                            Despicable Me
## 7756                                                                                                                                                Inception
## 7757                                                                                                                                               Mr. Nobody
## 7758                                                                                                                              Scott Pilgrim vs. the World
## 7759                                                                                                                                                Heartless
## 7760                                                                                                                                      Social Network, The
## 7761                                                                                                                                                  Flipped
## 7762                                                                                                                                                Let Me In
## 7763                                                                                                                                                  Catfish
## 7764                                                                                                                                               Inside Job
## 7765                                                                                                                       Illusionist, The (L'illusionniste)
## 7766                                                                                                                                                127 Hours
## 7767                                                                                                                                                 Megamind
## 7768                                                                                                                                               Black Swan
## 7769                                                                                                                                       King's Speech, The
## 7770                                                                                                                                                  Tangled
## 7771                                                                                                                                             Tron: Legacy
## 7772                                                                                                                        I Saw the Devil (Akmareul boatda)
## 7773                                                                                                  Secret World of Arrietty, The (Kari-gurashi no Arietti)
## 7774                                                                                                                                    Tucker & Dale vs Evil
## 7775                                                                                                                                              Day & Night
## 7776                                                                                                                                                Limitless
## 7777                                                                                    Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha)
## 7778                                                                                                                                                     Paul
## 7779                                                                                                                                                    Rango
## 7780                                                                                                                                   Confessions (Kokuhaku)
## 7781                                                                                                                         Troll Hunter, The (Trolljegeren)
## 7782                                                                                                                                              Source Code
## 7783                                                                                                                                             Sucker Punch
## 7784                                                                                                                                                   BURN-E
## 7785                                                                                                                                                    Senna
## 7786                                                                                                                                                Insidious
## 7787                                                                                                                                      Hobo with a Shotgun
## 7788                                                                                                                                                      Rio
## 7789                                                                                                                                                     Thor
## 7790                                                                                                                                    Louis C.K.: Chewed Up
## 7791                                                                                                                                        Idiots and Angels
## 7792                                                                                                                                          Kung Fu Panda 2
## 7793                                                                                                                                       X-Men: First Class
## 7794                                                                                                                                                  Super 8
## 7795                                                                                                                                            Green Lantern
## 7796                                                                                                                           Transformers: Dark of the Moon
## 7797                                                                                                                       Captain America: The First Avenger
## 7798                                                                                                                           Rise of the Planet of the Apes
## 7799                                                                                                                                            Avengers, The
## 7800                                                                                                                                                Kill List
## 7801                                                                                                                                    Paranormal Activity 3
## 7802                                                                                                                                                    Shame
## 7803                                                                                                                                            Puss in Boots
## 7804                                                                                                                                Adventures of Tintin, The
## 7805                                                                                                                                         Arthur Christmas
## 7806                                                                                                                                   Dark Knight Rises, The
## 7807                                                                                                                       Sherlock Holmes: A Game of Shadows
## 7808                                                                                                                  Human Centipede II (Full Sequence), The
## 7809                                                                                                                                                Chronicle
## 7810                                                                                                                                     Dr. Seuss' The Lorax
## 7811                                                                                                                                     The Raid: Redemption
## 7812                                                                                                                                  Cabin in the Woods, The
## 7813                                                                                                                                                    Brave
## 7814                                                                                                                                                   Presto
## 7815                                                                                                                                                 Boundin'
## 7816                                                                                                                                  Amazing Spider-Man, The
## 7817                                                                                                                             Ice Age 4: Continental Drift
## 7818                                                                                                                                            For the Birds
## 7819                                                                                                                                             Total Recall
## 7820                                                                                                                                               ParaNorman
## 7821                                                                                                                                                  Samsara
## 7822                                                                                                                                                   Looper
## 7823                                                                                                                                                    Dredd
## 7824                                                                                                                         Perks of Being a Wallflower, The
## 7825                                                                                                                                                 Sinister
## 7826                                                                                                                                       Hotel Transylvania
## 7827                                                                                                                                              Cloud Atlas
## 7828                                                                                                                                           Wreck-It Ralph
## 7829                                                                                                                                  Silver Linings Playbook
## 7830                                                                                                                                               Life of Pi
## 7831                                                                                                                                                 Excision
## 7832                                                                                                                                                    Amour
## 7833                                                                                                                                    Rise of the Guardians
## 7834                                                                                                                       Hobbit: An Unexpected Journey, The
## 7835                                                                                                                                         Django Unchained
## 7836                                                                                                                          Impossible, The (Imposible, Lo)
## 7837                                                                                                                                      Act of Killing, The
## 7838                                                                                                                                              Croods, The
## 7839                                                                                                                                               Iron Man 3
## 7840                                                                                                                                  Star Trek Into Darkness
## 7841                                                                                                                                             Man of Steel
## 7842                                                                                                                                              Pacific Rim
## 7843                                                                                                                                              World War Z
## 7844                                                                                                                                                  Elysium
## 7845                                                                                                                                            American Mary
## 7846                                                                                                                                          Despicable Me 2
## 7847                                                                                                                                           Conjuring, The
## 7848                                                                                                                                                  Gravity
## 7849                                                                                                                                             Ender's Game
## 7850                                                                                                                                     Thor: The Dark World
## 7851                                                                                                                                                    Pieta
## 7852                                                                                                                     Hobbit: The Desolation of Smaug, The
## 7853                                                                                                                                                   Frozen
## 7854                                                                                                                                              Snowpiercer
## 7855                                                                                                                     Paranormal Activity: The Marked Ones
## 7856                                                                                                                            Dragon Ball Z: Battle of Gods
## 7857                                                                                                                                                Divergent
## 7858                                                                                                                                                  RoboCop
## 7859                                                                                                                                             Interstellar
## 7860                                                                                                                                                 Non-Stop
## 7861                                                                                                                                   300: Rise of an Empire
## 7862                                                                                                                                    Mr. Peabody & Sherman
## 7863                                                                                                                                           Under the Skin
## 7864                                                                                                                                           Need for Speed
## 7865                                                                                                                      Captain America: The Winter Soldier
## 7866                                                                                                                                                     Noah
## 7867                                                                                                                                     The Raid 2: Berandal
## 7868                                                                                                                                 The Amazing Spider-Man 2
## 7869                                                                                                                                                   Oculus
## 7870                                                                                                                                                    Rio 2
## 7871                                                                                                                                            Transcendence
## 7872                                                                                                                               X-Men: Days of Future Past
## 7873                                                                                                                                                 Godzilla
## 7874                                                                                                                                               Maleficent
## 7875                                                                                                                                         Edge of Tomorrow
## 7876                                                                                                                               How to Train Your Dragon 2
## 7877                                                                                                                          Transformers: Age of Extinction
## 7878                                                                                                                                            Babadook, The
## 7879                                                                                                                           Dawn of the Planet of the Apes
## 7880                                                                                                                                  Guardians of the Galaxy
## 7881                                                                                                                                                Coherence
## 7882                                                                                                                                         Maze Runner, The
## 7883                                                                                                                                           Predestination
## 7884                                                                                                                                                John Wick
## 7885                                                                                                                                                    Ouija
## 7886                                                                                                                                               Big Hero 6
## 7887                                                                                                                       Dream Home (Wai dor lei ah yut ho)
## 7888                                                                                                                The Hobbit: The Battle of the Five Armies
## 7889                                                                                                                                                  Jumanji
## 7890                                                                                                                              Indian in the Cupboard, The
## 7891                                                                                                                                             Crimson Tide
## 7892                                                                                                                                              Judge Dredd
## 7893                                                                                                                            Kid in King Arthur's Court, A
## 7894                                                                                                                                  Quick and the Dead, The
## 7895                                                                                                                                   Star Trek: Generations
## 7896                                                                                                                                             Forrest Gump
## 7897                                                                                                                                             Black Beauty
## 7898                                                                                                                                     Hot Shots! Part Deux
## 7899                                                                                                                                                     Rudy
## 7900                                                                                                                                       Dances with Wolves
## 7901                                                                                                                                                   Batman
## 7902                                                                                                                                              Dragonheart
## 7903                                                                                                                                               Barbarella
## 7904                                                                                                                                     Operation Dumbo Drop
## 7905                                                                                                                                                Rock, The
## 7906                                                                                                                                                  Twister
## 7907                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 7908                                                                                                                            Independence Day (a.k.a. ID4)
## 7909                                                                                                                                  For Whom the Bell Tolls
## 7910                                                                                                                                               Casablanca
## 7911                                                                                                                                        Wizard of Oz, The
## 7912                                                                                                                                       Gone with the Wind
## 7913                                                                                                                              Around the World in 80 Days
## 7914                                                                                                                                       African Queen, The
## 7915                                                                                                                                      Farewell to Arms, A
## 7916                                                                                                                                    Swiss Family Robinson
## 7917                                                                                                                      Willy Wonka & the Chocolate Factory
## 7918                                                                                                                                 Old Man and the Sea, The
## 7919                                                                                                                                               Abyss, The
## 7920                                                                                                                                     Escape from New York
## 7921                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 7922                                                                                                                                      Princess Bride, The
## 7923                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 7924                                                                                                                                       Lawrence of Arabia
## 7925                                                                                                                                           Apocalypse Now
## 7926                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 7927                                                                                                                                                    Glory
## 7928                                                                                                                        Treasure of the Sierra Madre, The
## 7929                                                                                                                                        Great Escape, The
## 7930                                                                                                                                                   Patton
## 7931                                                                                                                                                  Ben-Hur
## 7932                                                                                                                       Indiana Jones and the Last Crusade
## 7933                                                                                                                          Star Trek II: The Wrath of Khan
## 7934                                                                                                                      Star Trek III: The Search for Spock
## 7935                                                                                                                            Star Trek IV: The Voyage Home
## 7936                                                                                                                                            Mars Attacks!
## 7937                                                                                                                                Men in Black (a.k.a. MIB)
## 7938                                                                                                                                        Starship Troopers
## 7939                                                                                                                           All Quiet on the Western Front
## 7940                                                                                                                                  Poseidon Adventure, The
## 7941                                                                                                                                 Honey, I Shrunk the Kids
## 7942                                                                                                                                                   Popeye
## 7943                                                                                                                                           Rocketeer, The
## 7944                                                                                                                                                     Tron
## 7945                                                                                                                     Indiana Jones and the Temple of Doom
## 7946                                                                                                                                   NeverEnding Story, The
## 7947                                                                                                                                                 Lifeboat
## 7948                                                                                                                                                    Them!
## 7949                                                                                                                                                King Kong
## 7950                                                                                                                               Rambo: First Blood Part II
## 7951                                                                                                                                      Romancing the Stone
## 7952                                                                                                                                    Young Sherlock Holmes
## 7953                                                                                                                                         Mighty Joe Young
## 7954                                                                                                                                      Crocodile Dundee II
## 7955                                                                                                                                    Towering Inferno, The
## 7956                                                                                                                            Beyond the Poseidon Adventure
## 7957                                                                                                                                   War of the Worlds, The
## 7958                                                                                                                                           Pork Chop Hill
## 7959                                                                                                               Allan Quatermain and the Lost City of Gold
## 7960                                                                                                                                               Iron Eagle
## 7961                                                                                                                                            Iron Eagle II
## 7962                                                                                                                                     Aces: Iron Eagle III
## 7963                                                                                                                                              Deliverance
## 7964                                                                                                                                            South Pacific
## 7965                                                                                                                                         Dirty Dozen, The
## 7966                                                                                                                                             Time Bandits
## 7967                                                                                                                                 Who Framed Roger Rabbit?
## 7968                                                                                                                                         Longest Day, The
## 7969                                                                                                                                        Tora! Tora! Tora!
## 7970                                                                                                                                                Stalag 17
## 7971                                                                                                                                               Sister Act
## 7972                                                                                                                                            Forever Young
## 7973                                                                                                                          Captain Horatio Hornblower R.N.
## 7974                                                                                                                                     Bear, The (Ours, L')
## 7975                                                                                                                                      Crimson Pirate, The
## 7976                                                                                                                                                 Red Dawn
## 7977                                                                                                                                        Lord of the Flies
## 7978                                                                                                                                   Force 10 from Navarone
## 7979                                                                                                                                            Flying Tigers
## 7980                                                                                                                                    Fighting Seabees, The
## 7981                                                                                                                                       Perfect Storm, The
## 7982                                                                                                                                           Kelly's Heroes
## 7983                                                                                                                                         Fantastic Voyage
## 7984                                                                                                                                        Time Machine, The
## 7985                                                                                                                                               Alamo, The
## 7986                                                                                                                                               Gettysburg
## 7987                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 7988                                                                                                                                                GoldenEye
## 7989                                                                                                                                               Get Shorty
## 7990                                                                                                                                                 Clueless
## 7991                                                                                                                                     Seven (a.k.a. Se7en)
## 7992                                                                                                                                             Broken Arrow
## 7993                                                                                                                                               Braveheart
## 7994                                                                                                                                                Apollo 13
## 7995                                                                                                                                                    Congo
## 7996                                                                                                                                             Crimson Tide
## 7997                                                                                                                               Die Hard: With a Vengeance
## 7998                                                                                                                                                 Net, The
## 7999                                                                                                                                               Waterworld
## 8000                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 8001                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 8002                                                                                                                                                     Nell
## 8003                                                                                                                                                 Outbreak
## 8004                                                                                                                                             Pulp Fiction
## 8005                                                                                                                                          Specialist, The
## 8006                                                                                                                                                 Stargate
## 8007                                                                                                                              What's Eating Gilbert Grape
## 8008                                                                                                                                  While You Were Sleeping
## 8009                                                                                                                               Ace Ventura: Pet Detective
## 8010                                                                                                                                 Clear and Present Danger
## 8011                                                                                                                                             Forrest Gump
## 8012                                                                                                                              Four Weddings and a Funeral
## 8013                                                                                                                                                Mask, The
## 8014                                                                                                                                                 Maverick
## 8015                                                                                                                                                    Speed
## 8016                                                                                                                                                True Lies
## 8017                                                                                                                                    Beverly Hills Cop III
## 8018                                                                                                                                              Cliffhanger
## 8019                                                                                                                                                     Dave
## 8020                                                                                                                                           Demolition Man
## 8021                                                                                                                                                Firm, The
## 8022                                                                                                                                            Fugitive, The
## 8023                                                                                                                                            Jurassic Park
## 8024                                                                                                                                               Piano, The
## 8025                                                                                                                                         Schindler's List
## 8026                                                                                                                                     Sleepless in Seattle
## 8027                                                                                                                                                Tombstone
## 8028                                                                                                                                                    Ghost
## 8029                                                                                                                               Terminator 2: Judgment Day
## 8030                                                                                                                                       Dances with Wolves
## 8031                                                                                                                                             Pretty Woman
## 8032                                                                                                                            Independence Day (a.k.a. ID4)
## 8033                                                                                                                                                   Eraser
## 8034                                                                                                                                      Maltese Falcon, The
## 8035                                                                                                                                                     Stag
## 8036                                                                                                                                              Hope Floats
## 8037                                                                                                                                                Tom Jones
## 8038                                                                                                                                            Out of Africa
## 8039                                                                                                                                      Breakfast Club, The
## 8040                                                                                                                                Desperately Seeking Susan
## 8041                                                                                                                                      Shakespeare in Love
## 8042                                                                                                                                               Entrapment
## 8043                                                                                                                                      Run Silent Run Deep
## 8044                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 8045                                                                                                                                  General's Daughter, The
## 8046                                                                                                                                            Arachnophobia
## 8047                                                                                                                                           Wild Wild West
## 8048                                                                                                                                              Lake Placid
## 8049                                                                                                                                            Deep Blue Sea
## 8050                                                                                                                                            Runaway Bride
## 8051                                                                                                                                      Mosquito Coast, The
## 8052                                                                                                                                          Iron Giant, The
## 8053                                                                                                                                 Thomas Crown Affair, The
## 8054                                                                                                                                        13th Warrior, The
## 8055                                                                                                                                    Astronaut's Wife, The
## 8056                                                                                                                                                 Stigmata
## 8057                                                                                                                                           Stir of Echoes
## 8058                                                                                                                                          Double Jeopardy
## 8059                                                                                                                                 Who Framed Roger Rabbit?
## 8060                                                                                                                                            Stuart Little
## 8061                                                                                                                                             Galaxy Quest
## 8062                                                                                                                                          Pacific Heights
## 8063                                                                                                                                                Frequency
## 8064                                                                                                                                                    Diner
## 8065                                                                                                                              Four Weddings and a Funeral
## 8066                                                                                                                                            Little Buddha
## 8067                                                                                                                                                  Go Fish
## 8068                                                                                                                                                    Bound
## 8069                                                                                                                                            Dirty Dancing
## 8070                                                                                                                       Unbearable Lightness of Being, The
## 8071                                                                                                                                                 In & Out
## 8072                                                                                                                                              Chasing Amy
## 8073                                                                                                                                       Great Expectations
## 8074                                                                                                           Nightmare on Elm Street 2: Freddy's Revenge, A
## 8075                                                                                                                    I Still Know What You Did Last Summer
## 8076                                                                                                                                      Shakespeare in Love
## 8077                                                                                                                                       Cocoon: The Return
## 8078                                                                                                                                     Teaching Mrs. Tingle
## 8079                                                                                                                                          American Beauty
## 8080                                                                                                                                        Anna and the King
## 8081                                                                                                                                   League of Their Own, A
## 8082                                                                                                                                                    X-Men
## 8083                                                                                                                                           Aimée & Jaguar
## 8084                                                                                                                                             Billy Elliot
## 8085                                                                                                                                                   Bounce
## 8086                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 8087                                                                                                                                                 Chocolat
## 8088                                                                                                                                            Heartbreakers
## 8089                                                                                                                                    Bridget Jones's Diary
## 8090                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 8091                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 8092                                                                                                                                    Kissing Jessica Stein
## 8093                                                                                                                                      Sweetest Thing, The
## 8094                                                                                                                         Importance of Being Earnest, The
## 8095                                                                                                                             Mostly Martha (Bella Martha)
## 8096                                                                                                                                                    Frida
## 8097                                                                                                                                          Far from Heaven
## 8098                                                                                                                  Harry Potter and the Chamber of Secrets
## 8099                                                                                                                             Talk to Her (Hable con Ella)
## 8100                                                                                                                                               Hours, The
## 8101                                                                                                                                      Final Destination 2
## 8102                                                                                                                                     Bend It Like Beckham
## 8103                                                                                                             Spanish Apartment, The (L'auberge espagnole)
## 8104                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 8105                                                                                                                        Lagaan: Once Upon a Time in India
## 8106                                                                                                                       Monty Python's The Meaning of Life
## 8107                                                                                                                                            Love Actually
## 8108                                                                                                                                                  Monster
## 8109                                                                                                                                            Desert Hearts
## 8110                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 8111                                                                                                                                Manchurian Candidate, The
## 8112                                                                                                                                                   Eulogy
## 8113                                                                                                                                                   Kinsey
## 8114                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 8115                                                                                                                                                      Gia
## 8116                                                                                                Very Long Engagement, A (Un long dimanche de fiançailles)
## 8117                                                                                                                                         Meet the Fockers
## 8118                                                                                                                               Summer Storm (Sommersturm)
## 8119                                                                                                                                               Flightplan
## 8120                                                                                                                                 Squid and the Whale, The
## 8121                                                                                                                                       Brokeback Mountain
## 8122                                                                                                                      Harry Potter and the Goblet of Fire
## 8123                                                                                                                                      Memoirs of a Geisha
## 8124                                                                                                                                         Imagine Me & You
## 8125                                                                                                             Lives of Others, The (Das leben der Anderen)
## 8126                                                                                                                                       Da Vinci Code, The
## 8127                                                                                                                                              Ratatouille
## 8128                                                                                                                                             Gray Matters
## 8129                                                                                                                                    Puccini for Beginners
## 8130                                                                                                                Harry Potter and the Order of the Phoenix
## 8131                                                                                                                                The Jane Austen Book Club
## 8132                                                                                                                                 Vicky Cristina Barcelona
## 8133                                                                                                                                              Taxi Driver
## 8134                                                                                                                               Die Hard: With a Vengeance
## 8135                                                                                                              Far From Home: The Adventures of Yellow Dog
## 8136                                                                                                                      Secret Adventures of Tom Thumb, The
## 8137                                                                                                                                    Beverly Hills Cop III
## 8138                                                                                                                                             Black Beauty
## 8139                                                                                                                                                   Lassie
## 8140                                                                                                                                 Night of the Living Dead
## 8141                                                                                                                          One Flew Over the Cuckoo's Nest
## 8142                                                                                                                                               Die Hard 2
## 8143                                                                                                                                Men in Black (a.k.a. MIB)
## 8144                                                                                                                                Hunt for Red October, The
## 8145                                                                                                                                      Blues Brothers 2000
## 8146                                                                                                                                             Dr. Dolittle
## 8147                                                                                                                                               Armageddon
## 8148                                                                                                                           Poltergeist II: The Other Side
## 8149                                                                                                                                          Lethal Weapon 3
## 8150                                                                                                                                             Return to Oz
## 8151                                                                                                                                                Elizabeth
## 8152                                                                                                                                          King Kong Lives
## 8153                                                                                                                                     Prince of Egypt, The
## 8154                                                                                                                                      Shakespeare in Love
## 8155                                                                                                                                                  Rocky V
## 8156                                                                                                                                          Civil Action, A
## 8157                                                                                                                                         Crocodile Dundee
## 8158                                                                                                                                        Ideal Husband, An
## 8159                                                                                                                                            Arachnophobia
## 8160                                                                                                                     South Park: Bigger, Longer and Uncut
## 8161                                                                                                                                       Muppets From Space
## 8162                                                                                                                                 Blair Witch Project, The
## 8163                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 8164                                                                                                                                          Ghostbusters II
## 8165                                                                                                                                         Inspector Gadget
## 8166                                                                                                                                          Iron Giant, The
## 8167                                                                                                                                         Sixth Sense, The
## 8168                                                                                                                                                 Stigmata
## 8169                                                                                                                                               Limey, The
## 8170                                                                                                                                                RoboCop 2
## 8171                                                                                                                                 Who Framed Roger Rabbit?
## 8172                                                                                                                                     Being John Malkovich
## 8173                                                                                                                                                Backdraft
## 8174                                                                                                                                              Toy Story 2
## 8175                                                                                                                                                 Magnolia
## 8176                                                                                                                                           Hurricane, The
## 8177                                                                                                                                      Single White Female
## 8178                                                                                                                          Death Wish 5: The Face of Death
## 8179                                                                                                                                Shawshank Redemption, The
## 8180                                                                                                                            Robin Hood: Prince of Thieves
## 8181                                                                                                                                            Dirty Dancing
## 8182                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 8183                                                                                                                                             12 Angry Men
## 8184                                                                                                                                               Birds, The
## 8185                                                                                                                                            Sliding Doors
## 8186                                                                                                                                  Gods Must Be Crazy, The
## 8187                                                                                                                                      Crocodile Dundee II
## 8188                                                                                                                                              Matrix, The
## 8189                                                                                                                                         Live and Let Die
## 8190                                                                                                                                        Death Becomes Her
## 8191                                                                                                                                             Modern Times
## 8192                                                                                                                                                Moonraker
## 8193                                                                                                                                          Under Suspicion
## 8194                                                                                                                      Adventures of Baron Munchausen, The
## 8195                                                                                                                                           Ocean's Eleven
## 8196                                                                                                                                     Bourne Identity, The
## 8197                                                                                                                                         Italian Job, The
## 8198                                                                                                                                            Notebook, The
## 8199                                                                                                                                    Bourne Supremacy, The
## 8200                                                                                                               Asterix and the Gauls (Astérix le Gaulois)
## 8201                                                                                                                My Name Is Nobody (Il Mio nome è Nessuno)
## 8202                                                                                                                                             Hotel Rwanda
## 8203                                                                                                                                            Batman Begins
## 8204                                                                                                                                           Find Me Guilty
## 8205                                                                                                                                               Inside Man
## 8206                                                                                                                                            Departed, The
## 8207                                                                                                            Elementary Particles, The (Elementarteilchen)
## 8208                                                                                                                                            Prestige, The
## 8209                                                                                                                         Perfume: The Story of a Murderer
## 8210                                                                                                                                    Bourne Ultimatum, The
## 8211                                                                                                                                   No Country for Old Men
## 8212                                                                                                                                          P.S. I Love You
## 8213                                                                                                                                                       21
## 8214                                                                                                                                                   WALL·E
## 8215                                                                                                                                     Inglourious Basterds
## 8216                                                                                                                                           Public Enemies
## 8217                                                                                                                                             Mary and Max
## 8218                                                                                                                                             12 Angry Men
## 8219                                                                                                                                              Toy Story 3
## 8220                                                                                                                                                Inception
## 8221                                                                                                         Asterix and the Vikings (Astérix et les Vikings)
## 8222                                                                                                                                            Robot & Frank
## 8223                                                                                                                                                Toy Story
## 8224                                                                                                                              Father of the Bride Part II
## 8225                                                                                                                                                     Heat
## 8226                                                                                                                                                  Sabrina
## 8227                                                                                                                                             Sudden Death
## 8228                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 8229                                                                                                                                                 Bio-Dome
## 8230                                                                                                                                             Bed of Roses
## 8231                                                                                                                                               Juror, The
## 8232                                                                                                                                             Broken Arrow
## 8233                                                                                                                                                City Hall
## 8234                                                                                                                                            Happy Gilmore
## 8235                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 8236                                                                                                                                            Birdcage, The
## 8237                                                                                                                       Star Wars: Episode IV - A New Hope
## 8238                                                                                                                                          River Wild, The
## 8239                                                                                                                                       Executive Decision
## 8240                                                                                                                                                    Fargo
## 8241                                                                                                                 Homeward Bound II: Lost in San Francisco
## 8242                                                                                                                                               Sgt. Bilko
## 8243                                                                                                                                      Mission: Impossible
## 8244                                                                                                                                              Dragonheart
## 8245                                                                                                                                         Mulholland Falls
## 8246                                                                                                                             Truth About Cats & Dogs, The
## 8247                                                                                                                                             Multiplicity
## 8248                                                                                                                                               Craft, The
## 8249                                                                                                                                                Rock, The
## 8250                                                                                                                                                  Twister
## 8251                                                                                                                                                Barb Wire
## 8252                                                                                                                                             Phantom, The
## 8253                                                                                                                            Independence Day (a.k.a. ID4)
## 8254                                                                                                                                           Cable Guy, The
## 8255                                                                                                                                                   Eraser
## 8256                                                                                                                                     Nutty Professor, The
## 8257                                                                                                                                               Phenomenon
## 8258                                                                                                                                          Time to Kill, A
## 8259                                                                                                                                                   Ransom
## 8260                                                                                                                      Willy Wonka & the Chocolate Factory
## 8261                                                                                                                                                Toy Story
## 8262                                                                                                                                                GoldenEye
## 8263                                                                                                                                                   Casino
## 8264                                                                                                                                               Get Shorty
## 8265                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 8266                                                                                                                                                 Clueless
## 8267                                                                                                                                     Seven (a.k.a. Se7en)
## 8268                                                                                                                                      Usual Suspects, The
## 8269                                                                                                                                            Bottle Rocket
## 8270                                                                                                                                            Happy Gilmore
## 8271                                                                                                                                              Taxi Driver
## 8272                                                                                                                                  Basketball Diaries, The
## 8273                                                                                                                                                    Congo
## 8274                                                                                                                                       Living in Oblivion
## 8275                                                                                                                                            Billy Madison
## 8276                                                                                                                                                   Clerks
## 8277                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 8278                                                                                                                                              Hoop Dreams
## 8279                                                                                                                             Heavyweights (Heavy Weights)
## 8280                                                                                                                       Star Wars: Episode IV - A New Hope
## 8281                                                                                                                                                 Outbreak
## 8282                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 8283                                                                                                                                             Pulp Fiction
## 8284                                                                                                                                Shawshank Redemption, The
## 8285                                                                                                                                                Tommy Boy
## 8286                                                                                                                              What's Eating Gilbert Grape
## 8287                                                                                                                                         Muriel's Wedding
## 8288                                                                                                                                             Forrest Gump
## 8289                                                                                                                                                    Speed
## 8290                                                                                                                                       Dazed and Confused
## 8291                                                                                                                                           Demolition Man
## 8292                                                                                                                                                    Fresh
## 8293                                                                                                                                            Fugitive, The
## 8294                                                                                                                                            Jurassic Park
## 8295                                                                                                                                         Schindler's List
## 8296                                                                                                                              Searching for Bobby Fischer
## 8297                                                                                                                                             Blade Runner
## 8298                                                                                                                                               Home Alone
## 8299                                                                                                                                Silence of the Lambs, The
## 8300                                                                                                                                                Space Jam
## 8301                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 8302                                                                                                                                            Trainspotting
## 8303                                                                                                                                            Roman Holiday
## 8304                                                                                                                                        Wizard of Oz, The
## 8305                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 8306                                                                                                                                             Citizen Kane
## 8307                                                                                                                                    2001: A Space Odyssey
## 8308                                                                                                                                            All About Eve
## 8309                                                                                                                                                    Laura
## 8310                                                                                                                                          His Girl Friday
## 8311                                                                                                                                    It's a Wonderful Life
## 8312                                                                                                                                                 Die Hard
## 8313                                                                                                                                                 Swingers
## 8314                                                                                                                      Willy Wonka & the Chocolate Factory
## 8315                                                                                                                                           Reservoir Dogs
## 8316                                                                                                                                         Crying Game, The
## 8317                                                                                                                                      Glengarry Glen Ross
## 8318                                                                                                                               E.T. the Extra-Terrestrial
## 8319                                                                                                                              People vs. Larry Flynt, The
## 8320                                                                                                                          Monty Python and the Holy Grail
## 8321                                                                                                                  Cinema Paradiso (Nuovo cinema Paradiso)
## 8322                                                                                                                          One Flew Over the Cuckoo's Nest
## 8323                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 8324                                                                                                                                      Princess Bride, The
## 8325                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 8326                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 8327                                                                                                                                      Clockwork Orange, A
## 8328                                                                                                                                    To Kill a Mockingbird
## 8329                                                                                                                                           Apocalypse Now
## 8330                                                                                                   Once Upon a Time in the West (C'era una volta il West)
## 8331                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 8332                                                                                                                                               Goodfellas
## 8333                                                                                                                                        Full Metal Jacket
## 8334                                                                                                                                                  Amadeus
## 8335                                                                                                                                           Quiet Man, The
## 8336                                                                                                                                              Raging Bull
## 8337                                                                                                                                               Annie Hall
## 8338                                                                                                                                         Harold and Maude
## 8339                                                                                                                                          Terminator, The
## 8340                                                                                                                                                Manhattan
## 8341                                                                                                                                            Graduate, The
## 8342                                                                                                                            Bridge on the River Kwai, The
## 8343                                                                                                                                                Chinatown
## 8344                                                                                                                                                Duck Soup
## 8345                                                                                                                                             Shining, The
## 8346                                                                                                                                              Stand by Me
## 8347                                                                                                                                         Deer Hunter, The
## 8348                                                                                                                                            Groundhog Day
## 8349                                                                                                                                               Unforgiven
## 8350                                                                                                                                       Back to the Future
## 8351                                                                                                                                                High Noon
## 8352                                                                                                                                                 Heathers
## 8353                                                                                                                                       This Is Spinal Tap
## 8354                                                                                                                       Indiana Jones and the Last Crusade
## 8355                                                                                                                                          Field of Dreams
## 8356                                                                                                                       Butch Cassidy and the Sundance Kid
## 8357                                                                                                                                  When Harry Met Sally...
## 8358                                                                                                                                              Sling Blade
## 8359                                                                                                                                                   Grease
## 8360                                                                                                                                                     Jaws
## 8361                                                                                                                                            Jerry Maguire
## 8362                                                                                                                                      Waiting for Guffman
## 8363                                                                                                                                            Donnie Brasco
## 8364                                                                                                                                            Air Force One
## 8365                                                                                                                                        L.A. Confidential
## 8366                                                                                                                                            Boogie Nights
## 8367                                                                                                                                        Starship Troopers
## 8368                                                                                                                                         Truman Show, The
## 8369                                                                                                                                        Good Will Hunting
## 8370                                                                                                                                                  Titanic
## 8371                                                                                                                                        Big Lebowski, The
## 8372                                                                                                                                       As Good as It Gets
## 8373                                                                                                                                                    Mulan
## 8374                                                                                                                             There's Something About Mary
## 8375                                                                                                                                          West Side Story
## 8376                                                                                                                                          Midnight Cowboy
## 8377                                                                                                                                   French Connection, The
## 8378                                                                                                                                                    Rocky
## 8379                                                                                                                                         Chariots of Fire
## 8380                                                                                                                                      Terms of Endearment
## 8381                                                                                                                                                 Rain Man
## 8382                                                                                                                                      Breakfast Club, The
## 8383                                                                                                                                            Lethal Weapon
## 8384                                                                                                                                             Goonies, The
## 8385                                                                                                                                       Mask of Zorro, The
## 8386                                                                                                                               Back to the Future Part II
## 8387                                                                                                                                      Saving Private Ryan
## 8388                                                                                                                                     D2: The Mighty Ducks
## 8389                                                                                                                                              Hocus Pocus
## 8390                                                                                                                                              BASEketball
## 8391                                                                                                                                              'burbs, The
## 8392                                                                                                                                        Mighty Ducks, The
## 8393                                                                                                                     Indiana Jones and the Temple of Doom
## 8394                                                                                                                                          Sixteen Candles
## 8395                                                                                                                                     Strangers on a Train
## 8396                                                                                                                                        Untouchables, The
## 8397                                                                                                                                          Say Anything...
## 8398                                                                                                                                                     Toys
## 8399                                                                                                                                           Producers, The
## 8400                                                                                                                                            Pleasantville
## 8401                                                                                                                      Life Is Beautiful (La Vita è bella)
## 8402                                                                                                                                       American History X
## 8403                                                                                                                                                 Rushmore
## 8404                                                                                                                                          Karate Kid, The
## 8405                                                                                                                                             Office Space
## 8406                                                                                                                        Lock, Stock & Two Smoking Barrels
## 8407                                                                                                                               10 Things I Hate About You
## 8408                                                                                                                                                 Election
## 8409                                                                                                                                               Mummy, The
## 8410                                                                                                                                                Big Daddy
## 8411                                                                                                                     South Park: Bigger, Longer and Uncut
## 8412                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 8413                                                                                                                                   Little Shop of Horrors
## 8414                                                                                                                                          Iron Giant, The
## 8415                                                                                                                                                Airplane!
## 8416                                                                                                                                                      Big
## 8417                                                                                                                                       Christmas Story, A
## 8418                                                                                                                                          American Beauty
## 8419                                                                                                                                      Hard Day's Night, A
## 8420                                                                                                                                 Ferris Bueller's Day Off
## 8421                                                                                                                        Conformist, The (Conformista, Il)
## 8422                                                                                                                                               Goldfinger
## 8423                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 8424                                                                                                                           Home Alone 2: Lost in New York
## 8425                                                                                                                                               Fight Club
## 8426                                                                                                                                               Robin Hood
## 8427                                                                                                                                           Trading Places
## 8428                                                                                                                                               Moonstruck
## 8429                                                                                                                                           Mansfield Park
## 8430                                                                                                                                         Babes in Toyland
## 8431                                                            Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 8432                                                                                                                                             Natural, The
## 8433                                                                                                                                             Midnight Run
## 8434                                                                                                                                              Toy Story 2
## 8435                                                                                                                                   Last Picture Show, The
## 8436                                                                                                                                                 Magnolia
## 8437                                                                                                                             Fast Times at Ridgemont High
## 8438                                                                                                                                            Wayne's World
## 8439                                                                                                                                   League of Their Own, A
## 8440                                                                                                                               Stop! Or My Mom Will Shoot
## 8441                                                                                                                              Hoosiers (a.k.a. Best Shot)
## 8442                                                                                                                                              Bull Durham
## 8443                                                                                                                                           Searchers, The
## 8444                                                                                                                                             Animal House
## 8445                                                                                                                                       Do the Right Thing
## 8446                                                                                                                                             Hustler, The
## 8447                                                                                                                                                    Lucas
## 8448                                                                                                                                                     Hook
## 8449                                                                                                                                                  Network
## 8450                                                                                                                                               Caddyshack
## 8451                                                                                                                                              On the Town
## 8452                                                                                                                                  Pee-wee's Big Adventure
## 8453                                                                                                                                      Endless Summer, The
## 8454                                                                                                                                          Blazing Saddles
## 8455                                                                                                                                             Blood Simple
## 8456                                                                                                                                              Chicken Run
## 8457                                                                                                                                                 Croupier
## 8458                                                                                                                                                Footloose
## 8459                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 8460                                                                                                                                            Almost Famous
## 8461                                                                                                                                      Remember the Titans
## 8462                                                                                                              Legend of Drunken Master, The (Jui kuen II)
## 8463                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 8464                                                                                                                                Emperor's New Groove, The
## 8465                                                                                                                                                Cast Away
## 8466                                                                                                                               O Brother, Where Art Thou?
## 8467                                                                                                                                                  Traffic
## 8468                                                                                                                                      Save the Last Dance
## 8469                                                                                                                                        Beverly Hills Cop
## 8470                                                                                                                                        Can't Buy Me Love
## 8471                                                                                                                                         Eddie Murphy Raw
## 8472                                                                                                                                                  Memento
## 8473                                                                                                                                                 Scarface
## 8474                                                                                                                                                    Shrek
## 8475                                                                                                                             A.I. Artificial Intelligence
## 8476                                                                                                                        Man Who Shot Liberty Valance, The
## 8477                                                                                                                                           Legally Blonde
## 8478                                                                                                                         Bill & Ted's Excellent Adventure
## 8479                                                                                                                                  Wet Hot American Summer
## 8480                                                                                                                                                 Hardball
## 8481                                                                                                                                             Training Day
## 8482                                                                                                                                                Zoolander
## 8483                                                                                                                                         Mulholland Drive
## 8484                                                                                                                                             Donnie Darko
## 8485                                                                                                                                Man Who Wasn't There, The
## 8486                                                                                                                                           Monsters, Inc.
## 8487                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 8488                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 8489                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 8490                                                                                                                                             Sandlot, The
## 8491                                                                                                                                              About a Boy
## 8492                                                                                                                                       Undercover Brother
## 8493                                                                                                                                     Bourne Identity, The
## 8494                                                                                                                                          Minority Report
## 8495                                                                                                                                         Punch-Drunk Love
## 8496                                                                                                                                       Jackass: The Movie
## 8497                                                                                                                  Harry Potter and the Chamber of Secrets
## 8498                                                                                                                                               Adaptation
## 8499                                                                                                                   Lord of the Rings: The Two Towers, The
## 8500                                                                                                                                                  My Girl
## 8501                                                                                                                                             Pianist, The
## 8502                                                                                                                          Confessions of a Dangerous Mind
## 8503                                                                                                                             City of God (Cidade de Deus)
## 8504                                                                                                                                               Old School
## 8505                                                                                                                                           Bruce Almighty
## 8506                                                                                                                                             Finding Nemo
## 8507                                                                                                                         Shaolin Soccer (Siu lam juk kau)
## 8508                                                                                                                                            Hello, Dolly!
## 8509                                                                                                                                          Boyz N the Hood
## 8510                                                                                                                                           School of Rock
## 8511                                                                                                                                       Station Agent, The
## 8512                                                                                                                                             Mystic River
## 8513                                                                                                                                      Intolerable Cruelty
## 8514                                                                                                                                        Kill Bill: Vol. 1
## 8515                                                                                                                                          Shattered Glass
## 8516                                                                                                                                                      Elf
## 8517                                                                                                                                            Love Actually
## 8518                                                                                                                                                  Slacker
## 8519                                                                                                                                        Presumed Innocent
## 8520                                                                                                                          Battle Royale (Batoru rowaiaru)
## 8521                                                                                                                                                Teen Wolf
## 8522                                                                                                                                               Stagecoach
## 8523                                                                                                                                    Night at the Opera, A
## 8524                                                                                                                                                 Big Fish
## 8525                                                                                                           Lord of the Rings: The Return of the King, The
## 8526                                                                                                                                                  Miracle
## 8527                                                                                                                    Eternal Sunshine of the Spotless Mind
## 8528                                                                                                                                        Kill Bill: Vol. 2
## 8529                                                                                                                                               Mean Girls
## 8530                                                                                                                                                  Shrek 2
## 8531                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 8532                                                                                                                                        Napoleon Dynamite
## 8533                                                                                                                         Dodgeball: A True Underdog Story
## 8534                                                                                                                    Anchorman: The Legend of Ron Burgundy
## 8535                                                                                                                                    Bourne Supremacy, The
## 8536                                                                                                                                             Garden State
## 8537                                                                                                                      Harold and Kumar Go to White Castle
## 8538                                                                                                                                        Shaun of the Dead
## 8539                                                                                                                                                   Primer
## 8540                                                                                                                               Team America: World Police
## 8541                                                                                                                                         Incredibles, The
## 8542                                                                                                                                        National Treasure
## 8543                                                                                                                                           Music Man, The
## 8544                                                                                                                                   Eddie Murphy Delirious
## 8545                                                                                                                                Extremely Goofy Movie, An
## 8546                                                                                                                                                  Old Boy
## 8547                                                                                                                                                 Sin City
## 8548                                                                                                                                              Fever Pitch
## 8549                                                                                                                                                    Crash
## 8550                                                                                                                                      Kicking & Screaming
## 8551                                                                                                                                           Cinderella Man
## 8552                                                                                                                                            Batman Begins
## 8553                                                                                                                          Me and You and Everyone We Know
## 8554                                                                                                                                         Wedding Crashers
## 8555                                                                                                                                                  Junebug
## 8556                                                                                                                                  40-Year-Old Virgin, The
## 8557                                                                                                                                   History of Violence, A
## 8558                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 8559                                                                                                                                      Kiss Kiss Bang Bang
## 8560                                                                                                                                 Squid and the Whale, The
## 8561                                                                                                                               Good Night, and Good Luck.
## 8562                                                                                                                                        Pride & Prejudice
## 8563                                                                                                                      Harry Potter and the Goblet of Fire
## 8564                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 8565                                                                                                                                           V for Vendetta
## 8566                                                                                                                                               Inside Man
## 8567                                                                                                                                     Little Miss Sunshine
## 8568                                                                                                                                            Monster House
## 8569                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 8570                                                                                                                                Pursuit of Happyness, The
## 8571                                                                                                                                       Jackass Number Two
## 8572                                                                                                                                            Departed, The
## 8573                                                                                                                                     Deliver Us from Evil
## 8574                                                                                                                                             Flushed Away
## 8575                                                                                                                                            Casino Royale
## 8576                                                                                                                     After the Wedding (Efter brylluppet)
## 8577                                                                                                                                              Ratatouille
## 8578                                                                                                                                                 Hot Fuzz
## 8579                                                                                                                                                   Zodiac
## 8580                                                                                                                                                      300
## 8581                                                                                                                                          Blades of Glory
## 8582                                                                                                                          How the Grinch Stole Christmas!
## 8583                                                                                                                                                     Once
## 8584                                                                                                                 Pirates of the Caribbean: At World's End
## 8585                                                                                                                Harry Potter and the Order of the Phoenix
## 8586                                                                                                                                                  Hot Rod
## 8587                                                                                                                                    Bourne Ultimatum, The
## 8588                                                                                                                                                 Superbad
## 8589                                                                                                                                        King of Kong, The
## 8590                                                                                                                                                Atonement
## 8591                                                                                                                                         Eastern Promises
## 8592                                                                                                                                            Into the Wild
## 8593                                                                                                                                        American Gangster
## 8594                                                                                                                       Before the Devil Knows You're Dead
## 8595                                                                                                                                   No Country for Old Men
## 8596                                                                                                                                              I Am Legend
## 8597                                                                                                                                             Savages, The
## 8598                                                                                                                                                     Juno
## 8599                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 8600                                                                                                                                      There Will Be Blood
## 8601                                                                                                                                        Meet the Spartans
## 8602                                                                                                                                                In Bruges
## 8603                                                                                                                                                   Jumper
## 8604                                                                                                                                         Dark Knight, The
## 8605                                                                                                                                           Happy-Go-Lucky
## 8606                                                                                                                                                 Iron Man
## 8607                                                                                                                                                    Taken
## 8608                                                                                                                                                 Watchmen
## 8609                                                                                                                                            Step Brothers
## 8610                                                                                                                                 Vicky Cristina Barcelona
## 8611                                                                                                                                        Pineapple Express
## 8612                                                                                                                                           Tropic Thunder
## 8613                                                                                                                                      Slumdog Millionaire
## 8614                                                                                                                                        Quantum of Solace
## 8615                                                                                                                                              Role Models
## 8616                                                                                                                                                  Yes Man
## 8617                                                                                                                                                 Valkyrie
## 8618                                                                                                         Dear Zachary: A Letter to a Son About His Father
## 8619                                                                                                                                          I Love You, Man
## 8620                                                                                                                                            Adventureland
## 8621                                                                                                                                              In the Loop
## 8622                                                                                                                                     Inglourious Basterds
## 8623                                                                                                                                                       Up
## 8624                                                                                                                                            Hangover, The
## 8625                                                                                                                              Taking of Pelham 1 2 3, The
## 8626                                                                                                                   Harry Potter and the Half-Blood Prince
## 8627                                                                                                                                               District 9
## 8628                                                                                                                                            Julie & Julia
## 8629                                                                                                                                                  Bronson
## 8630                                                                                                                        Cloudy with a Chance of Meatballs
## 8631                                                                                                                                              City Island
## 8632                                                                                                                                               Zombieland
## 8633                                                                                                                                            Education, An
## 8634                                                                                                                                            Up in the Air
## 8635                                                                                                                                           Black Dynamite
## 8636                                                                                                                                        Fantastic Mr. Fox
## 8637                                                                                                                                            Single Man, A
## 8638                                                                                                                                              Crazy Heart
## 8639                                                                                                                                I Love You Phillip Morris
## 8640                                                                                                                                                Fish Tank
## 8641                                                                                                                                                Room, The
## 8642                                                                                                                                                Greenberg
## 8643                                                                                                                              About Elly (Darbareye Elly)
## 8644                                                                                                                                                 Kick-Ass
## 8645                                                                                                                                              Toy Story 3
## 8646                                                                                                                                            Despicable Me
## 8647                                                                                                                                                Inception
## 8648                                                                                                                                          Other Guys, The
## 8649                                                                                                                                        Two Escobars, The
## 8650                                                                                                                              Scott Pilgrim vs. the World
## 8651                                                                                                                                      Social Network, The
## 8652                                                                                                                                                   Easy A
## 8653                                                                                                                                               Jackass 3D
## 8654                                                                                                                                                127 Hours
## 8655                                                                                                                                               Black Swan
## 8656                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 8657                                                                                                                                                Burlesque
## 8658                                                                                                                                                Trip, The
## 8659                                                                                                                                             Poetry (Shi)
## 8660                                                                                                                                              Source Code
## 8661                                                                                                                                                Jane Eyre
## 8662                                                                                                                                                      Boy
## 8663                                                                                                                  Kid With a Bike, The (Le gamin au vélo)
## 8664                                                                                                                                    Hangover Part II, The
## 8665                                                                                                                                       X-Men: First Class
## 8666                                                                                                                                                Beginners
## 8667                                                                                                                                             Larry Crowne
## 8668                                                                                                                                          Horrible Bosses
## 8669                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 8670                                                                                                                           Rise of the Planet of the Apes
## 8671                                                                                                                                                Help, The
## 8672                                                                                                                                       30 Minutes or Less
## 8673                                                                                                                                                Moneyball
## 8674                                                                                                                  Separation, A (Jodaeiye Nader az Simin)
## 8675                                                                                                                                 Martha Marcy May Marlene
## 8676                                                                                                                              We Need to Talk About Kevin
## 8677                                                                                                                                Headhunters (Hodejegerne)
## 8678                                                                                                                     Oslo, August 31st (Oslo, 31. august)
## 8679                                                                                                                                                  Weekend
## 8680                                                                                                                                   Dark Knight Rises, The
## 8681                                                                                                                                                Chronicle
## 8682                                                                                                                                                Project X
## 8683                                                                                                                                                 Starbuck
## 8684                                                                                                                                                     Goon
## 8685                                                                                                                                           21 Jump Street
## 8686                                                                                                                                  Jeff, Who Lives at Home
## 8687                                                                                                                                     Jiro Dreams of Sushi
## 8688                                                                                                                                                   Bernie
## 8689                                                                                                                                         Moonrise Kingdom
## 8690                                                                                                                                    Safety Not Guaranteed
## 8691                                                                                                                                                      Ted
## 8692                                                                                                                                  Amazing Spider-Man, The
## 8693                                                                                                                                                  Skyfall
## 8694                                                                                                                                            Campaign, The
## 8695                                                                                                                                        Sleepwalk with Me
## 8696                                                                                                                                              Master, The
## 8697                                                                                                                                       Hunt, The (Jagten)
## 8698                                                                                                                    Royal Affair, A (Kongelig affære, En)
## 8699                                                                                                                                        Seven Psychopaths
## 8700                                                                                                                                      Here Comes the Boom
## 8701                                                                                                                                            Imposter, The
## 8702                                                                                                                                  Silver Linings Playbook
## 8703                                                                                                                                                   Flight
## 8704                                                                                                                                               Life of Pi
## 8705                                                                                                                                         Django Unchained
## 8706                                                                                                                                               This Is 40
## 8707                                                                                                                                It's Such a Beautiful Day
## 8708                                                                                                                                           Upstream Color
## 8709                                                                                                                                Snow White (Blancanieves)
## 8710                                                                                                                                      Act of Killing, The
## 8711                                                                                                                                                Host, The
## 8712                                                                                                                                          This Is the End
## 8713                                                                                                                                               Frances Ha
## 8714                                                                                                                                       Way, Way Back, The
## 8715                                                                                                                                      Monsters University
## 8716                                                                                                                                         What Maisie Knew
## 8717                                                                                                                                        Fruitvale Station
## 8718                                                                                                                                           Conjuring, The
## 8719                                                                                                                                            Short Term 12
## 8720                                                                                                                                                 Nebraska
## 8721                                                                                                                                       Inequality for All
## 8722                                                                                                                                              Just Wright
## 8723                                                                                                                                         12 Years a Slave
## 8724                                                                                                                            Jackass Presents: Bad Grandpa
## 8725                                                                                                                                       Dallas Buyers Club
## 8726                                                                                                                                       Selfish Giant, The
## 8727                                                                                                                                            Muscle Shoals
## 8728                                                                                                                                                Philomena
## 8729                                                                                                                                          American Hustle
## 8730                                                                                                                                                      Her
## 8731                                                                                                                                         Saving Mr. Banks
## 8732                                                                                                                        Anchorman 2: The Legend Continues
## 8733                                                                                                           Like Father, Like Son (Soshite chichi ni naru)
## 8734                                                                                                                                               Ride Along
## 8735                                                                                                                                           The Lego Movie
## 8736                                                                                                                           We Are the Best! (Vi är bäst!)
## 8737                                                                                                                               X-Men: Days of Future Past
## 8738                                                                                                                                                  Blended
## 8739                                                                                                                                           22 Jump Street
## 8740                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 8741                                                                                                                                                    Frank
## 8742                                                                                                                                            Babadook, The
## 8743                                                                                                                                                 Whiplash
## 8744                                                                                                                                                Gone Girl
## 8745                                                                                                                                  Guardians of the Galaxy
## 8746                                                                                                                                       Trip to Italy, The
## 8747                                                                                                                                            Let's Be Cops
## 8748                                                                                                               Two Days, One Night (Deux jours, une nuit)
## 8749                                                                                                                                          One I Love, The
## 8750                                                                                                                                               Guest, The
## 8751                                                                                                                                       The Skeleton Twins
## 8752                                                                                                                                   Force Majeure (Turist)
## 8753                                                                                                                                     Look of Silence, The
## 8754                                                                                                                                             Nightcrawler
## 8755                                                                                                                                       The Imitation Game
## 8756                                                                                                                                       Mad Max: Fury Road
## 8757                                                                                                               Star Wars: Episode VII - The Force Awakens
## 8758                                                                                                                                                 Brooklyn
## 8759                                                                                                        Going Clear: Scientology and the Prison of Belief
## 8760                                                                                                                                                     Dope
## 8761                                                                                                                                   People, Places, Things
## 8762                                                                                                                                        The Hateful Eight
## 8763                                                                                                                                                 Victoria
## 8764                                                                                                                                                  Phoenix
## 8765                                                                                                                                              The Lobster
## 8766                                                                                                                                                Kung Fury
## 8767                                                                                                                                               Inside Out
## 8768                                                                                                                       Batman v Superman: Dawn of Justice
## 8769                                                                                                                                 Requiem For The Big East
## 8770                                                                                                                                             The Revenant
## 8771                                                                                                                                          Best of Enemies
## 8772                                                                                                                                   Straight Outta Compton
## 8773                                                                                                                                      Beasts of No Nation
## 8774                                                                                                                                         The Night Before
## 8775                                                                                                                                                Spotlight
## 8776                                                                                                                                                    Creed
## 8777                                                                                                                                           Big Short, The
## 8778                                                                                                                                        World of Tomorrow
## 8779                                                                                                                                                 Zootopia
## 8780                                                                                                                                  Hello, My Name Is Doris
## 8781                                                                                                                             Neighbors 2: Sorority Rising
## 8782                                                                                                                                      Survive and Advance
## 8783                                                                                                                                  American President, The
## 8784                                                                                                                                    Sense and Sensibility
## 8785                                                                                                                                               Get Shorty
## 8786                                                                                                                                                     Babe
## 8787                                                                                                                                               Braveheart
## 8788                                                                                                                                                  Rob Roy
## 8789                                                                                                                                                Desperado
## 8790                                                                                                                                    Devil in a Blue Dress
## 8791                                                                                                                       Star Wars: Episode IV - A New Hope
## 8792                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 8793                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 8794                                                                                                                                Shawshank Redemption, The
## 8795                                                                                                                              What's Eating Gilbert Grape
## 8796                                                                                                                                              Client, The
## 8797                                                                                                                                             Forrest Gump
## 8798                                                                                                                              Four Weddings and a Funeral
## 8799                                                                                                                                                True Lies
## 8800                                                                                                                                                     Dave
## 8801                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 8802                                                                                                                                   Much Ado About Nothing
## 8803                                                                                                                                               Piano, The
## 8804                                                                                                                                         Schindler's List
## 8805                                                                                                                                              Shadowlands
## 8806                                                                                                                                Six Degrees of Separation
## 8807                                                                                                                                             True Romance
## 8808                                                                                                                                       Dances with Wolves
## 8809                                                                                                                                                   Batman
## 8810                                                                                                                                                    Fargo
## 8811                                                                                                                                          Family Thing, A
## 8812                                                                                                                                      Mission: Impossible
## 8813                                                                                                                                        Cold Comfort Farm
## 8814                                                                                                                                                Lone Star
## 8815                                                                                                                                           Godfather, The
## 8816                                                                                                                                             My Fair Lady
## 8817                                                                                                                                         My Favorite Year
## 8818                                                                                                                                 Apple Dumpling Gang, The
## 8819                                                                                                                                 Escape to Witch Mountain
## 8820                                                                                                                                             Mary Poppins
## 8821                                                                                                                                      Sound of Music, The
## 8822                                                                                                                                                 Die Hard
## 8823                                                                                                                      Willy Wonka & the Chocolate Factory
## 8824                                                                                                                                     Fish Called Wanda, A
## 8825                                                                                                                             Monty Python's Life of Brian
## 8826                                                                                                                                          Victor/Victoria
## 8827                                                                                                                                            Dirty Dancing
## 8828                                                                                                                                      Weekend at Bernie's
## 8829                                                                                                                                           Basic Instinct
## 8830                                                                                                                                         Crying Game, The
## 8831                                                                                                                               E.T. the Extra-Terrestrial
## 8832                                                                                                                                                  Top Gun
## 8833                                                                                                                                           On Golden Pond
## 8834                                                                                                                          Return of the Pink Panther, The
## 8835                                                                                                                                               Abyss, The
## 8836                                                                                                                                                 Fog, The
## 8837                                                                                                                                     Escape from New York
## 8838                                                                                                                                             Howling, The
## 8839                                                                                                                                         Private Benjamin
## 8840                                                                                                                          Monty Python and the Holy Grail
## 8841                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 8842                                                                                                                                             My Left Foot
## 8843                                                                                                                                 Sex, Lies, and Videotape
## 8844                                                                                                                          One Flew Over the Cuckoo's Nest
## 8845                                                                                                                           Cheech and Chong's Up in Smoke
## 8846                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 8847                                                                                                                                      Princess Bride, The
## 8848                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 8849                                                                                                                                                   Aliens
## 8850                                                                                                                                           Apocalypse Now
## 8851                                                                                                                                                    Alien
## 8852                                                                                                                                      Blues Brothers, The
## 8853                                                                                                                                  Godfather: Part II, The
## 8854                                                                                                                                        Full Metal Jacket
## 8855                                                                                                                                                  Henry V
## 8856                                                                                                                                                  Amadeus
## 8857                                                                                                                              Once Upon a Time in America
## 8858                                                                                                                                               Sting, The
## 8859                                                                                                                                          Terminator, The
## 8860                                                                                                                                                    Glory
## 8861                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 8862                                                                                                                                       Dead Poets Society
## 8863                                                                                                                                                Chinatown
## 8864                                                                                                                                             Shining, The
## 8865                                                                                                                                              Stand by Me
## 8866                                                                                                                                         Deer Hunter, The
## 8867                                                                                                                                            Groundhog Day
## 8868                                                                                                                                       Back to the Future
## 8869                                                                                                                                                   Patton
## 8870                                                                                                                                               Highlander
## 8871                                                                                                                                       Young Frankenstein
## 8872                                                                                                                                        Somewhere in Time
## 8873                                                                                                                                       This Is Spinal Tap
## 8874                                                                                                                       Indiana Jones and the Last Crusade
## 8875                                                                                                                                      Room with a View, A
## 8876                                                                                                                                      Killing Fields, The
## 8877                                                                                                                                          Field of Dreams
## 8878                                                                                                                                  When Harry Met Sally...
## 8879                                                                                                                          American Werewolf in London, An
## 8880                                                                                                                                           Amityville 3-D
## 8881                                                                                                                            Amityville II: The Possession
## 8882                                                                                                                                   Amityville Horror, The
## 8883                                                                                                                                                   Carrie
## 8884                                                                                                                                               Cat People
## 8885                                                                                                                               Nightmare on Elm Street, A
## 8886                                                                                                                                                Omen, The
## 8887                                                                                                                                                    Shine
## 8888                                                                                                                                              Sling Blade
## 8889                                                                                                                                               Young Guns
## 8890                                                                                                                                                   Grease
## 8891                                                                                                                                                     Jaws
## 8892                                                                                                                                            Jerry Maguire
## 8893                                                                                                                                          Raising Arizona
## 8894                                                                                                                                Last of the Mohicans, The
## 8895                                                                                                                                           Murder at 1600
## 8896                                                                                                                                           Absolute Power
## 8897                                                                                                                                            Private Parts
## 8898                                                                                                                                      Conan the Barbarian
## 8899                                                                                                                                                 Cop Land
## 8900                                                                                                                                        Conspiracy Theory
## 8901                                                                                                                                        L.A. Confidential
## 8902                                                                                                                                                Game, The
## 8903                                                                                                                                          Full Monty, The
## 8904                                                                                                                                     The Devil's Advocate
## 8905                                                                                                                                                  Stripes
## 8906                                                                                                                                                  Witness
## 8907                                                                                                                                        Good Will Hunting
## 8908                                                                                                                                     Sweet Hereafter, The
## 8909                                                                                                                                                  Titanic
## 8910                                                                                                                                        Big Lebowski, The
## 8911                                                                                                                                                   Fallen
## 8912                                                                                                                                       As Good as It Gets
## 8913                                                                                                                                        Perfect Murder, A
## 8914                                                                                                                           X-Files: Fight the Future, The
## 8915                                                                                                                                            Smoke Signals
## 8916                                                                                                                                               Armageddon
## 8917                                                                                                                                          Lethal Weapon 4
## 8918                                                                                                                             There's Something About Mary
## 8919                                                                                                                                          West Side Story
## 8920                                                                                                                                                  Oliver!
## 8921                                                                                                                                   French Connection, The
## 8922                                                                                                                                                    Rocky
## 8923                                                                                                                                        Kramer vs. Kramer
## 8924                                                                                                                                          Ordinary People
## 8925                                                                                                                                         Chariots of Fire
## 8926                                                                                                                                      Terms of Endearment
## 8927                                                                                                                                                 Rain Man
## 8928                                                                                                                                       Driving Miss Daisy
## 8929                                                                                                                                                    Klute
## 8930                                                                                                                                                Labyrinth
## 8931                                                                                                                                      Breakfast Club, The
## 8932                                                                                                                                          Friday the 13th
## 8933                                                                                                                                   Friday the 13th Part 2
## 8934                                                                                                               Friday the 13th Part IV: The Final Chapter
## 8935                                                                                                                  Friday the 13th Part V: A New Beginning
## 8936                                                                                                                     Friday the 13th Part VI: Jason Lives
## 8937                                                                                                         Friday the 13th Part VIII: Jason Takes Manhattan
## 8938                                                                                                                                                Halloween
## 8939                                                                                                                                             Halloween II
## 8940                                                                                                                       Halloween III: Season of the Witch
## 8941                                                                                                                                               Prom Night
## 8942                                                                                                                                              Poltergeist
## 8943                                                                                                                           Poltergeist II: The Other Side
## 8944                                                                                                                                          Poltergeist III
## 8945                                                                                                                                            Exorcist, The
## 8946                                                                                                                                            Lethal Weapon
## 8947                                                                                                                                          Lethal Weapon 2
## 8948                                                                                                                                                 Gremlins
## 8949                                                                                                                                             Goonies, The
## 8950                                                                                                                                       Mask of Zorro, The
## 8951                                                                                                                                            Soylent Green
## 8952                                                                                                                                  Poseidon Adventure, The
## 8953                                                                                                                                       Dangerous Liaisons
## 8954                                                                                                                                     Jane Austen's Mafia!
## 8955                                                                                                                                      Saving Private Ryan
## 8956                                                                                                                                               Candleshoe
## 8957                                                                                                                                Devil and Max Devlin, The
## 8958                                                                                                                                 Honey, I Shrunk the Kids
## 8959                                                                                                                                           Tender Mercies
## 8960                                                                                                                                                   Popeye
## 8961                                                                                                                          Something Wicked This Way Comes
## 8962                                                                                                                                                   Splash
## 8963                                                                                                                                                Jerk, The
## 8964                                                                                                                                Dead Men Don't Wear Plaid
## 8965                                                                                                                                 Man with Two Brains, The
## 8966                                                                                                                                           Outsiders, The
## 8967                                                                                                                     Indiana Jones and the Temple of Doom
## 8968                                                                                                                                           Dead Zone, The
## 8969                                                                                                                                                     Cujo
## 8970                                                                                                                                     Children of the Corn
## 8971                                                                                                                           Ever After: A Cinderella Story
## 8972                                                                                                                                            Atlantic City
## 8973                                                                                                                                                   Legend
## 8974                                                                                                                                          Sixteen Candles
## 8975                                                                                                                                            Avengers, The
## 8976                                                                                                                                   NeverEnding Story, The
## 8977                                                                                                                           Attack of the Killer Tomatoes!
## 8978                                                                                                                                              Beetlejuice
## 8979                                                                                                                                                   Frenzy
## 8980                                                                                                                                                   Willow
## 8981                                                                                                                                        Untouchables, The
## 8982                                                                                                                                             My Bodyguard
## 8983                                                                                                                                             Working Girl
## 8984                                                                                                                                          Few Good Men, A
## 8985                                                                                                                                               Thing, The
## 8986                                                                                                                                      Edward Scissorhands
## 8987                                                                                                                                           Producers, The
## 8988                                                                                                                             History of the World: Part I
## 8989                                                                                                                                          My Cousin Vinny
## 8990                                                                                                                                        Elephant Man, The
## 8991                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 8992                                                                                                                                  American President, The
## 8993                                                                                                                           Ace Ventura: When Nature Calls
## 8994                                                                                                                                                Apollo 13
## 8995                                                                                                                               Ace Ventura: Pet Detective
## 8996                                                                                                                                     Addams Family Values
## 8997                                                                                                                                         Another Stakeout
## 8998                                                                                                                                          Aristocats, The
## 8999                                                                                                                                             Arrival, The
## 9000                                                                                                                                           Apartment, The
## 9001                                                                                                                                    2001: A Space Odyssey
## 9002                                                                                                                            Adventures of Robin Hood, The
## 9003                                                                                                                              Around the World in 80 Days
## 9004                                                                                                                                            39 Steps, The
## 9005                                                                                                                                       African Queen, The
## 9006                                                                                                                                     2 Days in the Valley
## 9007                                                                                                                                 Apple Dumpling Gang, The
## 9008                                                                                                                             20,000 Leagues Under the Sea
## 9009                                                                                                                                   Angels in the Outfield
## 9010                                                                                                                                               Abyss, The
## 9011                                                                                                                                                   Aliens
## 9012                                                                                                                                             12 Angry Men
## 9013                                                                                                                                                    Alien
## 9014                                                                                                                                                  Amadeus
## 9015                                                                                                                                               Annie Hall
## 9016                                                                                                                                     Arsenic and Old Lace
## 9017                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 9018                                                                                                                          American Werewolf in London, An
## 9019                                                                                                                                           101 Dalmatians
## 9020                                                                                                                                           Absolute Power
## 9021                                                                                                                                                 Anaconda
## 9022                                                                                                              Austin Powers: International Man of Mystery
## 9023                                                                                                                                            Air Force One
## 9024                                                                                                                                      Alien: Resurrection
## 9025                                                                                                                                       As Good as It Gets
## 9026                                                                                                                                               Armageddon
## 9027                                                                                                                           All Quiet on the Western Front
## 9028                                                                                                                             Absent-Minded Professor, The
## 9029                                                                                                                     Apple Dumpling Gang Rides Again, The
## 9030                                                                                                                                              'burbs, The
## 9031                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 9032                                                                                                                                       Addams Family, The
## 9033                                                                                                                                Adventures in Babysitting
## 9034                                                                                                                                            Avengers, The
## 9035                                                                                                                           Attack of the Killer Tomatoes!
## 9036                                                                                                                                             Torn Curtain
## 9037                                                                                                                                                 Lifeboat
## 9038                                                                                                                           2010: The Year We Make Contact
## 9039                                                                                                                                               52 Pick-Up
## 9040                                                                                                                                                      8MM
## 9041                                                                                                                                                  Airport
## 9042                                                                                                                                              Airport '77
## 9043                                                                                                                                             Dead Ringers
## 9044                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 9045                                                                                                Monty Python's And Now for Something Completely Different
## 9046                                                                                                                                                Airplane!
## 9047                                                                                                                                  Airplane II: The Sequel
## 9048                                                                                                                                     Aces: Iron Eagle III
## 9049                                                                                                                                    Astronaut's Wife, The
## 9050                                                                                                     Adventures of Milo and Otis, The (Koneko monogatari)
## 9051                                                                                              Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 9052                                                                                                                                7th Voyage of Sinbad, The
## 9053                                                                                                                                             Agnes of God
## 9054                                                                                                                                   ...And Justice for All
## 9055                                                                                                                                             Animal House
## 9056                                                                                                                                                Frequency
## 9057                                                                                                                                                   Arthur
## 9058                                                                                                                                          American Psycho
## 9059                                                                                                                                                    U-571
## 9060                                                                                                                                          American Gigolo
## 9061                                                                                                                                                    Benji
## 9062                                                                                                                                             Alien Nation
## 9063                                                                                                                                              Angel Heart
## 9064                                                                                                                                           Action Jackson
## 9065                                                                                                                                  American President, The
## 9066                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 9067                                                                                                                                      Usual Suspects, The
## 9068                                                                                                                                              Taxi Driver
## 9069                                                                                                                                                Apollo 13
## 9070                                                                                                                                                   Clerks
## 9071                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9072                                                                                                                                                 Outbreak
## 9073                                                                                                                                             Pulp Fiction
## 9074                                                                                                                                                Quiz Show
## 9075                                                                                                                                Shawshank Redemption, The
## 9076                                                                                                                                                Mask, The
## 9077                                                                                                                                                True Lies
## 9078                                                                                                                                     Addams Family Values
## 9079                                                                                                                                    Age of Innocence, The
## 9080                                                                                                                                            Jurassic Park
## 9081                                                                                                                                         Schindler's List
## 9082                                                                                                                                             Blade Runner
## 9083                                                                                                                                               Home Alone
## 9084                                                                                                                                       Dances with Wolves
## 9085                                                                                                                                Silence of the Lambs, The
## 9086                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 9087                                                                                                                          Wallace & Gromit: A Close Shave
## 9088                                                                                                                                           Godfather, The
## 9089                                                                                                                                               Casablanca
## 9090                                                                                                                                        Wizard of Oz, The
## 9091                                                                                                                          Monty Python and the Holy Grail
## 9092                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 9093                                                                                                                          One Flew Over the Cuckoo's Nest
## 9094                                                                                                                                               Goodfellas
## 9095                                                                                                                                  Godfather: Part II, The
## 9096                                                                                                                                 Star Trek: First Contact
## 9097                                                                                                                                            Boogie Nights
## 9098                                                                                                                                      Tomorrow Never Dies
## 9099                                                                                                                             There's Something About Mary
## 9100                                                                                                                                                 Rain Man
## 9101                                                                                                                                      Breakfast Club, The
## 9102                                                                                                                                      Saving Private Ryan
## 9103                                                                                                                                                     Tron
## 9104                                                                                                                                   NeverEnding Story, The
## 9105                                                                                                                                                    Blade
## 9106                                                                                                                                                   Willow
## 9107                                                                                                                                        Untouchables, The
## 9108                                                                                                                                          My Cousin Vinny
## 9109                                                                                                                                       American History X
## 9110                                                                                                                                      Shakespeare in Love
## 9111                                                                                                                                         Crocodile Dundee
## 9112                                                                                                                        Lock, Stock & Two Smoking Barrels
## 9113                                                                                                                                               Mummy, The
## 9114                                                                                                                                                 Superman
## 9115                                                                                                                                             Notting Hill
## 9116                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 9117                                                                                                                                Run Lola Run (Lola rennt)
## 9118                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 9119                                                                                                                                 Thomas Crown Affair, The
## 9120                                                                                                                                                      Big
## 9121                                                                                                                                          American Beauty
## 9122                                                                                                                                               Fight Club
## 9123                                                                                                                                     Being John Malkovich
## 9124                                                                                                                                            Wayne's World
## 9125                                                                                                                                                Gladiator
## 9126                                                                                                                                   Mission: Impossible II
## 9127                                                                                                                                              Chicken Run
## 9128                                                                                                                                             Best in Show
## 9129                                                                                                                                         Meet the Parents
## 9130                                                                                                                                                    Shrek
## 9131                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 9132                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 9133                                                                                                                                               Spider-Man
## 9134                                                                                                                   Lord of the Rings: The Two Towers, The
## 9135                                                                                                                                  All the President's Men
## 9136                                                                                                                                  To Live and Die in L.A.
## 9137                                                                                                           Lord of the Rings: The Return of the King, The
## 9138                                                                                                                    Eternal Sunshine of the Spotless Mind
## 9139                                                                                                                                         Incredibles, The
## 9140                                                                                                                                               Krays, The
## 9141                                                                                                                                            Batman Begins
## 9142                                                                                                                                               Murderball
## 9143                                                                                                                                                   Casino
## 9144                                                                                                                                               Get Shorty
## 9145                                                                                                                                              Taxi Driver
## 9146                                                                                                                                                Desperado
## 9147                                                                                                                                              Judge Dredd
## 9148                                                                                                                                                  Ed Wood
## 9149                                                                                                                                     Hot Shots! Part Deux
## 9150                                                                                                                                             Blade Runner
## 9151                                                                                                                                                    Fargo
## 9152                                                                                                                                              Dragonheart
## 9153                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 9154                                                                                                                          Wallace & Gromit: A Close Shave
## 9155                                                                                                                                           Godfather, The
## 9156                                                                                                                             Monty Python's Life of Brian
## 9157                                                                                                                                                  Platoon
## 9158                                                                                                                                           Apocalypse Now
## 9159                                                                                                   Once Upon a Time in the West (C'era una volta il West)
## 9160                                                                                                                                                   Psycho
## 9161                                                                                                                                  Godfather: Part II, The
## 9162                                                                                                                                                   Grease
## 9163                                                                                                                                                Liar Liar
## 9164                                                                                                                                                  Gattaca
## 9165                                                                                                                                            Boogie Nights
## 9166                                                                                                                                        Big Lebowski, The
## 9167                                                                                                                              Back to the Future Part III
## 9168                                                                                                                     Indiana Jones and the Temple of Doom
## 9169                                                                                                                                              Beetlejuice
## 9170                                                                                                                      Life Is Beautiful (La Vita è bella)
## 9171                                                                                                                                                 Superman
## 9172                                                                                                                                 Blair Witch Project, The
## 9173                                                                                                                                                      Big
## 9174                                                                                                                                              Re-Animator
## 9175                                                                                                                                                 Magnolia
## 9176                                                                                                                                  Pee-wee's Big Adventure
## 9177                                                                                                                                   Assault on Precinct 13
## 9178                                                                                                                                      Requiem for a Dream
## 9179                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 9180                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 9181                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 9182                                                                                                                  Grave of the Fireflies (Hotaru no haka)
## 9183                                                                                                                                            About Schmidt
## 9184                                                                                                                   Lord of the Rings: The Two Towers, The
## 9185                                                                                                                                                     Narc
## 9186                                                                                                                                             Pianist, The
## 9187                                                                                                       Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 9188                                                                                                                                            28 Days Later
## 9189                                                                                                                                                Bad Santa
## 9190                                                                                                                    Eternal Sunshine of the Spotless Mind
## 9191                                                                                                                                         Dawn of the Dead
## 9192                                                                                                                                            Before Sunset
## 9193                                                                                                                                                   Closer
## 9194                                                                                                                                                  Old Boy
## 9195                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 9196                                                                                                                            Sea Inside, The (Mar adentro)
## 9197                                                                                                                                             Hotel Rwanda
## 9198                                                                                                                                                  Jumanji
## 9199                                                                                                                                                     Babe
## 9200                                                                                                                                               Pocahontas
## 9201                                                                                                                                      Usual Suspects, The
## 9202                                                                                                                                            Happy Gilmore
## 9203                                                                                                                                                   Casper
## 9204                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9205                                                                                                                                        Santa Clause, The
## 9206                                                                                                                                           Lion King, The
## 9207                                                                                                                                           Mrs. Doubtfire
## 9208                                                                                                                          Nightmare Before Christmas, The
## 9209                                                                                                                                   Brady Bunch Movie, The
## 9210                                                                                                                                               Home Alone
## 9211                                                                                                                                                    Ghost
## 9212                                                                                                                                                  Aladdin
## 9213                                                                                                                                                   Batman
## 9214                                                                                                                                Silence of the Lambs, The
## 9215                                                                                                                          Snow White and the Seven Dwarfs
## 9216                                                                                                                                     Beauty and the Beast
## 9217                                                                                                                                                Pinocchio
## 9218                                                                                                                                          Aristocats, The
## 9219                                                                                                                                James and the Giant Peach
## 9220                                                                                                                                                Space Jam
## 9221                                                                                                                                          Harriet the Spy
## 9222                                                                                                                                        Wizard of Oz, The
## 9223                                                                                                                                    It's a Wonderful Life
## 9224                                                                                                                                            Love Bug, The
## 9225                                                                                                                                               Cinderella
## 9226                                                                                                                                             Mary Poppins
## 9227                                                                                                                                                    Dumbo
## 9228                                                                                                                                      Sound of Music, The
## 9229                                                                                                                     William Shakespeare's Romeo + Juliet
## 9230                                                                                                                      Willy Wonka & the Chocolate Factory
## 9231                                                                                                                               E.T. the Extra-Terrestrial
## 9232                                                                                                                          Monty Python and the Holy Grail
## 9233                                                                                                                                      Princess Bride, The
## 9234                                                                                                                                    To Kill a Mockingbird
## 9235                                                                                                                                      Blues Brothers, The
## 9236                                                                                                                                           101 Dalmatians
## 9237                                                                                                                                                   Grease
## 9238                                                                                                                                      Grosse Pointe Blank
## 9239                                                                                                                                Men in Black (a.k.a. MIB)
## 9240                                                                                                                                      Wedding Singer, The
## 9241                                                                                                                                                    Mulan
## 9242                                                                                                                                                    Rocky
## 9243                                                                                                                                      Breakfast Club, The
## 9244                                                                                                                                                    Bambi
## 9245                                                                                                                                 Honey, I Shrunk the Kids
## 9246                                                                                                                                         Jungle Book, The
## 9247                                                                                                                                       Lady and the Tramp
## 9248                                                                                                                                      Little Mermaid, The
## 9249                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 9250                                                                                                                                                Peter Pan
## 9251                                                                                                                                    All Dogs Go to Heaven
## 9252                                                                                                                                          Sixteen Candles
## 9253                                                                                                                                   NeverEnding Story, The
## 9254                                                                                                                                              Beetlejuice
## 9255                                                                                                                                                Rush Hour
## 9256                                                                                                                                           Producers, The
## 9257                                                                                                                                            Bug's Life, A
## 9258                                                                                                                                    Babe: Pig in the City
## 9259                                                                                                                                             Office Space
## 9260                                                                                                                                              Matrix, The
## 9261                                                                                                                               10 Things I Hate About You
## 9262                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 9263                                                                                                                                          Iron Giant, The
## 9264                                                                                                                                       Christmas Story, A
## 9265                                                                                                                                         Yellow Submarine
## 9266                                                                                                                                 Ferris Bueller's Day Off
## 9267                                                                                                                           Home Alone 2: Lost in New York
## 9268                                                                                                                                              Toy Story 2
## 9269                                                                                                                                         Romeo and Juliet
## 9270                                                                                                                                              Chicken Run
## 9271                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 9272                                                                                                                                Emperor's New Groove, The
## 9273                                                                                                                                        Miss Congeniality
## 9274                                                                                                                                                 Spy Kids
## 9275                                                                                                                                    Bridget Jones's Diary
## 9276                                                                                                                                                    Shrek
## 9277                                                                                                                               Throw Momma from the Train
## 9278                                                                                                                                              Rush Hour 2
## 9279                                                                                                                                           Monsters, Inc.
## 9280                                                                                                                                              Shallow Hal
## 9281                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9282                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 9283                                                                                                                                 My Big Fat Greek Wedding
## 9284                                                                                                                                               Spider-Man
## 9285                                                                                                                                            Lilo & Stitch
## 9286                                                                                                                                                Mr. Deeds
## 9287                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 9288                                                                                                                              Austin Powers in Goldmember
## 9289                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 9290                                                                                                                                     Saturday Night Fever
## 9291                                                                                                                  Harry Potter and the Chamber of Secrets
## 9292                                                                                                                   Lord of the Rings: The Two Towers, The
## 9293                                                                                                                    My Neighbor Totoro (Tonari no Totoro)
## 9294                                                                                                                                     Bend It Like Beckham
## 9295                                                                                                       Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 9296                                                                                                                                           Bruce Almighty
## 9297                                                                                                                                             Finding Nemo
## 9298                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 9299                                                                                                                                              Jungle Book
## 9300                                                                                                                                           School of Rock
## 9301                                                                                                                                                      Elf
## 9302                                                                                                                                         Kindergarten Cop
## 9303                                                                                                           Lord of the Rings: The Return of the King, The
## 9304                                                                                                                                     Cheaper by the Dozen
## 9305                                                                                                                                               Mean Girls
## 9306                                                                                                                                                  Shrek 2
## 9307                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 9308                                                                                                                                        Napoleon Dynamite
## 9309                                                                                                                                            Super Size Me
## 9310                                                                                                                           Now You See Him, Now You Don't
## 9311                                                                                                                                         Incredibles, The
## 9312                                                                                                                                        Finding Neverland
## 9313                                                                                                              Kiki's Delivery Service (Majo no takkyûbin)
## 9314                                                                                                          Lemony Snicket's A Series of Unfortunate Events
## 9315                                                                                                                        Charlie and the Chocolate Factory
## 9316                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 9317                                                                                                                                               Madagascar
## 9318                                                                                                                                           Cinderella Man
## 9319                                                                                                                                         Mr. & Mrs. Smith
## 9320                                                                                                                                            Batman Begins
## 9321                                                                                                                                           Fantastic Four
## 9322                                                                                                                                         Wedding Crashers
## 9323                                                                                                                                        Pride & Prejudice
## 9324                                                                                                                      Harry Potter and the Goblet of Fire
## 9325                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 9326                                                                                                                                           V for Vendetta
## 9327                                                                                                                                    Thank You for Smoking
## 9328                                                                                                                                           Over the Hedge
## 9329                                                                                                                                                     Cars
## 9330                                                                                                                                   Devil Wears Prada, The
## 9331                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 9332                                                                                                                                     Little Miss Sunshine
## 9333                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 9334                                                                                                                                      Night at the Museum
## 9335                                                                                                                                    Stranger than Fiction
## 9336                                                                                                                                         Illusionist, The
## 9337                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 9338                                                                                                                                            Prestige, The
## 9339                                                                                                                                              Ratatouille
## 9340                                                                                                                                               Knocked Up
## 9341                                                                                                                                          Shrek the Third
## 9342                                                                                                                 Pirates of the Caribbean: At World's End
## 9343                                                                                                                                         Ocean's Thirteen
## 9344                                                                                                                Fantastic Four: Rise of the Silver Surfer
## 9345                                                                                                                                             Transformers
## 9346                                                                                                                Harry Potter and the Order of the Phoenix
## 9347                                                                                                                                      Simpsons Movie, The
## 9348                                                                                                                     Tyler Perry's Why Did I Get Married?
## 9349                                                                                                                                           Be Kind Rewind
## 9350                                                                                                                                               Darfur Now
## 9351                                                                                                                                      Golden Compass, The
## 9352                                                                                                                                              I Am Legend
## 9353                                                                                                                                                     Juno
## 9354                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 9355                                                                                                                              Hellboy II: The Golden Army
## 9356                                                                                                                                                In Bruges
## 9357                                                                                                                                                   Jumper
## 9358                                                                                                                                         Dark Knight, The
## 9359                                                                                                                                Forgetting Sarah Marshall
## 9360                                                                                                                                                 Iron Man
## 9361                                                                                                                                                   WALL·E
## 9362                                                                                                                                                  Hancock
## 9363                                                                                                                                                Get Smart
## 9364                                                                                                                                              Taxi Driver
## 9365                                                                                                                       Star Wars: Episode IV - A New Hope
## 9366                                                                                                                                Shawshank Redemption, The
## 9367                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 9368                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 9369                                                                                                                                       Back to the Future
## 9370                                                                                                                                      Saving Private Ryan
## 9371                                                                                                                                 Ferris Bueller's Day Off
## 9372                                                                                                                                               Fight Club
## 9373                                                                                                                                                  Memento
## 9374                                                                                                                                     Bourne Identity, The
## 9375                                                                                                                             City of God (Cidade de Deus)
## 9376                                                                                                                                    Bourne Supremacy, The
## 9377                                                                                                                                          Children of Men
## 9378                                                                                                                                            Blood Diamond
## 9379                                                                                                                                    Bourne Ultimatum, The
## 9380                                                                                                                                         Dark Knight, The
## 9381                                                                                                                                     Inglourious Basterds
## 9382                                                                                                                                                     Moon
## 9383                                                                                                                                         Hurt Locker, The
## 9384                                                                                                                                               District 9
## 9385                                                                                                                                        It Might Get Loud
## 9386                                                                                                                                                Inception
## 9387                                                                                                                                               Black Swan
## 9388                                                                                                                                              Source Code
## 9389                                                                                                                                       Bourne Legacy, The
## 9390                                                                                                                                             Intouchables
## 9391                                                                                                                                                     Argo
## 9392                                                                                                                                                 Oblivion
## 9393                                                                                                                                        From the Sky Down
## 9394                                                                                                                                              Pacific Rim
## 9395                                                                                                                                               About Time
## 9396                                                                                                                                                  Gravity
## 9397                                                                                                                                 Wolf of Wall Street, The
## 9398                                                                                                                                                      Her
## 9399                                                                                                                                             Interstellar
## 9400                                                                                                                                         Edge of Tomorrow
## 9401                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 9402                                                                                                                                                  Boyhood
## 9403                                                                                                                                                 Whiplash
## 9404                                                                                                                                          American Sniper
## 9405                                                                                                                                                John Wick
## 9406                                                                                                                                             Nightcrawler
## 9407                                                                                                                                               Ex Machina
## 9408                                                                                                                             Kingsman: The Secret Service
## 9409                                                                                                                                                 Blackhat
## 9410                                                                                                                                       Mad Max: Fury Road
## 9411                                                                                                                                                  Ant-Man
## 9412                                                                                                                                              The Martian
## 9413                                                                                                                                               Inside Out
## 9414                                                                                                                                                  Sicario
## 9415                                                                                                                                                    Creed
## 9416                                                                                                                                             Jason Bourne
## 9417                                                                                                                                                Toy Story
## 9418                                                                                                                                  American President, The
## 9419                                                                                                                                                   Casino
## 9420                                                                                                                               Postman, The (Postino, Il)
## 9421                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 9422                                                                                                                                                Apollo 13
## 9423                                                                                                                                                  Rob Roy
## 9424                                                                                                                                              Hoop Dreams
## 9425                                                                                                                       Star Wars: Episode IV - A New Hope
## 9426                                                                                                                                          Specialist, The
## 9427                                                                                                                                Shawshank Redemption, The
## 9428                                                                                                                                                True Lies
## 9429                                                                                                             City Slickers II: The Legend of Curly's Gold
## 9430                                                                                                                                            Fugitive, The
## 9431                                                                                                                                            Jurassic Park
## 9432                                                                                                                                  Remains of the Day, The
## 9433                                                                                                                                Robin Hood: Men in Tights
## 9434                                                                                                                                                   Batman
## 9435                                                                                                                                Silence of the Lambs, The
## 9436                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 9437                                                                                                                                                   Ransom
## 9438                                                                                                                   Homeward Bound: The Incredible Journey
## 9439                                                                                                                     William Shakespeare's Romeo + Juliet
## 9440                                                                                                                             Monty Python's Life of Brian
## 9441                                                                                                                   Children of the Corn IV: The Gathering
## 9442                                                                                                                          One Flew Over the Cuckoo's Nest
## 9443                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9444                                                                                                                                                    Alien
## 9445                                                                                                                                  Godfather: Part II, The
## 9446                                                                                                                                               Annie Hall
## 9447                                                                                                                                               Sting, The
## 9448                                                                                                                                              Stand by Me
## 9449                                                                                                                       Butch Cassidy and the Sundance Kid
## 9450                                                                                                                                  When Harry Met Sally...
## 9451                                                                                                                                 Star Trek: First Contact
## 9452                                                                                                                   Star Trek VI: The Undiscovered Country
## 9453                                                                                                                          Star Trek II: The Wrath of Khan
## 9454                                                                                                                            Star Trek IV: The Voyage Home
## 9455                                                                                                                                Last of the Mohicans, The
## 9456                                                                                                                   Jungle2Jungle (a.k.a. Jungle 2 Jungle)
## 9457                                                                                                                   Romy and Michele's High School Reunion
## 9458                                                                                                              Austin Powers: International Man of Mystery
## 9459                                                                                                                                                 Face/Off
## 9460                                                                                                                                Hunt for Red October, The
## 9461                                                                                                                                              Chasing Amy
## 9462                                                                                                                                          Full Monty, The
## 9463                                                                                                                                               Armageddon
## 9464                                                                                                                                                    Rocky
## 9465                                                                                                                                                 Rain Man
## 9466                                                                                                                                Gremlins 2: The New Batch
## 9467                                                                                                                                  Flight of the Navigator
## 9468                                                                                                                                   Lord of the Rings, The
## 9469                                                                                                                                              Beetlejuice
## 9470                                                                                                                                          Few Good Men, A
## 9471                                                                                                                                          My Cousin Vinny
## 9472                                                                                                                                  Star Trek: Insurrection
## 9473                                                                                                                                              Matrix, The
## 9474                                                                                                                Star Wars: Episode I - The Phantom Menace
## 9475                                                                                                                                                 Superman
## 9476                                                                                                                                            Arachnophobia
## 9477                                                                                                                                 Blair Witch Project, The
## 9478                                                                                                                                         Sixth Sense, The
## 9479                                                                                                                                                Airplane!
## 9480                                                                                                                                                      Big
## 9481                                                                                                                                          American Beauty
## 9482                                                                                                                                 Ferris Bueller's Day Off
## 9483                                                                                                                                               Fight Club
## 9484                                                                                                                                 Who Framed Roger Rabbit?
## 9485                                                                                                                                     Being John Malkovich
## 9486                                                                                                                                              Toy Story 2
## 9487                                                                                                                                 Talented Mr. Ripley, The
## 9488                                                                                                                        Ghost Dog: The Way of the Samurai
## 9489                                                                                                                                          Erin Brockovich
## 9490                                                                                                                       Close Encounters of the Third Kind
## 9491                                                                                                                                            High Fidelity
## 9492                                                                                                                                                Gladiator
## 9493                                                                                                                                              Chicken Run
## 9494                                                                                                                                                    X-Men
## 9495                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 9496                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 9497                                                                                                                                            Almost Famous
## 9498                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 9499                                                                                                                                                Cast Away
## 9500                                                                                                                                                    Shrek
## 9501                                                                                                                                  Lara Croft: Tomb Raider
## 9502                                                                                                                                Fast and the Furious, The
## 9503                                                                                                                        Final Fantasy: The Spirits Within
## 9504                                                                                                       Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau)
## 9505                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 9506                                                                                                                                               Spider-Man
## 9507                                                                                                                   Lord of the Rings: The Two Towers, The
## 9508                                                                                                                                         X2: X-Men United
## 9509                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 9510                                                                                                                                      Lost in Translation
## 9511                                                                                                                                           School of Rock
## 9512                                                                                                           Lord of the Rings: The Return of the King, The
## 9513                                                                                                                               Passion of the Christ, The
## 9514                                                                                                                                               Braveheart
## 9515                                                                                                                                                Apollo 13
## 9516                                                                                                                                           Batman Forever
## 9517                                                                                                                               Die Hard: With a Vengeance
## 9518                                                                                                                                             First Knight
## 9519                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9520                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 9521                                                                                                                                      Legends of the Fall
## 9522                                                                                                                                             Pulp Fiction
## 9523                                                                                                                                Shawshank Redemption, The
## 9524                                                                                                                                   Star Trek: Generations
## 9525                                                                                                                               Ace Ventura: Pet Detective
## 9526                                                                                                                                 Clear and Present Danger
## 9527                                                                                                                                             Forrest Gump
## 9528                                                                                                                                                True Lies
## 9529                                                                                                                                              Cliffhanger
## 9530                                                                                                                                            Fugitive, The
## 9531                                                                                                                                       Dances with Wolves
## 9532                                                                                                                                                   Batman
## 9533                                                                                                                                Silence of the Lambs, The
## 9534                                                                                                                                     Beauty and the Beast
## 9535                                                                                                                       Star Wars: Episode IV - A New Hope
## 9536                                                                                                                                           Godfather, The
## 9537                                                                                                                                           Apartment, The
## 9538                                                                                                                                       Gone with the Wind
## 9539                                                                                                                                    2001: A Space Odyssey
## 9540                                                                                                                                                  Sleeper
## 9541                                                                                                                                                  Bananas
## 9542                                                                                                                                         Bonnie and Clyde
## 9543                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 9544                                                                                                                                  Godfather: Part II, The
## 9545                                                                                                                                               Annie Hall
## 9546                                                                                                                                               Local Hero
## 9547                                                                                                                                                Duck Soup
## 9548                                                                                                                                       Back to the Future
## 9549                                                                                                                                       Young Frankenstein
## 9550                                                                                                                                       This Is Spinal Tap
## 9551                                                                                                                                              Being There
## 9552                                                                                                                                      Killing Fields, The
## 9553                                                                                                                       Butch Cassidy and the Sundance Kid
## 9554                                                                                                                                          Midnight Cowboy
## 9555                                                                                                                                          Ordinary People
## 9556                                                                                                                                               Roger & Me
## 9557                                                                                                                                              Player, The
## 9558                                                                                                                                      Hard Day's Night, A
## 9559                                                                                                                                              Deliverance
## 9560                                                                                                                                            All That Jazz
## 9561                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 9562                                                                                                                                               Get Shorty
## 9563                                                                                                                                                  Copycat
## 9564                                                                                                                           Bridges of Madison County, The
## 9565                                                                                                                                               Braveheart
## 9566                                                                                                                       Star Wars: Episode IV - A New Hope
## 9567                                                                                                                                             Forrest Gump
## 9568                                                                                                                                                    Speed
## 9569                                                                                                                                            Fugitive, The
## 9570                                                                                                                                            Jurassic Park
## 9571                                                                                                                               Terminator 2: Judgment Day
## 9572                                                                                                                                Silence of the Lambs, The
## 9573                                                                                                                                                    Fargo
## 9574                                                                                                                                                   Ransom
## 9575                                                                                                                                           Godfather, The
## 9576                                                                                                                                       North by Northwest
## 9577                                                                                                                                                 Die Hard
## 9578                                                                                                                                           Basic Instinct
## 9579                                                                                                                                     Escape from New York
## 9580                                                                                                                                            Grifters, The
## 9581                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 9582                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9583                                                                                                                                                   Aliens
## 9584                                                                                                                                             12 Angry Men
## 9585                                                                                                                                          Terminator, The
## 9586                                                                                                                                Femme Nikita, La (Nikita)
## 9587                                                                                                                                       Back to the Future
## 9588                                                                                                                                               Highlander
## 9589                                                                                                                                                 Face/Off
## 9590                                                                                                                                Men in Black (a.k.a. MIB)
## 9591                                                                                                                                                Game, The
## 9592                                                                                                                                        Big Lebowski, The
## 9593                                                                                                                                                    Rocky
## 9594                                                                                                                                            Lethal Weapon
## 9595                                                                                                                                          Negotiator, The
## 9596                                                                                                                              1984 (Nineteen Eighty-Four)
## 9597                                                                                                                                        Untouchables, The
## 9598                                                                                                                                          Few Good Men, A
## 9599                                                                                                                                           Simple Plan, A
## 9600                                                                                                                                                 Fly, The
## 9601                                                                                                                                              Fly II, The
## 9602                                                                                                                                              Matrix, The
## 9603                                                                                                                                               Entrapment
## 9604                                                                                                                                          American Beauty
## 9605                                                                                                                                               Goldfinger
## 9606                                                                                                                                                  RoboCop
## 9607                                                                                                                                                 Predator
## 9608                                                                                                                          On Her Majesty's Secret Service
## 9609                                                                                                                                                      F/X
## 9610                                                                                                                                               Billy Jack
## 9611                                                                                                                                                Toy Story
## 9612                                                                                                                                                     Heat
## 9613                                                                                                                              Dracula: Dead and Loving It
## 9614                                                                                                                                                   Casino
## 9615                                                                                                                                    Sense and Sensibility
## 9616                                                                                                                                               Four Rooms
## 9617                                                                                                                                               Persuasion
## 9618                                                                                                                                                     Babe
## 9619                                                                                                                                          Dead Presidents
## 9620                                                                                                                                              Restoration
## 9621                                                                                                                              Indian in the Cupboard, The
## 9622                                                                                                                                       Mr. Holland's Opus
## 9623                                                                                                                                             White Squall
## 9624                                                                                                                                              Black Sheep
## 9625                                                                                                                                          Beautiful Girls
## 9626                                                                                                                                             Broken Arrow
## 9627                                                                                                                                            Happy Gilmore
## 9628                                                                                                                                   Muppet Treasure Island
## 9629                                                                                                                                               Braveheart
## 9630                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 9631                                                                                                                                            Birdcage, The
## 9632                                                                                                                                                  Rob Roy
## 9633                                                                                                                                             Strange Days
## 9634                                                                                                              Far From Home: The Adventures of Yellow Dog
## 9635                                                                                                                       Star Wars: Episode IV - A New Hope
## 9636                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 9637                                                                                                                                      Legends of the Fall
## 9638                                                                                                                              Madness of King George, The
## 9639                                                                                                                                   Miracle on 34th Street
## 9640                                                                                                                                                My Family
## 9641                                                                                                                                      Murder in the First
## 9642                                                                                                                                                     Nell
## 9643                                                                                                                                     Natural Born Killers
## 9644                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 9645                                                                                                                                        Perez Family, The
## 9646                                                                                                                                             Pulp Fiction
## 9647                                                                                                                                Secret of Roan Inish, The
## 9648                                                                                                                                                 Stargate
## 9649                                                                                                                                Shawshank Redemption, The
## 9650                                                                                                                              What's Eating Gilbert Grape
## 9651                                                                                                                                              Client, The
## 9652                                                                                                                                                Crow, The
## 9653                                                                                                                                             Forrest Gump
## 9654                                                                                                                                         Jungle Book, The
## 9655                                                                                                                                           Lion King, The
## 9656                                                                                                                                                 Maverick
## 9657                                                                                                                                               Wyatt Earp
## 9658                                                                                                                                    Age of Innocence, The
## 9659                                                                                                                                            Carlito's Way
## 9660                                                                                                                                              Cliffhanger
## 9661                                                                                                                                             Widows' Peak
## 9662                                                                                                                                                Firm, The
## 9663                                                                                                                                            Fugitive, The
## 9664                                                                                                                                      In the Line of Fire
## 9665                                                                                                                                In the Name of the Father
## 9666                                                                                                                                            Jurassic Park
## 9667                                                                                                                                  Man Without a Face, The
## 9668                                                                                                                                        Menace II Society
## 9669                                                                                                                                               Piano, The
## 9670                                                                                                                                  Remains of the Day, The
## 9671                                                                                                                                                     Rudy
## 9672                                                                                                                                       Secret Garden, The
## 9673                                                                                                                                             Blade Runner
## 9674                                                                                                                                                Tombstone
## 9675                                                                                                                                               Home Alone
## 9676                                                                                                                                                    Ghost
## 9677                                                                                                                               Terminator 2: Judgment Day
## 9678                                                                                                                                       Dances with Wolves
## 9679                                                                                                                                                   Batman
## 9680                                                                                                                                Silence of the Lambs, The
## 9681                                                                                                                                     Beauty and the Beast
## 9682                                                                                                                                             Pretty Woman
## 9683                                                                                                                 Homeward Bound II: Lost in San Francisco
## 9684                                                                                                                                              Heavy Metal
## 9685                                                                                                                                                Jane Eyre
## 9686                                                                                                                                          Aristocats, The
## 9687                                                                                                                                              Primal Fear
## 9688                                                                                                                                  All Dogs Go to Heaven 2
## 9689                                                                                                                                               Sgt. Bilko
## 9690                                                                                                                                      Mission: Impossible
## 9691                                                                                                                                            Moll Flanders
## 9692                                                                                                                                              Dragonheart
## 9693                                                                                                                                                 Faithful
## 9694                                                                                                                                          Substitute, The
## 9695                                                                                                                                         Mulholland Falls
## 9696                                                                                                                             Truth About Cats & Dogs, The
## 9697                                                                                                                                         Oliver & Company
## 9698                                                                                                                                                  Flipper
## 9699                                                                                                                                             Multiplicity
## 9700                                                                                                                                               Craft, The
## 9701                                                                                                                                                Rock, The
## 9702                                                                                                                                                  Twister
## 9703                                                                                                                                                 Spy Hard
## 9704                                                                                                                            Independence Day (a.k.a. ID4)
## 9705                                                                                                                                           Cable Guy, The
## 9706                                                                                                                                     Nutty Professor, The
## 9707                                                                                                                                         Escape from L.A.
## 9708                                                                                                                                                  Tin Cup
## 9709                                                                                                                            Robin Hood: Prince of Thieves
## 9710                                                                                                                                      Sound of Music, The
## 9711                                                                                                                      Willy Wonka & the Chocolate Factory
## 9712                                                                                                                                         Bonnie and Clyde
## 9713                                                                                                                               E.T. the Extra-Terrestrial
## 9714                                                                                                                                                Toy Story
## 9715                                                                                                                                                  Jumanji
## 9716                                                                                                                                  American President, The
## 9717                                                                                                                                                Apollo 13
## 9718                                                                                                                       Star Wars: Episode IV - A New Hope
## 9719                                                                                                                                        Santa Clause, The
## 9720                                                                                                                                Shawshank Redemption, The
## 9721                                                                                                                                             Forrest Gump
## 9722                                                                                                                                                Mask, The
## 9723                                                                                                                                                True Lies
## 9724                                                                                                                                                Firm, The
## 9725                                                                                                                                            Fugitive, The
## 9726                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 9727                                                                                                                                            Jurassic Park
## 9728                                                                                                                                           Mrs. Doubtfire
## 9729                                                                                                                                         Schindler's List
## 9730                                                                                                                                     Sleepless in Seattle
## 9731                                                                                                                                             Blade Runner
## 9732                                                                                                                                               Home Alone
## 9733                                                                                                                                                    Ghost
## 9734                                                                                                                                       Dances with Wolves
## 9735                                                                                                                                                   Batman
## 9736                                                                                                                                             Pretty Woman
## 9737                                                                                                                                            Trainspotting
## 9738                                                                                                                            Independence Day (a.k.a. ID4)
## 9739                                                                                                                                              Rear Window
## 9740                                                                                                                                       North by Northwest
## 9741                                                                                                                                               Casablanca
## 9742                                                                                                                                             My Fair Lady
## 9743                                                                                                                                         To Catch a Thief
## 9744                                                                                                                                      Father of the Bride
## 9745                                                                                                                                    It's a Wonderful Life
## 9746                                                                                                                                      Sound of Music, The
## 9747                                                                                                                      Willy Wonka & the Chocolate Factory
## 9748                                                                                                                               E.T. the Extra-Terrestrial
## 9749                                                                                                                                             My Left Foot
## 9750                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 9751                                                                                                                                      Princess Bride, The
## 9752                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9753                                                                                                                                                   Aliens
## 9754                                                                                                                                         Right Stuff, The
## 9755                                                                                                                                            Groundhog Day
## 9756                                                                                                                                       Back to the Future
## 9757                                                                                                                                       Young Frankenstein
## 9758                                                                                                                       Indiana Jones and the Last Crusade
## 9759                                                                                                                                              Being There
## 9760                                                                                                                                          Field of Dreams
## 9761                                                                                                                            Star Trek IV: The Voyage Home
## 9762                                                                                                                                            Jerry Maguire
## 9763                                                                                                                                                  Michael
## 9764                                                                                                                                Men in Black (a.k.a. MIB)
## 9765                                                                                                                                            Air Force One
## 9766                                                                                                                                                  Titanic
## 9767                                                                                                                             There's Something About Mary
## 9768                                                                                                                                                  Oliver!
## 9769                                                                                                                                            Out of Africa
## 9770                                                                                                                                              Beetlejuice
## 9771                                                                                                                                    Babe: Pig in the City
## 9772                                                                                                                                          Karate Kid, The
## 9773                                                                                                                                       Jumpin' Jack Flash
## 9774                                                                                                                                    Peggy Sue Got Married
## 9775                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 9776                                                                                                                                   Little Shop of Horrors
## 9777                                                                                                                                         Sixth Sense, The
## 9778                                                                                                                                          Heaven Can Wait
## 9779                                                                                                                                                Airplane!
## 9780                                                                                                                                                      Big
## 9781                                                                                                                                 Ferris Bueller's Day Off
## 9782                                                                                                                                             Time Bandits
## 9783                                                                                                                                               Moonstruck
## 9784                                                                                                                                   Cider House Rules, The
## 9785                                                                                                                                               Sister Act
## 9786                                                                                                                                                Frequency
## 9787                                                                                                                                                Gladiator
## 9788                                                                                                                                                  Starman
## 9789                                                                                                                                       Perfect Storm, The
## 9790                                                                                                                                      Lilies of the Field
## 9791                                                                                                                                                    Shrek
## 9792                                                                                                                                           Monsters, Inc.
## 9793                                                                                                                                           Ocean's Eleven
## 9794                                                                                                                                           Kate & Leopold
## 9795                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 9796                                                                                                                                        Beautiful Mind, A
## 9797                                                                                                                                                  Ice Age
## 9798                                                                                                                                 My Big Fat Greek Wedding
## 9799                                                                                                                                               Spider-Man
## 9800                                                                                                                                     Bourne Identity, The
## 9801                                                                                                                  Harry Potter and the Chamber of Secrets
## 9802                                                                                                                   Lord of the Rings: The Two Towers, The
## 9803                                                                                                                                      Catch Me If You Can
## 9804                                                                                                                                             Pianist, The
## 9805                                                                                                                                     Bend It Like Beckham
## 9806                                                                                                                                                    Holes
## 9807                                                                                                                                           Bruce Almighty
## 9808                                                                                                                                             Finding Nemo
## 9809                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 9810                                                                                                                                           School of Rock
## 9811                                                                                                                                        Kill Bill: Vol. 1
## 9812                                                                                                                                                 Big Fish
## 9813                                                                                                           Lord of the Rings: The Return of the King, The
## 9814                                                                                                                    Eternal Sunshine of the Spotless Mind
## 9815                                                                                                                                                  Shrek 2
## 9816                                                                                                                                            Terminal, The
## 9817                                                                                                                                                  Roxanne
## 9818                                                                                                                                             Spider-Man 2
## 9819                                                                                                                    Sky Captain and the World of Tomorrow
## 9820                                                                                                                                         Incredibles, The
## 9821                                                                                                                                        National Treasure
## 9822                                                                                                                                 Spirit of St. Louis, The
## 9823                                                                                                                                             White Nights
## 9824                                                                                                                                      Million Dollar Baby
## 9825                                                                                                                                             Hotel Rwanda
## 9826                                                                                                                                             Aviator, The
## 9827                                                                                                                                          Hobson's Choice
## 9828                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 9829                                                                                                                                                    Hitch
## 9830                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 9831                                                                                                                                           Over the Hedge
## 9832                                                                                                                                                     Cars
## 9833                                                                                                                                          Lake House, The
## 9834                                                                                                                                    Stranger than Fiction
## 9835                                                                                                                                                 Stardust
## 9836                                                                                                                                                     Juno
## 9837                                                                                                                                                Toy Story
## 9838                                                                                                                                                  Jumanji
## 9839                                                                                                                              Father of the Bride Part II
## 9840                                                                                                                           Ace Ventura: When Nature Calls
## 9841                                                                                                                                                     Babe
## 9842                                                                                                                                                 Clueless
## 9843                                                                                                                                               Pocahontas
## 9844                                                                                                                                            Happy Gilmore
## 9845                                                                                                                                                   Casper
## 9846                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9847                                                                                                                                       Little Princess, A
## 9848                                                                                                                                             Pulp Fiction
## 9849                                                                                                                                Shawshank Redemption, The
## 9850                                                                                                                               Ace Ventura: Pet Detective
## 9851                                                                                                                                             Forrest Gump
## 9852                                                                                                                              Four Weddings and a Funeral
## 9853                                                                                                                                           Lion King, The
## 9854                                                                                                                                              Richie Rich
## 9855                                                                                                                                     Addams Family Values
## 9856                                                                                                                                           Mrs. Doubtfire
## 9857                                                                                                                                         Schindler's List
## 9858                                                                                                                                               Home Alone
## 9859                                                                                                                                                    Ghost
## 9860                                                                                                                                     Beauty and the Beast
## 9861                                                                                                                                                Pinocchio
## 9862                                                                                                                                             Pretty Woman
## 9863                                                                                                                                     Nutty Professor, The
## 9864                                                                                                                                        Wizard of Oz, The
## 9865                                                                                                                                      Father of the Bride
## 9866                                                                                                                                            Cool Runnings
## 9867                                                                                                                                             Mary Poppins
## 9868                                                                                                                                      Sound of Music, The
## 9869                                                                                                                      Willy Wonka & the Chocolate Factory
## 9870                                                                                                                          One Flew Over the Cuckoo's Nest
## 9871                                                                                                                                            Groundhog Day
## 9872                                                                                                                                       Back to the Future
## 9873                                                                                                                   Romy and Michele's High School Reunion
## 9874                                                                                                                                         Truman Show, The
## 9875                                                                                                                                        Good Will Hunting
## 9876                                                                                                                                                  Titanic
## 9877                                                                                                                                                    Rocky
## 9878                                                                                                                                      Breakfast Club, The
## 9879                                                                                                                               Back to the Future Part II
## 9880                                                                                                                              Back to the Future Part III
## 9881                                                                                                                                      Saving Private Ryan
## 9882                                                                                                                                 Honey, I Shrunk the Kids
## 9883                                                                                                                                         Parent Trap, The
## 9884                                                                                                                                     Nutty Professor, The
## 9885                                                                                                                                             My Bodyguard
## 9886                                                                                                                                          My Cousin Vinny
## 9887                                                                                                                                            Pleasantville
## 9888                                                                                                                                            Bug's Life, A
## 9889                                                                                                                 Police Academy 2: Their First Assignment
## 9890                                                                                                                                             American Pie
## 9891                                                                                                                                 Ferris Bueller's Day Off
## 9892                                                                                                                                 Who Framed Roger Rabbit?
## 9893                                                                                                                                              Toy Story 2
## 9894                                                                                                                                            Wayne's World
## 9895                                                                                                                                         Romeo and Juliet
## 9896                                                                                                                                                Footloose
## 9897                                                                                                                           Nutty Professor II: The Klumps
## 9898                                                                                                                                         Meet the Parents
## 9899                                                                                                                                         Charlie's Angels
## 9900                                                                                                                          Crocodile Dundee in Los Angeles
## 9901                                                                                                                                                    Shrek
## 9902                                                                                                                                             Donnie Darko
## 9903                                                                                                                                           Monsters, Inc.
## 9904                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9905                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 9906                                                                                                                                     Three Men and a Baby
## 9907                                                                                                                                               Spider-Man
## 9908                                                                                                                  Harry Potter and the Chamber of Secrets
## 9909                                                                                                                   Lord of the Rings: The Two Towers, The
## 9910                                                                                                                                             Finding Nemo
## 9911                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 9912                                                                                                           Lord of the Rings: The Return of the King, The
## 9913                                                                                                                    Eternal Sunshine of the Spotless Mind
## 9914                                                                                                                                         Incredibles, The
## 9915                                                                                                                                        Definitely, Maybe
## 9916                                                                                                                                          Angels & Demons
## 9917                                                                                                                                     (500) Days of Summer
## 9918                                                                                                                                                Toy Story
## 9919                                                                                                                                         Grumpier Old Men
## 9920                                                                                                                              Father of the Bride Part II
## 9921                                                                                                                                                  Sabrina
## 9922                                                                                                                                             Sudden Death
## 9923                                                                                                                              Dracula: Dead and Loving It
## 9924                                                                                                                                                    Nixon
## 9925                                                                                                                                    Sense and Sensibility
## 9926                                                                                                                                        Leaving Las Vegas
## 9927                                                                                                                                                  Othello
## 9928                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 9929                                                                                                                                         Dead Man Walking
## 9930                                                                                                                                         Mighty Aphrodite
## 9931                                                                                                                               Postman, The (Postino, Il)
## 9932                                                                                                                                           Eye for an Eye
## 9933                                                                                                                                       Mr. Holland's Opus
## 9934                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 9935                                                                                                                                                 Bio-Dome
## 9936                                                                                                                                                Screamers
## 9937                                                                                                                                               Juror, The
## 9938                                                                                                                  Things to Do in Denver When You're Dead
## 9939                                                                                                                                 Antonia's Line (Antonia)
## 9940                                                                                                                                             White Squall
## 9941                                                                                                                                              Black Sheep
## 9942                                                                                                                                              Mary Reilly
## 9943                                                                                                                                             Broken Arrow
## 9944                                                                                                                                                City Hall
## 9945                                                                                                                                            Happy Gilmore
## 9946                                                                                                                                   Muppet Treasure Island
## 9947                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 9948                                                                                                                                           Down Periscope
## 9949                                                                                                                                            Birdcage, The
## 9950                                                                                                                                          River Wild, The
## 9951                                                                                                                                       Executive Decision
## 9952                                                                                                                                                    Fargo
## 9953                                                                                                                 Homeward Bound II: Lost in San Francisco
## 9954                                                                                                                                                Jane Eyre
## 9955                                                                                                                                              Primal Fear
## 9956                                                                                                                                  All Dogs Go to Heaven 2
## 9957                                                                                                                                               Sgt. Bilko
## 9958                                                                                                                                               Diabolique
## 9959                                                                                                                                      Mission: Impossible
## 9960                                                                                                                                              Dragonheart
## 9961                                                                                                                                James and the Giant Peach
## 9962                                                                                                                            Kids in the Hall: Brain Candy
## 9963                                                                                                     Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite)
## 9964                                                                                                                  Mystery Science Theater 3000: The Movie
## 9965                                                                                                                                                Space Jam
## 9966                                                                                                                                          Substitute, The
## 9967                                                                                                                                               Quest, The
## 9968                                                                                                                                         Mulholland Falls
## 9969                                                                                                                             Truth About Cats & Dogs, The
## 9970                                                                                                                                                  Flipper
## 9971                                                                                                                                             Multiplicity
## 9972                                                                                                                                               Craft, The
## 9973                                                                                                                                                Rock, The
## 9974                                                                                                                                                  Twister
## 9975                                                                                                                                                Barb Wire
## 9976                                                                                                                                                 Spy Hard
## 9977                                                                                                                          Wallace & Gromit: A Close Shave
## 9978                                                                                                                                             Arrival, The
## 9979                                                                                                                                             Phantom, The
## 9980                                                                                                                                               Striptease
## 9981                                                                                                                            Independence Day (a.k.a. ID4)
## 9982                                                                                                                                           Cable Guy, The
## 9983                                                                                                                                                  Kingpin
## 9984                                                                                                                                                   Eraser
## 9985                                                                                                                                     Nutty Professor, The
## 9986                                                                                                                                         Frighteners, The
## 9987                                                                                                                                               Phenomenon
## 9988                                                                                                                                          Time to Kill, A
## 9989                                                                                                                                                   Kazaam
## 9990                                                                                                                                                   Ransom
## 9991                                                                                                                                Crow: City of Angels, The
## 9992                                                                                                                                         Escape from L.A.
## 9993                                                                                                                                                  Tin Cup
## 9994                                                                                                                                Island of Dr. Moreau, The
## 9995                                                                          Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 9996                                                                                                                     William Shakespeare's Romeo + Juliet
## 9997                                                                                                                                                 Sleepers
## 9998                                                                                                                      Willy Wonka & the Chocolate Factory
## 9999                                                                                                                                 Star Trek: First Contact
## 10000                                                                                                                                          101 Dalmatians
## 10001                                                                                                                                   Celluloid Closet, The
## 10002                                                                                                                              Terminator 2: Judgment Day
## 10003                                                                                                                                      North by Northwest
## 10004                                                                                                                                             Bob Roberts
## 10005                                                                                                                                             Stand by Me
## 10006                                                                                                                                          Big Sleep, The
## 10007                                                                                                                                       L.A. Confidential
## 10008                                                                                                                                           Boogie Nights
## 10009                                                                                                                                        Chariots of Fire
## 10010                                                                                                                                         American Beauty
## 10011                                                                                                                                            Natural, The
## 10012                                                                                                                                  End of the Affair, The
## 10013                                                                                                                                                Magnolia
## 10014                                                                                                                                     She's Gotta Have It
## 10015                                                                                                                                           High Fidelity
## 10016                                                                                          8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 10017                                                                                                            Faraway, So Close (In weiter Ferne, so nah!)
## 10018                                                                                                                                  Stranger Than Paradise
## 10019                                                                                                                     Creature from the Black Lagoon, The
## 10020                                                                                                                                      Invisible Man, The
## 10021                                                                                                                             Unsinkable Molly Brown, The
## 10022                                                                                                                       Strange Love of Martha Ivers, The
## 10023                                                                                                                                                  Detour
## 10024                                                                                                                                               Toy Story
## 10025                                                                                                                                                 Jumanji
## 10026                                                                                                                                    Seven (a.k.a. Se7en)
## 10027                                                                                                                                     Usual Suspects, The
## 10028                                                                                                                                              Braveheart
## 10029                                                                                                                                               Apollo 13
## 10030                                                                                                                      Star Wars: Episode IV - A New Hope
## 10031                                                                                                                                            Pulp Fiction
## 10032                                                                                                                               Shawshank Redemption, The
## 10033                                                                                                                                            Forrest Gump
## 10034                                                                                                                                           Jurassic Park
## 10035                                                                                                                                        Schindler's List
## 10036                                                                                                                                            Blade Runner
## 10037                                                                                                                               Silence of the Lambs, The
## 10038                                                                                                                                                   Fargo
## 10039                                                                                                                                           Trainspotting
## 10040                                                                                                                                          Godfather, The
## 10041                                                                                                                                              Casablanca
## 10042                                                                                                                                   2001: A Space Odyssey
## 10043                                                                                                                                                Die Hard
## 10044                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 10045                                                                                                                                                  Aliens
## 10046                                                                                                                                     Clockwork Orange, A
## 10047                                                                                                                                          Apocalypse Now
## 10048                                                                                                                                              Goodfellas
## 10049                                                                                                                                 Godfather: Part II, The
## 10050                                                                                                                                       Full Metal Jacket
## 10051                                                                                                                                      Dead Poets Society
## 10052                                                                                                                                            Shining, The
## 10053                                                                                                                                      Back to the Future
## 10054                                                                                                                                        Truman Show, The
## 10055                                                                                                                                                Rain Man
## 10056                                                                                                                                      Mask of Zorro, The
## 10057                                                                                                                                     Saving Private Ryan
## 10058                                                                                                                     Life Is Beautiful (La Vita è bella)
## 10059                                                                                                                                                Rushmore
## 10060                                                                                                                                             Matrix, The
## 10061                                                                                                               Star Wars: Episode I - The Phantom Menace
## 10062                                                                                                                               Run Lola Run (Lola rennt)
## 10063                                                                                                                                        Sixth Sense, The
## 10064                                                                                                                                         American Beauty
## 10065                                                                                                                                Ferris Bueller's Day Off
## 10066                                                                                                                                              Fight Club
## 10067                                                                                                                                             Toy Story 2
## 10068                                                                                                                                           High Fidelity
## 10069                                                                                                                                               Gladiator
## 10070                                                                                                                                      Gone in 60 Seconds
## 10071                                                                                                                                            Patriot, The
## 10072                                                                                                                                                   X-Men
## 10073                                                                                                                                           Almost Famous
## 10074                                                                                                                                     Requiem for a Dream
## 10075                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10076                                                                                                                                                  Snatch
## 10077                                                                                                                                         What Women Want
## 10078                                                                                                                                               Cast Away
## 10079                                                                                                                                       Miss Congeniality
## 10080                                                                                                                              O Brother, Where Art Thou?
## 10081                                                                                                                                                 Memento
## 10082                                                                                                                                   Bridget Jones's Diary
## 10083                                                                                                                                                Scarface
## 10084                                                                                                                                                   Shrek
## 10085                                                                                                                                          Legally Blonde
## 10086                                                                                                                                             Others, The
## 10087                                                                                                                                            Donnie Darko
## 10088                                                                                                                                          Monsters, Inc.
## 10089                                                                                                                                          Ocean's Eleven
## 10090                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 10091                                                                                                                                   Royal Tenenbaums, The
## 10092                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 10093                                                                                                                                       Beautiful Mind, A
## 10094                                                                                                                                                 Ice Age
## 10095                                                                                                                                              Spider-Man
## 10096                                                                                                            Star Wars: Episode II - Attack of the Clones
## 10097                                                                                                                                    Bourne Identity, The
## 10098                                                                                                                                         Minority Report
## 10099                                                                                                                                               Ring, The
## 10100                                                                                                                                             Equilibrium
## 10101                                                                                                                  Lord of the Rings: The Two Towers, The
## 10102                                                                                                                                     Catch Me If You Can
## 10103                                                                                                                                            Pianist, The
## 10104                                                                                                                                        X2: X-Men United
## 10105                                                                                                                                            Finding Nemo
## 10106                                                                                                                                           28 Days Later
## 10107                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 10108                                                                                                                                     Lost in Translation
## 10109                                                                                                                                          School of Rock
## 10110                                                                                                                                       Kill Bill: Vol. 1
## 10111                                                                                                                                 Matrix Revolutions, The
## 10112                                                                                                                                       Last Samurai, The
## 10113                                                                                                                                                Big Fish
## 10114                                                                                                          Lord of the Rings: The Return of the King, The
## 10115                                                                                                                                    The Butterfly Effect
## 10116                                                                                                                   Eternal Sunshine of the Spotless Mind
## 10117                                                                                                                                       Kill Bill: Vol. 2
## 10118                                                                                                                                                    Troy
## 10119                                                                                                                                        Band of Brothers
## 10120                                                                                                                                                I, Robot
## 10121                                                                                                                                       Shaun of the Dead
## 10122                                                                                                                                           The Machinist
## 10123                                                                                                                                        Incredibles, The
## 10124                                                                                                                                             Constantine
## 10125                                                                                                                                           Batman Begins
## 10126                                                                                                                                             Lord of War
## 10127                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 10128                                                                                                                                          V for Vendetta
## 10129                                                                                                                                   Thank You for Smoking
## 10130                                                                                                                                      Da Vinci Code, The
## 10131                                                                                                                                    Little Miss Sunshine
## 10132                                                                                                                                        Illusionist, The
## 10133                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 10134                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 10135                                                                                                                                           Departed, The
## 10136                                                                                                                                           Casino Royale
## 10137                                                                                                                                             Ratatouille
## 10138                                                                                                                                                Hot Fuzz
## 10139                                                                                                                                                  Zodiac
## 10140                                                                                                                                                     300
## 10141                                                                                                                                              Grindhouse
## 10142                                                                                                                                            Spider-Man 3
## 10143                                                                                                                                              Knocked Up
## 10144                                                                                                                                          28 Weeks Later
## 10145                                                                                                                Pirates of the Caribbean: At World's End
## 10146                                                                                                                                        Ocean's Thirteen
## 10147                                                                                                                                             Death Proof
## 10148                                                                                                                                   Live Free or Die Hard
## 10149                                                                                                                                            Transformers
## 10150                                                                                                               Harry Potter and the Order of the Phoenix
## 10151                                                                                                                                                Stardust
## 10152                                                                                                                                     Simpsons Movie, The
## 10153                                                                                                                                   Bourne Ultimatum, The
## 10154                                                                                                                                                Superbad
## 10155                                                                                                                                            3:10 to Yuma
## 10156                                                                                                                                           Into the Wild
## 10157                                                                                                                                 Darjeeling Limited, The
## 10158                                                                                                                                       American Gangster
## 10159                                                                                                                                  No Country for Old Men
## 10160                                                                                                                                             I Am Legend
## 10161                                                                                                                                                    Juno
## 10162                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 10163                                                                                                                                     There Will Be Blood
## 10164                                                                                                                                        Dark Knight, The
## 10165                                                                                                                                                Iron Man
## 10166                                                                                                                                                  WALL·E
## 10167                                                                                                                                      Burn After Reading
## 10168                                                                                                                    Curious Case of Benjamin Button, The
## 10169                                                                                                                                    Inglourious Basterds
## 10170                                                                                                                                X-Men Origins: Wolverine
## 10171                                                                                                                                               Star Trek
## 10172                                                                                                                                                      Up
## 10173                                                                                                                                           Hangover, The
## 10174                                                                                                                                                  Avatar
## 10175                                                                                                                                          Shutter Island
## 10176                                                                                                                                               Inception
## 10177                                                                                                                             Scott Pilgrim vs. the World
## 10178                                                                                                                                               127 Hours
## 10179                                                                                                                                              Black Swan
## 10180                                                                                                                                               True Grit
## 10181                                                                                                                                       Midnight in Paris
## 10182                                                                                                                      Captain America: The First Avenger
## 10183                                                                                                                          Rise of the Planet of the Apes
## 10184                                                                                                                                               Moneyball
## 10185                                                                                                                                           Avengers, The
## 10186                                                                                                                                  Dark Knight Rises, The
## 10187                                                                                                                                            Intouchables
## 10188                                                                                                                                        Moonrise Kingdom
## 10189                                                                                                                                             Cloud Atlas
## 10190                                                                                                                                              Life of Pi
## 10191                                                                                                                                        Django Unchained
## 10192                                                                                                                                 Star Trek Into Darkness
## 10193                                                                                                                                             World War Z
## 10194                                                                                                                                              About Time
## 10195                                                                                                                                                 Gravity
## 10196                                                                                                                                        12 Years a Slave
## 10197                                                                                                                                      Dallas Buyers Club
## 10198                                                                                                                                                     Her
## 10199                                                                                                                                            Interstellar
## 10200                                                                                                                                                Whiplash
## 10201                                                                                                                                 Guardians of the Galaxy
## 10202                                                                                                                                         American Sniper
## 10203                                                                                                                                              Ex Machina
## 10204                                                                                                                                      The Imitation Game
## 10205                                                                                                                                The Theory of Everything
## 10206                                                                                                                                      Mad Max: Fury Road
## 10207                                                                                                              Star Wars: Episode VII - The Force Awakens
## 10208                                                                                                                                                Deadpool
## 10209                                                                                                                              Captain America: Civil War
## 10210                                                                                                                                             The Martian
## 10211                                                                                                                      Batman v Superman: Dawn of Justice
## 10212                                                                                                                                            The Revenant
## 10213                                                                                                                                               Spotlight
## 10214                                                                                                                               The Huntsman Winter's War
## 10215                                                                                                                                               Toy Story
## 10216                                                                                                                                                 Jumanji
## 10217                                                                                                                                                    Heat
## 10218                                                                                                                                               GoldenEye
## 10219                                                                                                                                        Cutthroat Island
## 10220                                                                                                                                                  Casino
## 10221                                                                                                                          Ace Ventura: When Nature Calls
## 10222                                                                                                                                              Get Shorty
## 10223                                                                                                                                       Leaving Las Vegas
## 10224                                                                                                                                         Dangerous Minds
## 10225                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 10226                                                                                                                                                    Babe
## 10227                                                                                                                                        Dead Man Walking
## 10228                                                                                                                                                Clueless
## 10229                                                                                                                                           Mortal Kombat
## 10230                                                                                                                                    Seven (a.k.a. Se7en)
## 10231                                                                                                                                              Pocahontas
## 10232                                                                                                                                     Usual Suspects, The
## 10233                                                                                                                             Indian in the Cupboard, The
## 10234                                                                                Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 10235                                                                                                                                                Bio-Dome
## 10236                                                                                                                                                  Friday
## 10237                                                                                                                                     From Dusk Till Dawn
## 10238                                                                                                                                                Shopping
## 10239                                                                                                                                           Bottle Rocket
## 10240                                                                                                                                           Happy Gilmore
## 10241                                                                                                                                  Muppet Treasure Island
## 10242                                                                                                                                              Braveheart
## 10243                                                                                                                                             Taxi Driver
## 10244                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 10245                                                                                                                                                Bad Boys
## 10246                                                                                                                                 Basketball Diaries, The
## 10247                                                                                                                                               Apollo 13
## 10248                                                                                                                                          Batman Forever
## 10249                                                                                                                                                  Casper
## 10250                                                                                                                                                   Congo
## 10251                                                                                                                                               Desperado
## 10252                                                                                                                              Die Hard: With a Vengeance
## 10253                                                                                                                                            First Knight
## 10254                                                                                                                        Free Willy 2: The Adventure Home
## 10255                                                                                                                                         Johnny Mnemonic
## 10256                                                                                                                                             Judge Dredd
## 10257                                                                                                                                                    Kids
## 10258                                                                                                                                       Lord of Illusions
## 10259                                                                                                                                                Mallrats
## 10260                                                                                                                                                Net, The
## 10261                                                                                                                                               Showgirls
## 10262                                                                                                                                            Strange Days
## 10263                                                                                                                                              Waterworld
## 10264                                                                                                                                          Before Sunrise
## 10265                                                                                                                                           Billy Madison
## 10266                                                                                                                                                  Clerks
## 10267                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 10268                                                                                                                                                 Exotica
## 10269                                                                                                                                                 Ed Wood
## 10270                                                                                                                                          Goofy Movie, A
## 10271                                                                                                                                             Hoop Dreams
## 10272                                                                                                                                      Heavenly Creatures
## 10273                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 10274                                                                                                                                                  Junior
## 10275                                                                                                                           Kid in King Arthur's Court, A
## 10276                                                                                                                      Star Wars: Episode IV - A New Hope
## 10277                                                                                                                                     Legends of the Fall
## 10278                                                                                                                                             Major Payne
## 10279                                                                                                                                    Natural Born Killers
## 10280                                                                                                                                                Outbreak
## 10281                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 10282                                                                                                                                            Pulp Fiction
## 10283                                                                                                                                               Quiz Show
## 10284                                                                                                                                                Stargate
## 10285                                                                                                                               Shawshank Redemption, The
## 10286                                                                                                                                           Shallow Grave
## 10287                                                                                                                                    Swimming with Sharks
## 10288                                                                                                                                               Tank Girl
## 10289                                                                                                                                               Tommy Boy
## 10290                                                                                                                             What's Eating Gilbert Grape
## 10291                                                                                                                                              Virtuosity
## 10292                                                                                                                              Ace Ventura: Pet Detective
## 10293                                                                                                                                Clear and Present Danger
## 10294                                                                                                                                                Crooklyn
## 10295                                                                                                                                               Crow, The
## 10296                                                                                                                                            Forrest Gump
## 10297                                                                                                                                          Lion King, The
## 10298                                                                                                                                               Mask, The
## 10299                                                                                                                                                Maverick
## 10300                                                                                                                                             Richie Rich
## 10301                                                                                                                                                   Speed
## 10302                                                                                                                                               True Lies
## 10303                                                                                                                                 In the Mouth of Madness
## 10304                                                                                                                                           Above the Rim
## 10305                                                                                                                                    Addams Family Values
## 10306                                                                                                                                                Airheads
## 10307                                                                                                                                           Bronx Tale, A
## 10308                                                                                                                                           Carlito's Way
## 10309                                                                                                                                               Coneheads
## 10310                                                                                                                                      Dazed and Confused
## 10311                                                                                                                                          Demolition Man
## 10312                                                                                                                                                   Fresh
## 10313                                                                                                                                           Fugitive, The
## 10314                                                                                                                                    Hot Shots! Part Deux
## 10315                                                                                                                                    Hudsucker Proxy, The
## 10316                                                                                                                                     In the Line of Fire
## 10317                                                                                                                                           Jurassic Park
## 10318                                                                                                                                              Kalifornia
## 10319                                                                                                                                             Killing Zoe
## 10320                                                                                                                                        Last Action Hero
## 10321                                                                                                                                       Menace II Society
## 10322                                                                                                                                  Much Ado About Nothing
## 10323                                                                                                                                          Mrs. Doubtfire
## 10324                                                                                                                                    Next Karate Kid, The
## 10325                                                                                                                                        Perfect World, A
## 10326                                                                                                                                            Philadelphia
## 10327                                                                                                                                          Poetic Justice
## 10328                                                                                                                                                Ref, The
## 10329                                                                                                                               Robin Hood: Men in Tights
## 10330                                                                                                                                          Romper Stomper
## 10331                                                                                                                                        Schindler's List
## 10332                                                                                                                                            Blade Runner
## 10333                                                                                                                         Nightmare Before Christmas, The
## 10334                                                                                                                                               Tombstone
## 10335                                                                                                                                            True Romance
## 10336                                                                                                                                     Little Rascals, The
## 10337                                                                                                                                  Brady Bunch Movie, The
## 10338                                                                                                                                              Home Alone
## 10339                                                                                                                                                 Aladdin
## 10340                                                                                                                              Terminator 2: Judgment Day
## 10341                                                                                                                                      Dances with Wolves
## 10342                                                                                                                                                  Batman
## 10343                                                                                                                               Silence of the Lambs, The
## 10344                                                                                                                         Snow White and the Seven Dwarfs
## 10345                                                                                                                                    Beauty and the Beast
## 10346                                                                                                                                               Pinocchio
## 10347                                                                                                                                            Pretty Woman
## 10348                                                                                                                                                   Fargo
## 10349                                                                                                                                             Heavy Metal
## 10350                                                                                                                                             Primal Fear
## 10351                                                                                                                                 All Dogs Go to Heaven 2
## 10352                                                                                                                                     Mission: Impossible
## 10353                                                                                                                                             Dragonheart
## 10354                                                                                                                                               Space Jam
## 10355                                                                                                                                         Substitute, The
## 10356                                                                                                                                              Quest, The
## 10357                                                                                                                            Truth About Cats & Dogs, The
## 10358                                                                                                                                            Multiplicity
## 10359                                                                                                                                               Rock, The
## 10360                                                                                                                     Cemetery Man (Dellamorte Dellamore)
## 10361                                                                                                                                                 Twister
## 10362                                                                                                                                               Barb Wire
## 10363                                                                                                                     Ghost in the Shell (Kôkaku kidôtai)
## 10364                                                                                                                                                 Thinner
## 10365                                                                                                                         Wallace & Gromit: A Close Shave
## 10366                                                                                                                                            Arrival, The
## 10367                                                                                                                                            Phantom, The
## 10368                                                                                                                                           Trainspotting
## 10369                                                                                                                           Independence Day (a.k.a. ID4)
## 10370                                                                                                                                          Cable Guy, The
## 10371                                                                                                                                                 Kingpin
## 10372                                                                                                                                                  Eraser
## 10373                                                                                                                                    Nutty Professor, The
## 10374                                                                                                                                        Frighteners, The
## 10375                                                                                                                                              Phenomenon
## 10376                                                                                                                                                  Ransom
## 10377                                                                                                                                        Escape from L.A.
## 10378                                                                                                                                          Godfather, The
## 10379                                                                                                                               Island of Dr. Moreau, The
## 10380                                                                                                                                             Rear Window
## 10381                                                                                                                                          Apartment, The
## 10382                                                                                                                                       Wizard of Oz, The
## 10383                                                                                                                                   2001: A Space Odyssey
## 10384                                                                                                                           Adventures of Robin Hood, The
## 10385                                                                                                                                Night of the Living Dead
## 10386                                                                                                                  Homeward Bound: The Incredible Journey
## 10387                                                                                                                                           Cool Runnings
## 10388                                                                                                                                              Cinderella
## 10389                                                                                                                                 Sword in the Stone, The
## 10390                                                                                                                           Robin Hood: Prince of Thieves
## 10391                                                                                                                                                   Dumbo
## 10392                                                                                                                                     Alice in Wonderland
## 10393                                                                                                                                  Fox and the Hound, The
## 10394                                                                                                                                                Die Hard
## 10395                                                                                                                             Ghost and the Darkness, The
## 10396                                                                                                                    William Shakespeare's Romeo + Juliet
## 10397                                                                                                                                                Swingers
## 10398                                                                                                                                                Sleepers
## 10399                                                                                                                            Monty Python's Life of Brian
## 10400                                                                                                                                          Reservoir Dogs
## 10401                                                                                                                                                 Platoon
## 10402                                                                                                                                              Doors, The
## 10403                                                                                                                                        Crying Game, The
## 10404                                                                                                                              E.T. the Extra-Terrestrial
## 10405                                                                                                                                                 Top Gun
## 10406                                                                                                                             People vs. Larry Flynt, The
## 10407                                                                                                                                              Abyss, The
## 10408                                                                                                                                    Escape from New York
## 10409                                                                                                                         Monty Python and the Holy Grail
## 10410                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 10411                                                                                                                                            My Left Foot
## 10412                                                                                                                                Sex, Lies, and Videotape
## 10413                                                                                                                         One Flew Over the Cuckoo's Nest
## 10414                                                                                                                          Cheech and Chong's Up in Smoke
## 10415                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 10416                                                                                                                                     Princess Bride, The
## 10417                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 10418                                                                                                                                                  Brazil
## 10419                                                                                                                                                  Aliens
## 10420                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 10421                                                                                                                                            12 Angry Men
## 10422                                                                                                                                      Lawrence of Arabia
## 10423                                                                                                                                     Clockwork Orange, A
## 10424                                                                                                                                          Apocalypse Now
## 10425                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 10426                                                                                                                                              Goodfellas
## 10427                                                                                                                                                   Alien
## 10428                                                                                                                                        Army of Darkness
## 10429                                                                                                                      Killer, The (Die xue shuang xiong)
## 10430                                                                                                                                     Blues Brothers, The
## 10431                                                                                                                                 Godfather: Part II, The
## 10432                                                                                                                                       Full Metal Jacket
## 10433                                                                                                                                                 Amadeus
## 10434                                                                                                                                             Raging Bull
## 10435                                                                                                                                         Terminator, The
## 10436                                                                                                                                  Dead Alive (Braindead)
## 10437                                                                                                                                                   Glory
## 10438                                                                                                                                       Miller's Crossing
## 10439                                                                                                                                      Dead Poets Society
## 10440                                                                                                                                               Chinatown
## 10441                                                                                                                                               Bad Taste
## 10442                                                                                                                                      Better Off Dead...
## 10443                                                                                                                                            Shining, The
## 10444                                                                                                                                             Stand by Me
## 10445                                                                                                                             Evil Dead II (Dead by Dawn)
## 10446                                                                                                                                       Great Escape, The
## 10447                                                                                                                                        Deer Hunter, The
## 10448                                                                                                                                           Groundhog Day
## 10449                                                                                                                                              Unforgiven
## 10450                                                                                                                                      Back to the Future
## 10451                                                                                                                                                   Akira
## 10452                                                                                                                                              Highlander
## 10453                                                                                                                                                Fantasia
## 10454                                                                                                                                                Heathers
## 10455                                                                                                                                      This Is Spinal Tap
## 10456                                                                                                                      Indiana Jones and the Last Crusade
## 10457                                                                                                                                                  Gandhi
## 10458                                                                                                                                    Pink Floyd: The Wall
## 10459                                                                                                                                     Killing Fields, The
## 10460                                                                                                                                         Field of Dreams
## 10461                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 10462                                                                                                                         American Werewolf in London, An
## 10463                                                                                                                         Dracula (Bram Stoker's Dracula)
## 10464                                                                                                                                                Candyman
## 10465                                                                                                                                               Cape Fear
## 10466                                                                                                                                                  Carrie
## 10467                                                                                                                              Nightmare on Elm Street, A
## 10468                                                                                                                                               Omen, The
## 10469                                                                                                                                Star Trek: First Contact
## 10470                                                                                                                                             Sling Blade
## 10471                                                                                                                                      Jingle All the Way
## 10472                                                                                                                                          101 Dalmatians
## 10473                                                                                                                                              Die Hard 2
## 10474                                                                                                                  Star Trek VI: The Undiscovered Country
## 10475                                                                                                                         Star Trek II: The Wrath of Khan
## 10476                                                                                                                                          Batman Returns
## 10477                                                                                                                                                  Grease
## 10478                                                                                                                                                    Jaws
## 10479                                                                                                                                           Mars Attacks!
## 10480                                                                                                                                           Jerry Maguire
## 10481                                                                                                                                         Raising Arizona
## 10482                                                                                                                                                Sneakers
## 10483                                                                                                                         Beavis and Butt-Head Do America
## 10484                                                                                                                                                  Scream
## 10485                                                                                                                               Last of the Mohicans, The
## 10486                                                                                                                                            Dante's Peak
## 10487                                                                                                                                               Pest, The
## 10488                                                                                                                                            Lost Highway
## 10489                                                                                                                                           Donnie Brasco
## 10490                                                                                                                                              Saint, The
## 10491                                                                                                                                               Liar Liar
## 10492                                                                                                                                                Anaconda
## 10493                                                                                                                                     Grosse Pointe Blank
## 10494                                                                                                                                                 Volcano
## 10495                                                                                                             Austin Powers: International Man of Mystery
## 10496                                                                                                                                      Fifth Element, The
## 10497                                                                                                                          Lost World: Jurassic Park, The
## 10498                                                                                                                                                 Con Air
## 10499                                                                                                                                          Batman & Robin
## 10500                                                                                                                                                Hercules
## 10501                                                                                                                                                Face/Off
## 10502                                                                                                                               Men in Black (a.k.a. MIB)
## 10503                                                                                                                                                 Contact
## 10504                                                                                                                                     Conan the Barbarian
## 10505                                                                                                                                           Event Horizon
## 10506                                                                                                                                                   Spawn
## 10507                                                                                                                                Free Willy 3: The Rescue
## 10508                                                                                                                                       Conspiracy Theory
## 10509                                                                                                                                                   Steel
## 10510                                                                                                                                                   Mimic
## 10511                                                                                                                                           Air Force One
## 10512                                                                                                                                       L.A. Confidential
## 10513                                                                                                                                               Game, The
## 10514                                                                                                                                             Chasing Amy
## 10515                                                                                                                         I Know What You Did Last Summer
## 10516                                                                                                                                    The Devil's Advocate
## 10517                                                                                                                                                 Gattaca
## 10518                                                                                                                                           Boogie Nights
## 10519                                                                                                                                                 Witness
## 10520                                                                                                                                       Starship Troopers
## 10521                                                                                                                             Mortal Kombat: Annihilation
## 10522                                                                                                                                        Truman Show, The
## 10523                                                                                                                                     Alien: Resurrection
## 10524                                                                                                                                       Good Will Hunting
## 10525                                                                                                                                            Home Alone 3
## 10526                                                                                                                                                 Titanic
## 10527                                                                                                                                            Jackie Brown
## 10528                                                                                                                                       Big Lebowski, The
## 10529                                                                                                                                               Dark City
## 10530                                                                                                                                               Hard Rain
## 10531                                                                                                                                              Half Baked
## 10532                                                                                                                                             Spice World
## 10533                                                                                                                                             Deep Rising
## 10534                                                                                                                                     Wedding Singer, The
## 10535                                                                                                                                                  Sphere
## 10536                                                                                                                                      As Good as It Gets
## 10537                                                                                                                                        King of New York
## 10538                                                                                                                                           U.S. Marshals
## 10539                                                                                                                                Barney's Great Adventure
## 10540                                                                                                                                             He Got Game
## 10541                                                                                                                           Mr. Nice Guy (Yat goh ho yan)
## 10542                                                                                                                                              Species II
## 10543                                                                                                                                             Deep Impact
## 10544                                                                                                                                                Godzilla
## 10545                                                                                                                          Fear and Loathing in Las Vegas
## 10546                                                                                                                          X-Files: Fight the Future, The
## 10547                                                                                                                                            Dr. Dolittle
## 10548                                                                                                                                            Out of Sight
## 10549                                                                                                                         Buffalo '66 (a.k.a. Buffalo 66)
## 10550                                                                                                                                              Armageddon
## 10551                                                                                                                                          Small Soldiers
## 10552                                                                                                                            There's Something About Mary
## 10553                                                                                                                                  French Connection, The
## 10554                                                                                                                                                   Rocky
## 10555                                                                                                                                                Rain Man
## 10556                                                                                                                                                Repo Man
## 10557                                                                                                                                               Labyrinth
## 10558                                                                                                                                     Breakfast Club, The
## 10559                                                                                                                                         Friday the 13th
## 10560                                                                                                                                               Halloween
## 10561                                                                                                                                            Child's Play
## 10562                                                                                                                                             Poltergeist
## 10563                                                                                                                                           Exorcist, The
## 10564                                                                                                                                           Lethal Weapon
## 10565                                                                                                                                                Gremlins
## 10566                                                                                                                               Gremlins 2: The New Batch
## 10567                                                                                                                                            Goonies, The
## 10568                                                                                                                                      Mask of Zorro, The
## 10569                                                                                                                                           Soylent Green
## 10570                                                                                                                              Back to the Future Part II
## 10571                                                                                                                             Back to the Future Part III
## 10572                                                                                                                                                   Bambi
## 10573                                                                                                                                                    Dune
## 10574                                                                                                                                Godfather: Part III, The
## 10575                                                                                                                                     Saving Private Ryan
## 10576                                                                                                                                     Black Cauldron, The
## 10577                                                                                                                                             Hocus Pocus
## 10578                                                                                                                                Honey, I Shrunk the Kids
## 10579                                                                                                                                         Negotiator, The
## 10580                                                                                                                                             BASEketball
## 10581                                                                                                                                             Blue Velvet
## 10582                                                                                                                                        Jungle Book, The
## 10583                                                                                                                                      Lady and the Tramp
## 10584                                                                                                                                     Little Mermaid, The
## 10585                                                                                                                                       Mighty Ducks, The
## 10586                                                                                                                                               Peter Pan
## 10587                                                                                                                                Rescuers Down Under, The
## 10588                                                                                                                                           Rescuers, The
## 10589                                                                                                                                            Return to Oz
## 10590                                                                                                                                         Sleeping Beauty
## 10591                                                                                                                                                    Tron
## 10592                                                                                                                    Indiana Jones and the Temple of Doom
## 10593                                                                                                                                   All Dogs Go to Heaven
## 10594                                                                                                                                      Addams Family, The
## 10595                                                                                                                                           Weird Science
## 10596                                                                                                                                          Watership Down
## 10597                                                                                                                                     Secret of NIMH, The
## 10598                                                                                                                                       Dark Crystal, The
## 10599                                                                                                                     American Tail: Fievel Goes West, An
## 10600                                                                                                                                                  Legend
## 10601                                                                                                                                         Sixteen Candles
## 10602                                                                                                                                                   House
## 10603                                                                                                                                 Gods Must Be Crazy, The
## 10604                                                                                                                      Henry: Portrait of a Serial Killer
## 10605                                                                                                                                  NeverEnding Story, The
## 10606                                                                                                                                     Surf Nazis Must Die
## 10607                                                                                                                                                   Blade
## 10608                                                                                                                                             Beetlejuice
## 10609                                                                                                                                                  Willow
## 10610                                                                                                                                       Untouchables, The
## 10611                                                                                                                                              Dirty Work
## 10612                                                                                                                                                Rounders
## 10613                                                                                                                                                    Cube
## 10614                                                                                                                                         Say Anything...
## 10615                                                                                                                                                    Hero
## 10616                                                                                                                                               Rush Hour
## 10617                                                                                                                                                   Ronin
## 10618                                                                                                                                              Thing, The
## 10619                                                                                                                                             Player, The
## 10620                                                                                                                                     Edward Scissorhands
## 10621                                                                                                                                                    Antz
## 10622                                                                                                                                         My Cousin Vinny
## 10623                                                                                                                                                    Slam
## 10624                                                                                                                        Bride of Chucky (Child's Play 4)
## 10625                                                                                                                                               Happiness
## 10626                                                                                                                                           Pleasantville
## 10627                                                                                                                     Life Is Beautiful (La Vita è bella)
## 10628                                                                                                                      Tales from the Darkside: The Movie
## 10629                                                                                                                                      American History X
## 10630                                                                                                                                           Waterboy, The
## 10631                                                                                                                                          Meet Joe Black
## 10632                                                                                                                                      Enemy of the State
## 10633                                                                                                                                           Bug's Life, A
## 10634                                                                                                                               Celebration, The (Festen)
## 10635                                                                                                                                          Police Academy
## 10636                                                                                                                                         Very Bad Things
## 10637                                                                                                                                          Simple Plan, A
## 10638                                                                                                                                    Prince of Egypt, The
## 10639                                                                                                                                                Rushmore
## 10640                                                                                                                                     Shakespeare in Love
## 10641                                                                                                                              Rambo: First Blood Part II
## 10642                                                                                                                        First Blood (Rambo: First Blood)
## 10643                                                                                                                                               Rambo III
## 10644                                                                                                                                     Romancing the Stone
## 10645                                                                                                                                                Rocky II
## 10646                                                                                                                                               Rocky III
## 10647                                                                                                                                                Rocky IV
## 10648                                                                                                                                                 Rocky V
## 10649                                                                                                                                         Karate Kid, The
## 10650                                                                                                                                Karate Kid, Part II, The
## 10651                                                                                                                               Karate Kid, Part III, The
## 10652                                                                                                                                         You've Got Mail
## 10653                                                                                                                                      Thin Red Line, The
## 10654                                                                                                                                            Faculty, The
## 10655                                                                                                                                        Mighty Joe Young
## 10656                                                                                                                                             Patch Adams
## 10657                                                                                                                                               Gate, The
## 10658                                                                                                                                                Fly, The
## 10659                                                                                                                            Texas Chainsaw Massacre, The
## 10660                                                                                                                          Texas Chainsaw Massacre 2, The
## 10661                                                                                                              Name of the Rose, The (Name der Rose, Der)
## 10662                                                                                                                                        Crocodile Dundee
## 10663                                                                                                                                                 Payback
## 10664                                                                                                             Fantastic Planet, The (Planète sauvage, La)
## 10665                                                                                                                                            Office Space
## 10666                                                                                                                                             Logan's Run
## 10667                                                                                                                                      Planet of the Apes
## 10668                                                                                                                                        Cruel Intentions
## 10669                                                                                                                       Lock, Stock & Two Smoking Barrels
## 10670                                                                                                                                            Dead Ringers
## 10671                                                                                                                                           Baby Geniuses
## 10672                                                                                                                                                Ravenous
## 10673                                                                                                                                             Matrix, The
## 10674                                                                                                                              10 Things I Hate About You
## 10675                                                                                                                                                      Go
## 10676                                                                                                                          Twin Dragons (Shuang long hui)
## 10677                                                                                                                                               SLC Punk!
## 10678                                                                                                                                                Election
## 10679                                                                                                                                              Entrapment
## 10680                                                                                                                                              Idle Hands
## 10681                                                                                                                                              Mummy, The
## 10682                                                                                                               Star Wars: Episode I - The Phantom Menace
## 10683                                                                                                                          Rocky Horror Picture Show, The
## 10684                                                                                                                                            Notting Hill
## 10685                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 10686                                                                                                                                                  Tarzan
## 10687                                                                                                                               Run Lola Run (Lola rennt)
## 10688                                                                                                                                               Big Daddy
## 10689                                                                                                                                           Arachnophobia
## 10690                                                                                                                    South Park: Bigger, Longer and Uncut
## 10691                                                                                                                                          Wild Wild West
## 10692                                                                                                                                            American Pie
## 10693                                                                                                                                          Arlington Road
## 10694                                                                                                                                Blair Witch Project, The
## 10695                                                                                                                                          Eyes Wide Shut
## 10696                                                                                                                                             Lake Placid
## 10697                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 10698                                                                                                                                         Ghostbusters II
## 10699                                                                                                                                        Inspector Gadget
## 10700                                                                                                                                           Deep Blue Sea
## 10701                                                                                                                                             Mystery Men
## 10702                                                                                                                                           Runaway Bride
## 10703                                                                                                                                               Spartacus
## 10704                                                                                                                                     Mosquito Coast, The
## 10705                                                                                                                                  Little Shop of Horrors
## 10706                                                                                                                                         Iron Giant, The
## 10707                                                                                                                                        Sixth Sense, The
## 10708                                                                                                                                               Bowfinger
## 10709                                                                                                                                               Airplane!
## 10710                                                                                                                                                     Big
## 10711                                                                                                                                           Problem Child
## 10712                                                                                                                                      Christmas Story, A
## 10713                                                                                                                                       Universal Soldier
## 10714                                                                                                                                          Stir of Echoes
## 10715                                                                                                                                         American Beauty
## 10716                                                                                                                                             Blue Streak
## 10717                                                                                                                                                Caligula
## 10718                                                                                                                                            Fright Night
## 10719                                                                                                                                             Deliverance
## 10720                                                                                                                                               Excalibur
## 10721                                                                                Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 10722                                                                                                                                             Three Kings
## 10723                                                                                                                                           Monkey Shines
## 10724                                                                                                                                                Phantasm
## 10725                                                                                                                                          Risky Business
## 10726                                                                                                                                            Total Recall
## 10727                                                                                                                                Ferris Bueller's Day Off
## 10728                                                                                                                                     High Plains Drifter
## 10729                                                                                                                               Drunken Master (Jui kuen)
## 10730                                                                                                                                              Goldfinger
## 10731                                                                                                                                   From Russia with Love
## 10732                                                                                                         Fistful of Dollars, A (Per un pugno di dollari)
## 10733                                                                                                                                     Sydney (Hard Eight)
## 10734                                                                                                                          Home Alone 2: Lost in New York
## 10735                                                                                                                                              Fight Club
## 10736                                                                                                                                            Time Bandits
## 10737                                                                                                                                                    Bats
## 10738                                                                                                                                                 RoboCop
## 10739                                                                                                                                Who Framed Roger Rabbit?
## 10740                                                                                                                                    Being John Malkovich
## 10741                                                                                                                                            Insider, The
## 10742                                                                                                                                    Bride of Re-Animator
## 10743                                                                                                                                               Creepshow
## 10744                                                                                                                                             Re-Animator
## 10745                                                                                                                                        Drugstore Cowboy
## 10746                                                                                                                                            Falling Down
## 10747                                                                                                                                              Spaceballs
## 10748                                                                                                                                              Robin Hood
## 10749                                                                                                                      Quest for Fire (Guerre du feu, La)
## 10750                                                                                                                                                   Dogma
## 10751                                                                                             Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 10752                                                                                                                                           Sleepy Hollow
## 10753                                                                                                                                World Is Not Enough, The
## 10754                                                                                                                                        Fatal Attraction
## 10755                                                                                                                                            Midnight Run
## 10756                                                                                                                                        Fisher King, The
## 10757                                                                                                                                             End of Days
## 10758                                                                                                                                             Toy Story 2
## 10759                                                                                                                              Deuce Bigalow: Male Gigolo
## 10760                                                                                                                                         Green Mile, The
## 10761                                                                                                                               7th Voyage of Sinbad, The
## 10762                                                                                                                                                Magnolia
## 10763                                                                                                                                        Any Given Sunday
## 10764                                                                                                                                         Man on the Moon
## 10765                                                                                                                                            Galaxy Quest
## 10766                                                                                                                                          Hurricane, The
## 10767                                                                                                                            Fast Times at Ridgemont High
## 10768                                                                                                                            Batman: Mask of the Phantasm
## 10769                                                                                                                                        Scent of a Woman
## 10770                                                                                                                                           Wayne's World
## 10771                                                                                                                                         Wayne's World 2
## 10772                                                                                                                                  League of Their Own, A
## 10773                                                                                                                                           Patriot Games
## 10774                                                                                                                                    White Men Can't Jump
## 10775                                                                                                                          Hard-Boiled (Lat sau san taam)
## 10776                                                                                                                                            Mariachi, El
## 10777                                                                                                                                                Scream 3
## 10778                                                                                                                                    Boondock Saints, The
## 10779                                                                                                                                             Boiler Room
## 10780                                                                                                                                             Pitch Black
## 10781                                                                                                                       Ghost Dog: The Way of the Samurai
## 10782                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 10783                                                                                                                                             Bull Durham
## 10784                                                                                                                                       Dog Day Afternoon
## 10785                                                                                                                                       American Graffiti
## 10786                                                                                                                                      Do the Right Thing
## 10787                                                                                                                                            Jungle Fever
## 10788                                                                                                                            Teenage Mutant Ninja Turtles
## 10789                                                                                                 Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 10790                                                                                                                        Teenage Mutant Ninja Turtles III
## 10791                                                                                                                                   Good Morning, Vietnam
## 10792                                                                                                                      Close Encounters of the Third Kind
## 10793                                                                                                                                          Jacob's Ladder
## 10794                                                                                                                                               Ladyhawke
## 10795                                                                                                                                           High Fidelity
## 10796                                                                                                                                                    Hook
## 10797                                                                                                                                                  Misery
## 10798                                                                                                                                                Predator
## 10799                                                                                                                                         American Psycho
## 10800                                                                                                                                              Caddyshack
## 10801                                                                                                                                     Love and Basketball
## 10802                                                                                                                                                   U-571
## 10803                                                                                                                                             Carnosaur 2
## 10804                                                                                                                             Carnosaur 3: Primal Species
## 10805                                                                                                                                               Gladiator
## 10806                                                                                                                                           Human Traffic
## 10807                                                                                                                                       Battlefield Earth
## 10808                                                                                                                                               Road Trip
## 10809                                                                                                                                  Mission: Impossible II
## 10810                                                                                                                                         Blazing Saddles
## 10811                                                                                                     For a Few Dollars More (Per qualche dollaro in più)
## 10812                                                                                                                                  Light Years (Gandahar)
## 10813                                                                                                                                                 Porky's
## 10814                                                                                                                                     Night of the Creeps
## 10815                                                                                                                                        Running Man, The
## 10816                                                                                                                                                 Mad Max
## 10817                                                                                                                           Road Warrior, The (Mad Max 2)
## 10818                                                                                                                              Mad Max Beyond Thunderdome
## 10819                                                                                                                                             Angel Heart
## 10820                                                                                                                                      Gone in 60 Seconds
## 10821                                                                                                                                               Near Dark
## 10822                                                                                                                                          One False Move
## 10823                                                                                                                                                 Serpico
## 10824                                                                                                                             Big Trouble in Little China
## 10825                                                                                                                                              Titan A.E.
## 10826                                                                                                                                             Chicken Run
## 10827                                                                                                                                      Me, Myself & Irene
## 10828                                                                                                                                            Patriot, The
## 10829                                                                                                                                      Perfect Storm, The
## 10830                                                                                                                                     Blood In, Blood Out
## 10831                                                                                                                                             Scary Movie
## 10832                                                                                                                                                   X-Men
## 10833                                                                                                                          Nutty Professor II: The Klumps
## 10834                                                                                                                                              Hollow Man
## 10835                                                                                                                                          Sleepaway Camp
## 10836                                                                                                                                       Tao of Steve, The
## 10837                                                                                                                                       Replacements, The
## 10838                                                                                                                                             Bring It On
## 10839                                                                                                                                           Almost Famous
## 10840                                                                                                                                     Remember the Titans
## 10841                                                                                                                                              Hellraiser
## 10842                                                                                                                                        Meet the Parents
## 10843                                                                                                                                     Requiem for a Dream
## 10844                                                                                                                                               Tigerland
## 10845                                                                                                                                         Ladies Man, The
## 10846                                                                                                                                                Ghoulies
## 10847                                                                                                                                             Ghoulies II
## 10848                                                                                                                                            Billy Elliot
## 10849                                                                                                        Beyond, The (E tu vivrai nel terrore - L'aldilà)
## 10850                                                                                                             Legend of Drunken Master, The (Jui kuen II)
## 10851                                                                                                                                        Charlie's Angels
## 10852                                                                                                                                            Little Nicky
## 10853                                                                                                                                            6th Day, The
## 10854                                                                                                                                             Unbreakable
## 10855                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10856                                                                                                                            Planes, Trains & Automobiles
## 10857                                                                                                                                 Transformers: The Movie
## 10858                                                                                                                                             Wall Street
## 10859                                                                                                                                                  Snatch
## 10860                                                                                                                                                Chocolat
## 10861                                                                                                                                   Dude, Where's My Car?
## 10862                                                                                                                                         What Women Want
## 10863                                                                                                                                       Finding Forrester
## 10864                                                                                                                                               Cast Away
## 10865                                                                                                                                       Miss Congeniality
## 10866                                                                                                                              O Brother, Where Art Thou?
## 10867                                                                                                                                                 Traffic
## 10868                                                                                                                                     Save the Last Dance
## 10869                                                                                                                                    Wedding Planner, The
## 10870                                                                                                                                       Beverly Hills Cop
## 10871                                                                                                                                       Empire of the Sun
## 10872                                                                                                                                          Evil Dead, The
## 10873                                                                                                                                          Lost Boys, The
## 10874                                                                                                                                      Monster Squad, The
## 10875                                                                                                                                                Hannibal
## 10876                                                                                                                                    Revenge of the Nerds
## 10877                                                                                                                                      Enemy at the Gates
## 10878                                                                                                                                                 Memento
## 10879                                                                                                                                                Spy Kids
## 10880                                                                                                                                                    Blow
## 10881                                                                                                                                   Bridget Jones's Diary
## 10882                                                                                                                                     Freddy Got Fingered
## 10883                                                                                                                                                Scarface
## 10884                                                                                                                                      Mummy Returns, The
## 10885                                                                                                                                                   Krull
## 10886                                                                                                                                        Knight's Tale, A
## 10887                                                                                                                                                   Shrek
## 10888                                                                                                                                            Moulin Rouge
## 10889                                                                                                                                            Pearl Harbor
## 10890                                                                                                                                             Animal, The
## 10891                                                                                                                                               Evolution
## 10892                                                                                                                                               Swordfish
## 10893                                                                                                                                             Point Break
## 10894                                                                                                                                                 Tootsie
## 10895                                                                                                                                 Lara Croft: Tomb Raider
## 10896                                                                                                                               Fast and the Furious, The
## 10897                                                                                                                            A.I. Artificial Intelligence
## 10898                                                                                                                                              Sexy Beast
## 10899                                                                                                                                           Scary Movie 2
## 10900                                                                                                                            Cheech & Chong's Nice Dreams
## 10901                                                                                                                                                Suspiria
## 10902                                                                                                    Fist of Fury (Chinese Connection, The) (Jing wu men)
## 10903                                                                                                                                           Game of Death
## 10904                                                                                                                                                 Outland
## 10905                                                                              Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang)
## 10906                                                                                                                                          Legally Blonde
## 10907                                                                                                                                              Score, The
## 10908                                                                                                                                                    More
## 10909                                                                                                                     Adventures of Baron Munchausen, The
## 10910                                                                                                                                                  Colors
## 10911                                                                                                                                   Land Before Time, The
## 10912                                                                                                                          Return of the Living Dead, The
## 10913                                                                                                                                               They Live
## 10914                                                                                                                        Bill & Ted's Excellent Adventure
## 10915                                                                                                                                       Casualties of War
## 10916                                                                                                                                               Kickboxer
## 10917                                                                                                                                               Leviathan
## 10918                                                                                                                                         Little Monsters
## 10919                                                                                                                                      Look Who's Talking
## 10920                                                                                                                                        Meet the Feebles
## 10921                                                                                                                                       Jurassic Park III
## 10922                                                                                                                                             Ghost World
## 10923                                                                                                                               Hedwig and the Angry Inch
## 10924                                                                                                                                      Planet of the Apes
## 10925                                                                                                                                             Basket Case
## 10926                                                                                                                                             Rush Hour 2
## 10927                                                                                                                                          Altered States
## 10928                                                                                                                                          American Pie 2
## 10929                                                                                                                                             Others, The
## 10930                                                                                                                                                Rat Race
## 10931                                                                                                                          Jay and Silent Bob Strike Back
## 10932                                                                                                                                        Jeepers Creepers
## 10933                                                                                                                                                 Glitter
## 10934                                                                                                                                            Training Day
## 10935                                                                                                                                    King Solomon's Mines
## 10936                                                                                                                                               Zoolander
## 10937                                                                                                                                             Serendipity
## 10938                                                                                                      Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau)
## 10939                                                                                                                                        Mulholland Drive
## 10940                                                                                                                                             Dirty Harry
## 10941                                                                                                                                               From Hell
## 10942                                                                                                                                             Waking Life
## 10943                                                                                                                                                   K-PAX
## 10944                                                                                                                                            Donnie Darko
## 10945                                                                                                                                          Monsters, Inc.
## 10946                                                                                                                                             Shallow Hal
## 10947                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 10948                                                                                                                                            Black Knight
## 10949                                                                                                                                        Beastmaster, The
## 10950                                                                                                                                          Ocean's Eleven
## 10951                                                                                                                                  Not Another Teen Movie
## 10952                                                                                                                                             Vanilla Sky
## 10953                                                                                                                                   Royal Tenenbaums, The
## 10954                                                                                                                              Bill & Ted's Bogus Journey
## 10955                                                                                                           Spacehunter: Adventures in the Forbidden Zone
## 10956                                                                                                                                                How High
## 10957                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 10958                                                                                                                                       Beautiful Mind, A
## 10959                                                                                                                                         Black Hawk Down
## 10960                                                                                                                                                I Am Sam
## 10961                                                                                                                                           Orange County
## 10962                                                                                                                                     Conan the Destroyer
## 10963                                                                                                                             Dragon: The Bruce Lee Story
## 10964                                                                                                                               The Count of Monte Cristo
## 10965                                                                                                                                              Rollerball
## 10966                                                                                                                                            Sandlot, The
## 10967                                                                                                                                          Super Troopers
## 10968                                                                                                                                     Bad News Bears, The
## 10969                                                                                                           Vampire Hunter D: Bloodlust (Banpaia hantâ D)
## 10970                                                                                                                                   40 Days and 40 Nights
## 10971                                                                                                                                        We Were Soldiers
## 10972                                                                                                                          Ferngully: The Last Rainforest
## 10973                                                                                               Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2)
## 10974                                                                                                                                              Motel Hell
## 10975                                                                          Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le)
## 10976                                                                                                                                                 Ice Age
## 10977                                                                                                                                           Resident Evil
## 10978                                                                                                                                         Shogun Assassin
## 10979                                                                                                                                              Panic Room
## 10980                                                                                                                           National Lampoon's Van Wilder
## 10981                                                                                                                                                 Frailty
## 10982                                                                                                                                My Big Fat Greek Wedding
## 10983                                                                                                                                       The Scorpion King
## 10984                                                                                                                                         Salton Sea, The
## 10985                                                                                                                                              Spider-Man
## 10986                                                                                                            Star Wars: Episode II - Attack of the Clones
## 10987                                                                                                                                                Insomnia
## 10988                                                                                                                                      Undercover Brother
## 10989                                                                                                                                    Bourne Identity, The
## 10990                                                                                                                                         Minority Report
## 10991                                                                                                                                               Mr. Deeds
## 10992                                                                                                                                  Look Who's Talking Now
## 10993                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 10994                                                                                                                                           Reign of Fire
## 10995                                                                                                                                       Road to Perdition
## 10996                                                                                                                             Austin Powers in Goldmember
## 10997                                                                                                                                                   Signs
## 10998                                                                                                                   Spy Kids 2: The Island of Lost Dreams
## 10999                                                                                                                                                     xXx
## 11000                                                                                                                                              Blue Crush
## 11001                                                                                                                                     Clash of the Titans
## 11002                                                                                                                                              Hot Shots!
## 11003                                                                                                                                              Barbershop
## 11004                                                                                                                                        Transporter, The
## 11005                                                                                                                                    Ernest Scared Stupid
## 11006                                                                                                                                               Secretary
## 11007                                                                                                           Spirited Away (Sen to Chihiro no kamikakushi)
## 11008                                                                                                                                             Tuxedo, The
## 11009                                                                                                                                              Red Dragon
## 11010                                                                                                                                Rules of Attraction, The
## 11011                                                                                                                                   Bowling for Columbine
## 11012                                                                                                                                        Punch-Drunk Love
## 11013                                                                                                                                               Ring, The
## 11014                                                                                                                 Grave of the Fireflies (Hotaru no haka)
## 11015                                                                                                                    Jason Goes to Hell: The Final Friday
## 11016                                                                                                                                        Faces of Death 2
## 11017                                                                                                                                          Faces of Death
## 11018                                                                                                                                        Faces of Death 3
## 11019                                                                                                                                        Faces of Death 4
## 11020                                                                                                                                Galaxy of Terror (Quest)
## 11021                                                                                                                                                  8 Mile
## 11022                                                                                                                 Harry Potter and the Chamber of Secrets
## 11023                                                                                                                                         Treasure Planet
## 11024                                                                                                                                              Adaptation
## 11025                                                                                                                                             Equilibrium
## 11026                                                                                                                                          Hot Chick, The
## 11027                                                                                                                                       Maid in Manhattan
## 11028                                                                                                                  Lord of the Rings: The Two Towers, The
## 11029                                                                                                                                               25th Hour
## 11030                                                                                                                                          Antwone Fisher
## 11031                                                                                                                                       Gangs of New York
## 11032                                                                                                                                                    Narc
## 11033                                                                                                                                     Catch Me If You Can
## 11034                                                                                                                                                 Chicago
## 11035                                                                                                                            City of God (Cidade de Deus)
## 11036                                                                                                                                         CB4 - The Movie
## 11037                                                                                                                            How to Lose a Guy in 10 Days
## 11038                                                                                                                                        Shanghai Knights
## 11039                                                                                                                                               Daredevil
## 11040                                                                                                                                              Old School
## 11041                                                                                                                                 Bringing Down the House
## 11042                                                                                                                                        Tears of the Sun
## 11043                                                                                                                                    Bend It Like Beckham
## 11044                                                                                                                                                    Spun
## 11045                                                                                                                                             Phone Booth
## 11046                                                                                                                                        Anger Management
## 11047                                                                                                                                    Malibu's Most Wanted
## 11048                                                                                                                                   Andromeda Strain, The
## 11049                                                                                                                                                Identity
## 11050                                                                                                                                        X2: X-Men United
## 11051                                                                                                                                          Daddy Day Care
## 11052                                                                                                                                    Matrix Reloaded, The
## 11053                                                                                                                                          Bruce Almighty
## 11054                                                                                                                                            Finding Nemo
## 11055                                                                                                                                        Italian Job, The
## 11056                                                                                                                                              Wrong Turn
## 11057                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 11058                                                                                                                                             Barton Fink
## 11059                                                                                                                                           28 Days Later
## 11060                                                                                                                         Charlie's Angels: Full Throttle
## 11061                                                                                                                                                    Hulk
## 11062                                                                                                                      Terminator 3: Rise of the Machines
## 11063                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 11064                                                                                                                                             Bad Boys II
## 11065                                                                                                                                           Little Giants
## 11066                                                                                                              Lara Croft Tomb Raider: The Cradle of Life
## 11067                                                                                                                                              Seabiscuit
## 11068                                                                                                                                 Spy Kids 3-D: Game Over
## 11069                                                                                                                     Remo Williams: The Adventure Begins
## 11070                                                                                                                       American Wedding (American Pie 3)
## 11071                                                                                                                                           Freaky Friday
## 11072                                                                                                                                                S.W.A.T.
## 11073                                                                                                                                            Brain Damage
## 11074                                                                                                                                        Freddy vs. Jason
## 11075                                                                                                                                                 Tremors
## 11076                                                                                                                                                Commando
## 11077                                                                                                                                      Jeepers Creepers 2
## 11078                                                                                                                                             Cabin Fever
## 11079                                                                                                                                          Matchstick Men
## 11080                                                                                                                                     Lost in Translation
## 11081                                                                                                                                         Day of the Dead
## 11082                                                                                                                                              Underworld
## 11083                                                                                                                                            Bubba Ho-tep
## 11084                                                                                                                                              Videodrome
## 11085                                                                                                                                         Boyz N the Hood
## 11086                                                                                                                             Phenomena (a.k.a. Creepers)
## 11087                                                                                                                      Monty Python's The Meaning of Life
## 11088                                                                                                                                      Three O'Clock High
## 11089                                                                                                                                            Ginger Snaps
## 11090                                                                                                                           Ninja Scroll (Jûbei ninpûchô)
## 11091                                                                                                                                          School of Rock
## 11092                                                                                                                                            Mystic River
## 11093                                                                                                                                       Kill Bill: Vol. 1
## 11094                                                                                                                                                   Radio
## 11095                                                                                                                                           Scary Movie 3
## 11096                                                                                                                                           Interstate 60
## 11097                                                                                                                                 Matrix Revolutions, The
## 11098                                                                                                                                                     Elf
## 11099                                                                                                         Master and Commander: The Far Side of the World
## 11100                                                                                                                                                 Gothika
## 11101                                                                                                                                                21 Grams
## 11102                                                                                                                                               Bad Santa
## 11103                                                                                                                                           New Jack City
## 11104                                                                                                                          Invasion of the Body Snatchers
## 11105                                                                                                                                     Last Boy Scout, The
## 11106                                                                                                                         Battle Royale (Batoru rowaiaru)
## 11107                                                                                                                                               Teen Wolf
## 11108                                                                                                                                            Witches, The
## 11109                                                                                                                                Witches of Eastwick, The
## 11110                                                                                                    Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 11111                                                                                                                                       Hero (Ying xiong)
## 11112                                                                                           Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 11113                                                                                                                                              Leprechaun
## 11114                                                                                                                                             Cooler, The
## 11115                                                                                                                                       Last Samurai, The
## 11116                                                                                                                                                Big Fish
## 11117                                                                                                          Lord of the Rings: The Return of the King, The
## 11118                                                                                                                                    Cheaper by the Dozen
## 11119                                                                                                                           Ichi the Killer (Koroshiya 1)
## 11120                                                                                                                                    The Butterfly Effect
## 11121                                                                                                                                                Thirteen
## 11122                                                                                                                                          50 First Dates
## 11123                                                                                                                                    King Solomon's Mines
## 11124                                                                                                                                                EuroTrip
## 11125                                                                                                                              Passion of the Christ, The
## 11126                                                                                                                                                 Hidalgo
## 11127                                                                                                                                         Starsky & Hutch
## 11128                                                                                                                                     Girl Next Door, The
## 11129                                                                                                                                        Dawn of the Dead
## 11130                                                                                                                   Eternal Sunshine of the Spotless Mind
## 11131                                                                                                                                        Ladykillers, The
## 11132                                                                                                                                                 Hellboy
## 11133                                                                                                                                        Dawn of the Dead
## 11134                                                                                                                                                Munchies
## 11135                                                                                                                                             After Hours
## 11136                                                                                                                                       Kill Bill: Vol. 2
## 11137                                                                                                                                             Man on Fire
## 11138                                                                                                                                             Van Helsing
## 11139                                                                                                                                                    Troy
## 11140                                                                                                                                              Enemy Mine
## 11141                                                                                                                                        Enter the Dragon
## 11142                                                                                                                                        Band of Brothers
## 11143                                                                                                                                  Look Who's Talking Too
## 11144                                                                                                                                               Explorers
## 11145                                                                                                                                           Warriors, The
## 11146                                                                                                                                                    Dune
## 11147                                                                                                Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk)
## 11148                                                                                                                                 Tremors II: Aftershocks
## 11149                                                                                                                           Tremors 3: Back to Perfection
## 11150                                                                                                                       Samurai Fiction (SF: Episode One)
## 11151                                                                                                                                                Ken Park
## 11152                                                                                                                                             From Beyond
## 11153                                                                                                                                                   Dolls
## 11154                                                                                                                                    Pursuit of Happiness
## 11155                                                                                                                                    Escape from Alcatraz
## 11156                                                                                                                                                 Shrek 2
## 11157                                                                                                                                 Day After Tomorrow, The
## 11158                                                                                                                                              Soul Plane
## 11159                                                                                                                Harry Potter and the Prisoner of Azkaban
## 11160                                                                                                                              Chronicles of Riddick, The
## 11161                                                                                                                                     Garfield: The Movie
## 11162                                                                                                                                     Stepford Wives, The
## 11163                                                                                                                                       Napoleon Dynamite
## 11164                                                                                                                                                  Freaks
## 11165                                                                                                                             Around the World in 80 Days
## 11166                                                                                                                        Dodgeball: A True Underdog Story
## 11167                                                                                                                                           Terminal, The
## 11168                                                                                                                                            White Chicks
## 11169                                                                                                                                         Fahrenheit 9/11
## 11170                                                                                                                                            Spider-Man 2
## 11171                                                                                                                                           Before Sunset
## 11172                                                                                                                                             King Arthur
## 11173                                                                                                                   Anchorman: The Legend of Ron Burgundy
## 11174                                                                                                                                                I, Robot
## 11175                                                                                                                                   Bourne Supremacy, The
## 11176                                                                                                                                            Village, The
## 11177                                                                                                                                            Garden State
## 11178                                                                                                                                              Collateral
## 11179                                                                                                                     Harold and Kumar Go to White Castle
## 11180                                                                                                                                 AVP: Alien vs. Predator
## 11181                                                                                                                                               Yu-Gi-Oh!
## 11182                                                                                                                                     Night of the Demons
## 11183                                                                                                                            SuperBabies: Baby Geniuses 2
## 11184                                                                                                                               Resident Evil: Apocalypse
## 11185                                                                                                                                       Shaun of the Dead
## 11186                                                                                                                                      Cannibal Holocaust
## 11187                                                                                                                                       I Heart Huckabees
## 11188                                                                                                                                                  Primer
## 11189                                                                                                                              Team America: World Police
## 11190                                                                                                                           Fearless Vampire Killers, The
## 11191                                                                                                                                             Grudge, The
## 11192                                                                                                                                                Sideways
## 11193                                                                                                                                           The Machinist
## 11194                                                                                                                                                     Saw
## 11195                                                                                                                                        Incredibles, The
## 11196                                                                                                                                       National Treasure
## 11197                                                                                                                                          Ocean's Twelve
## 11198                                                                                                                                    King Solomon's Mines
## 11199                                                                                                                                                Topo, El
## 11200                                                                                                                                             Hobbit, The
## 11201                                                                                                                                Raiders of Atlantis, The
## 11202                                                                                                                        Police Story (Ging chaat goo si)
## 11203                                                                                                                 Better Tomorrow, A (Ying hung boon sik)
## 11204                                                                                                                                      Prince of Darkness
## 11205                                                                                                                  Chinese Ghost Story, A (Sinnui yauwan)
## 11206                                                                                                                                           Frankenhooker
## 11207                                                                                                                                          State of Grace
## 11208                                                                                                             Hearts of Darkness: A Filmmakers Apocalypse
## 11209                                                                                                                  Riki-Oh: The Story of Ricky (Lik Wong)
## 11210                                                                                                 Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng)
## 11211                                                                                                                              From the Earth to the Moon
## 11212                                                                                                                                                Thursday
## 11213                                                                                                                                 Who Am I? (Wo shi shei)
## 11214                                                                                                                          Lady Snowblood (Shurayukihime)
## 11215                                                                                                                                      Audition (Ôdishon)
## 11216                                                                                                                                  Daria: Is It Fall Yet?
## 11217                                                                                                                                         Ali G Indahouse
## 11218                                                                                                                                                   Fubar
## 11219                                                                                                                          Suicide Club (Jisatsu saakuru)
## 11220                                                                                                                                    Battlestar Galactica
## 11221                                                                                                                                          Soldier's Girl
## 11222                                                                                                                                          Animatrix, The
## 11223                                                                                                Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka)
## 11224                                                                                                         Lemony Snicket's A Series of Unfortunate Events
## 11225                                                                                                                                       Ju-on: The Grudge
## 11226                                                                                                                                                 Old Boy
## 11227                                                                                                                        Ginger Snaps Back: The Beginning
## 11228                                                                                                             Starship Troopers 2: Hero of the Federation
## 11229                                                                                                   Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 11230                                                                                                                     Ong-Bak: The Thai Warrior (Ong Bak)
## 11231                                                                                                                                               Spanglish
## 11232                                                                                                                                              Layer Cake
## 11233                                                                                                                                       Scanner Darkly, A
## 11234                                                                                                                                     Million Dollar Baby
## 11235                                                                                                                                            Hotel Rwanda
## 11236                                                                                                                     Life Aquatic with Steve Zissou, The
## 11237                                                                                                                                            Aviator, The
## 11238                                                                                                                                           Woodsman, The
## 11239                                                                                                                                        Meet the Fockers
## 11240                                                                                                                                                 Wizards
## 11241                                                                                                                                            Coach Carter
## 11242                                                                                                               Beastmaster 2: Through the Portal of Time
## 11243                                                                                                                                       Are We There Yet?
## 11244                                                                                                                                               Boogeyman
## 11245                                                                                                               Rory O'Shea Was Here (Inside I'm Dancing)
## 11246                                                                                                                                                   Hitch
## 11247                                                                                                                                             Constantine
## 11248                                                                                                                                Kung Fu Hustle (Gong fu)
## 11249                                                                                                      Thief and the Cobbler, The (a.k.a. Arabian Knight)
## 11250                                                                                                                   Sword of Doom, The (Dai-bosatsu tôge)
## 11251                                                                                                                                                Sin City
## 11252                                                                                                                                                  Sahara
## 11253                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 11254                                                                                                                                       Kingdom of Heaven
## 11255                                                                                                                                            House of Wax
## 11256                                                                                                                                                   Crash
## 11257                                                                                                                                         Mysterious Skin
## 11258                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 11259                                                                                                                                        Mr. & Mrs. Smith
## 11260                                                                                                                                           Batman Begins
## 11261                                                                                                                                        Land of the Dead
## 11262                                                                                                                                       War of the Worlds
## 11263                                                                                                                                          Fantastic Four
## 11264                                                                                                                                        Wedding Crashers
## 11265                                                                                                                                             Island, The
## 11266                                                                                                                                                Serenity
## 11267                                                                                                                                          Broken Flowers
## 11268                                                                                                                          Deuce Bigalow: European Gigolo
## 11269                                                                                                                                 40-Year-Old Virgin, The
## 11270                                                                                                                                           Transporter 2
## 11271                                                                                                                                             Lord of War
## 11272                                                                                                    Family Guy Presents Stewie Griffin: The Untold Story
## 11273                                                                                                                                               Aeon Flux
## 11274                                                                                                               Green Street Hooligans (a.k.a. Hooligans)
## 11275                                                                                                                                  History of Violence, A
## 11276                                                                                                                                     Kiss Kiss Bang Bang
## 11277                                                                                                                                        Proposition, The
## 11278                                                                                                                                                  Saw II
## 11279                                                                                                                                                 Jarhead
## 11280                                                                                                                                  Get Rich or Die Tryin'
## 11281                                                                                                                                       Pride & Prejudice
## 11282                                                                                                                                            Descent, The
## 11283                                                                                                                     Harry Potter and the Goblet of Fire
## 11284                                                                                                                                             Match Point
## 11285                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 11286                                                                                                                                               King Kong
## 11287                                                                                                                                                  Munich
## 11288                                                                                                                                  Fun with Dick and Jane
## 11289                                                                                                                                                  Hostel
## 11290                                                                                                                                           Grandma's Boy
## 11291                                                                                                                                                   Troll
## 11292                                                                                                                                              Date Movie
## 11293                                                                                                                                          Running Scared
## 11294                                                                                                                                               16 Blocks
## 11295                                                                                                                                          V for Vendetta
## 11296                                                                                                                                   Thank You for Smoking
## 11297                                                                                                                                              Inside Man
## 11298                                                                                                                                  Leprechaun in the Hood
## 11299                                                                                                                                    Hills Have Eyes, The
## 11300                                                                                                                                     Lucky Number Slevin
## 11301                                                                                                                                                   Brick
## 11302                                                                                                                                           Scary Movie 4
## 11303                                                                                                                                              Hard Candy
## 11304                                                                                                    Protector, The (a.k.a. Warrior King) (Tom yum goong)
## 11305                                                                                                                                 Mission: Impossible III
## 11306                                                                                                                                      Da Vinci Code, The
## 11307                                                                                                                                      Twelve and Holding
## 11308                                                                                                                                             Nacho Libre
## 11309                                                                                                                                                   Click
## 11310                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 11311                                                                                                                                      You, Me and Dupree
## 11312                                                                                                                                               Clerks II
## 11313                                                                                                                        Jet Li's Fearless (Huo Yuan Jia)
## 11314                                                                                    Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The)
## 11315                                                                                                                         Garfield: A Tail of Two Kitties
## 11316                                                                                                                                    Little Miss Sunshine
## 11317                                                                                                                                              Little Man
## 11318                                                                                                                                       Snakes on a Plane
## 11319                                                                                                             Talladega Nights: The Ballad of Ricky Bobby
## 11320                                                                                                                                     Night at the Museum
## 11321                                                                                                                                   Stranger than Fiction
## 11322                                                                                                                               Pursuit of Happyness, The
## 11323                                                                                                                                                   Crank
## 11324                                                                                                                                        Illusionist, The
## 11325                                                                                                                                                Beerfest
## 11326                                                                                                                                               Crossover
## 11327                                                                                                                                               Idiocracy
## 11328                                                                                                                                           Fountain, The
## 11329                                                                                                                                              Apocalypto
## 11330                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 11331                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 11332                                                                                                                                           Departed, The
## 11333                                                                                                                                           Grudge 2, The
## 11334                                                                                                                                         Little Children
## 11335                                                                                                                                                Shortbus
## 11336                                                                                                                                         Children of Men
## 11337                                                                                                                                           Prestige, The
## 11338                                                                                                                                                 Saw III
## 11339                                                                                                                                           Casino Royale
## 11340                                                                                                                                       Déjà Vu (Deja Vu)
## 11341                                                                                                          National Lampoon's Van Wilder: The Rise of Taj
## 11342                                                                                                                                                Turistas
## 11343                                                                                                                                           Blood Diamond
## 11344                                                                                                                                                  Eragon
## 11345                                                                                                                                            Rocky Balboa
## 11346                                                                                                                                        Plague Dogs, The
## 11347                                                                                                                                           House (Hausu)
## 11348                                                                                                                                                   Kenny
## 11349                                                                                                                                            Smokin' Aces
## 11350                                                                                                                                              Epic Movie
## 11351                                                                                                                                                  Norbit
## 11352                                                                                                                                             Ratatouille
## 11353                                                                                                                                                Hot Fuzz
## 11354                                                                                36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer)
## 11355                                                                                                                                                  Zodiac
## 11356                                                                                                                                                     300
## 11357                                                                                                                                           Reign Over Me
## 11358                                                                                                                                 Hills Have Eyes II, The
## 11359                                                                                                                                         Blades of Glory
## 11360                                                                                                                                              Grindhouse
## 11361                                                                                                                                                Sunshine
## 11362                                                                                                                                               Disturbia
## 11363                                                                                                    Aqua Teen Hunger Force Colon Movie Film for Theaters
## 11364                                                                                                                                                Fracture
## 11365                                                                                                                                            Spider-Man 3
## 11366                                                                                                                                         This Is England
## 11367                                                                                                                                              Knocked Up
## 11368                                                                                                                                          28 Weeks Later
## 11369                                                                                                                                         Shrek the Third
## 11370                                                                                                                Pirates of the Caribbean: At World's End
## 11371                                                                                                                                                Cashback
## 11372                                                                                                                                        Ocean's Thirteen
## 11373                                                                                                                                                    Fido
## 11374                                                                                                                                             Death Proof
## 11375                                                                                                                                             Rescue Dawn
## 11376                                                                                                                                   Live Free or Die Hard
## 11377                                                                                                                                            Transformers
## 11378                                                                                                               Harry Potter and the Order of the Phoenix
## 11379                                                                                                                                     Across the Universe
## 11380                                                                                                                                     Simpsons Movie, The
## 11381                                                                                                                                   Bourne Ultimatum, The
## 11382                                                                                                                                        Bratz: The Movie
## 11383                                                                                                                                             You Kill Me
## 11384                                                                                                                                                Superbad
## 11385                                                                                                                                             Rush Hour 3
## 11386                                                                                                                                          Rocket Science
## 11387                                                                                                                                           Planet Terror
## 11388                                                                                                                                            3:10 to Yuma
## 11389                                                                                                                                               Atonement
## 11390                                                                                                                                   In the Valley of Elah
## 11391                                                                                                                                                Cashback
## 11392                                                                                                                               Resident Evil: Extinction
## 11393                                                                                                                                         Good Luck Chuck
## 11394                                                                                                                                           Into the Wild
## 11395                                                                                                                                 Darjeeling Limited, The
## 11396                                                                                                                                          Gone Baby Gone
## 11397                                                                                                                                                  Saw IV
## 11398                                                                                                                            Elite Squad (Tropa de Elite)
## 11399                                                                                                                                       American Gangster
## 11400                                                                                                                      Before the Devil Knows You're Dead
## 11401                                                                                                                                  No Country for Old Men
## 11402                                                                                                                                          Be Kind Rewind
## 11403                                                                                                                                                 Beowulf
## 11404                                                                                                                                         Southland Tales
## 11405                                                                                                                                               Mist, The
## 11406                                                                                                                                             I Am Legend
## 11407                                                                                                                            Futurama: Bender's Big Score
## 11408                                                                                                                                                    Juno
## 11409                                                                                                                                        Bucket List, The
## 11410                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 11411                                                                                                                      National Treasure: Book of Secrets
## 11412                                                                                                                                     There Will Be Blood
## 11413                                                                                                                     AVPR: Aliens vs. Predator - Requiem
## 11414                                                                                                                                             Cloverfield
## 11415                                                                                                                                         Rambo (Rambo 4)
## 11416                                                                                                                                       Meet the Spartans
## 11417                                                                                                                             Hellboy II: The Golden Army
## 11418                                                                                                                                               In Bruges
## 11419                                                                                                                                                  Jumper
## 11420                                                                                                                                      Witless Protection
## 11421                                                                                                                                               10,000 BC
## 11422                                                                                                                                           Bank Job, The
## 11423                                                                                                                                        Funny Games U.S.
## 11424                                                                                                                                          Love Guru, The
## 11425                                                                                                                         City of Men (Cidade dos Homens)
## 11426                                                                                                                                        Dark Knight, The
## 11427                                                                                                                                         Never Back Down
## 11428                                                                                                                                                      21
## 11429                                                                                                                                              Ruins, The
## 11430                                                                                                                               Forgetting Sarah Marshall
## 11431                                                                                                                                         Superhero Movie
## 11432                                                                                                               Harold & Kumar Escape from Guantanamo Bay
## 11433                                                                                                                                                Iron Man
## 11434                                                                                                                                                   Taken
## 11435                                                                                                                                               Fall, The
## 11436                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 11437                                                                                                                                           Kung Fu Panda
## 11438                                                                                                                           You Don't Mess with the Zohan
## 11439                                                                                                                                                   Boy A
## 11440                                                                                                                                          Happening, The
## 11441                                                                                                                                                  WALL·E
## 11442                                                                                                                                                  Wanted
## 11443                                                                                                                                                 Hancock
## 11444                                                                                                                                               Get Smart
## 11445                                                                                                                Futurama: The Beast with a Billion Backs
## 11446                                                                                                                                           Wackness, The
## 11447                                                                                                                   It's the Great Pumpkin, Charlie Brown
## 11448                                                                                                                                              Death Note
## 11449                                                                                                                                                Watchmen
## 11450                                                                                                                                                   Felon
## 11451                                                                                                                                           Step Brothers
## 11452                                                                                                                                       Pineapple Express
## 11453                                                                                                                                          Tropic Thunder
## 11454                                                                                                                                              Death Race
## 11455                                                                                                                                      Burn After Reading
## 11456                                                                                                                                          Disaster Movie
## 11457                                                                                                                                        Onion Movie, The
## 11458                                                                                                                                               Max Payne
## 11459                                                                                                                              Zack and Miri Make a Porno
## 11460                                                                       Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma)
## 11461                                                                                                                      High School Musical 3: Senior Year
## 11462                                                                                                                                 Futurama: Bender's Game
## 11463                                                                                                                                               Road, The
## 11464                                                                                                                                     Slumdog Millionaire
## 11465                                                                                                                                       Quantum of Solace
## 11466                                                                                                                                             Role Models
## 11467                                                                                                                                 Beverly Hills Chihuahua
## 11468                                                                                                                                                Splinter
## 11469                                                                                                                                                    Milk
## 11470                                                                                                                                                Twilight
## 11471                                                                                                                                                  Hunger
## 11472                                                                                                                           Starship Troopers 3: Marauder
## 11473                                                                                                                                             Gran Torino
## 11474                                                                                                                                            Seven Pounds
## 11475                                                                                                                                           Wrestler, The
## 11476                                                                                             Chinese Ghost Story II, A (Sien nui yau wan II yan gaan do)
## 11477                                                                                                                    Curious Case of Benjamin Button, The
## 11478                                                                                                                                                Valkyrie
## 11479                                                                                                                                                   Choke
## 11480                                                                                                                 Poultrygeist: Night of the Chicken Dead
## 11481                                                                                                                                                  Ip Man
## 11482                                                                                                                                               Outlander
## 11483                                                                                                                                           Grudge 3, The
## 11484                                                                                                                                               Eden Lake
## 11485                                                                                                                    Futurama: Into the Wild Green Yonder
## 11486                                                                                                                              Afro Samurai: Resurrection
## 11487                                                                                                                          Dr. Horrible's Sing-Along Blog
## 11488                                                                                                                    Ong-Bak 2: The Beginning (Ong Bak 2)
## 11489                                                                                                Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 11490                                                                                                                               Anvil! The Story of Anvil
## 11491                                                                                                                                      Observe and Report
## 11492                                                                                                                                           Adventureland
## 11493                                                                                                            Fast & Furious (Fast and the Furious 4, The)
## 11494                                                                                                                                            Pirate Radio
## 11495                                                                                                                                    Inglourious Basterds
## 11496                                                                                                                                           State of Play
## 11497                                                                                                                                                    Moon
## 11498                                                                                                                                X-Men Origins: Wolverine
## 11499                                                                                                                                               Star Trek
## 11500                                                                                                                                  Great Buck Howard, The
## 11501                                                                                                                                         Angels & Demons
## 11502                                                                                                                                               Chop Shop
## 11503                                                                                                                                         Drag Me to Hell
## 11504                                                                                                                                                      Up
## 11505                                      Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono)
## 11506                                                                                                                                             Dance Flick
## 11507                                                                                                                                           Hangover, The
## 11508                                                                                                                             Taking of Pelham 1 2 3, The
## 11509                                                                                                                                        Hurt Locker, The
## 11510                                                                                                                                          Public Enemies
## 11511                                                                                                                               Daria: Is It College Yet?
## 11512                                                                                                                  Watchmen: Tales of the Black Freighter
## 11513                                                                                                                                    (500) Days of Summer
## 11514                                                                                                                  Harry Potter and the Half-Blood Prince
## 11515                                                                                                                                              District 9
## 11516                                                                                                            Jerusalema (Gangster's Paradise: Jerusalema)
## 11517                                                                                                                                                 Troll 2
## 11518                                                                                                                                                       9
## 11519                                                                                                            Frequently Asked Questions About Time Travel
## 11520                                                                                                                                                Pandorum
## 11521                                                                                                                                                 Extract
## 11522                                                                                                                                     Paranormal Activity
## 11523                                                                                                                                    World's Greatest Dad
## 11524                                                                                                                                             City Island
## 11525                                                                                                                                 Invention of Lying, The
## 11526                                                                                                                                            Next Day Air
## 11527                                                                                                                                              Zombieland
## 11528                                                                                                                               Where the Wild Things Are
## 11529                                                                                                                                     Law Abiding Citizen
## 11530                                                                                                                                           Up in the Air
## 11531                                                                                                                                          Black Dynamite
## 11532                                                                                                                                       Fantastic Mr. Fox
## 11533                                                                                                                                        Merry Madagascar
## 11534                                                                                                                                        Blind Side, The 
## 11535                                                                                                                                                Invictus
## 11536                                                                                                                                                  Avatar
## 11537                                                                                                                                             Crazy Heart
## 11538                                                                                                                                             Daybreakers
## 11539                                                                                                                                        Book of Eli, The
## 11540                                                                                                                            Hellsing Ultimate OVA Series
## 11541                                                                                                                                               Fish Tank
## 11542                                                                                                                                          Shutter Island
## 11543                                                                                                                                       Ghost Writer, The
## 11544                                                                                                                                    From Paris with Love
## 11545                                                                                                                                       Brooklyn's Finest
## 11546                                                                                                                                             Harry Brown
## 11547                                                                                                                                         Leaves of Grass
## 11548                                                                                                                                    Slammin' Salmon, The
## 11549                                                                                                                                    Hot Tub Time Machine
## 11550                                                                                                                                How to Train Your Dragon
## 11551                                                                                                                                                Kick-Ass
## 11552                                                                                                                                  Five Minutes of Heaven
## 11553                                                                                                                                              Iron Man 2
## 11554                                                                                                                                              Four Lions
## 11555                                                                                                                                     You Don't Know Jack
## 11556                                                                                                                                              Robin Hood
## 11557                                                                                                                                    Get Him to the Greek
## 11558                                                                                                                                                  Splice
## 11559                                                                                                                                                    Exam
## 11560                                                                                                                                             A-Team, The
## 11561                                                                                                                                             Toy Story 3
## 11562                                                                                                                                           Winter's Bone
## 11563                                                                                                                             Twilight Saga: Eclipse, The
## 11564                                                                                                                             South Park: Imaginationland
## 11565                                                                                                                                               Predators
## 11566                                                                                                                                           Despicable Me
## 11567                                                                                                                                               Inception
## 11568                                                                                                                                 Kids Are All Right, The
## 11569                                                                                                                           Serbian Film, A (Srpski film)
## 11570                                                                                                                              Batman: Under the Red Hood
## 11571                                                                                                                                              Mr. Nobody
## 11572                                                                                                                                                Ip Man 2
## 11573                                                                                                                                        Expendables, The
## 11574                                                                                                                             Scott Pilgrim vs. the World
## 11575                                                                                                                                          Animal Kingdom
## 11576                                                                                                                                    Piranha (Piranha 3D)
## 11577                                                                                      Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese)
## 11578                                                                                                                                                 Machete
## 11579                                                                                                                                     Social Network, The
## 11580                                                                                                                                               Town, The
## 11581                                                                                                                              It's Kind of a Funny Story
## 11582                                                                                                                                               Let Me In
## 11583                                                                                                                                                   Devil
## 11584                                                                                                                                                  Kaboom
## 11585                                                                                                                                               127 Hours
## 11586                                                                                                                                                Megamind
## 11587                                                                                                                                              Black Swan
## 11588                                                                                                  1990: The Bronx Warriors (1990: I guerrieri del Bronx)
## 11589                                                                                                                                    Next Three Days, The
## 11590                                                                                                            Harry Potter and the Deathly Hallows: Part 1
## 11591                                                                                                                                            Fighter, The
## 11592                                                                                                                                         Loved Ones, The
## 11593                                                                                                                                               True Grit
## 11594                                                                                                                                        Barney's Version
## 11595                                                                                                                       I Saw the Devil (Akmareul boatda)
## 11596                                                                                                                                   Tucker & Dale vs Evil
## 11597                                                                                                                                        Cowboys & Aliens
## 11598                                                                                                                                               Limitless
## 11599                                                                                                                                                    Paul
## 11600                                                                                                                                                   Rango
## 11601                                                                              Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro)
## 11602                                                                                                                                                   Super
## 11603                                                                                                                                             Source Code
## 11604                                                                                                                                               Insidious
## 11605                                                                                                                                                 Win Win
## 11606                                                                                                                     13 Assassins (Jûsan-nin no shikaku)
## 11607                                                                                                                 Fast Five (Fast and the Furious 5, The)
## 11608                                                                                                                                       Midnight in Paris
## 11609                                                                                                                                        Attack the Block
## 11610                                                                                                                                      X-Men: First Class
## 11611                                                                                                                                               Submarine
## 11612                                                                                                                                      Everything Must Go
## 11613                                                                                                                                                 Super 8
## 11614                                                                                                                                         Horrible Bosses
## 11615                                                                                                                                       Perfect Host, The
## 11616                                                                                                            Harry Potter and the Deathly Hallows: Part 2
## 11617                                                                                                                                                   Drive
## 11618                                                                                                                      Captain America: The First Avenger
## 11619                                                                                                                                    Crazy, Stupid, Love.
## 11620                                                                                                                          Rise of the Planet of the Apes
## 11621                                                                                                                                           Another Earth
## 11622                                                                                                                                               Debt, The
## 11623                                                                                                                                               Red State
## 11624                                                                                                                                               Contagion
## 11625                                                                                                                                           Avengers, The
## 11626                                                                                                                                                 Warrior
## 11627                                                                                                                                                   50/50
## 11628                                                                                                                             We Need to Talk About Kevin
## 11629                                                                                                                                                 Carnage
## 11630                                                                                                                                             Margin Call
## 11631                                                                                                                                                   Shame
## 11632                                                                                                                                      Expendables 2, The
## 11633                                                                                                                                        The Hunger Games
## 11634                                                                                                                                  Dark Knight Rises, The
## 11635                                                                                                                    Mission: Impossible - Ghost Protocol
## 11636                                                                                                                        Girl with the Dragon Tattoo, The
## 11637                                                                                                                                               Grey, The
## 11638                                                                                                                                         Innkeepers, The
## 11639                                                                                                                                       Trailer Park Boys
## 11640                                                                                                                                             John Carter
## 11641                                                                                                                                                    Goon
## 11642                                                                                                                                          21 Jump Street
## 11643                                                                                                                       American Reunion (American Pie 4)
## 11644                                                                                                                                    The Raid: Redemption
## 11645                                                                                                                                 Cabin in the Woods, The
## 11646                                                                                                                                       God Bless America
## 11647                                                                                                                                              Battleship
## 11648                                                                                                                         Best Exotic Marigold Hotel, The
## 11649                                                                                                                                           Dictator, The
## 11650                                                                                                                           Pirates! Band of Misfits, The
## 11651                                                                                                                                              Prometheus
## 11652                                                                                                                                        Moonrise Kingdom
## 11653                                                                                                                                   Safety Not Guaranteed
## 11654                                                                 Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime)
## 11655 Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu)
## 11656                                                               Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen)
## 11657                                                                                                                                                     Ted
## 11658                                                              Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi)
## 11659                                                                      Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô)
## 11660                                          Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen)
## 11661                                                                                                                                 Amazing Spider-Man, The
## 11662                                                                                                                             Beasts of the Southern Wild
## 11663                                                                    Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da)
## 11664                                                                  Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta)
## 11665                                                                                                                                            Total Recall
## 11666                                                Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru)
## 11667           Dragon Ball Z: Bardock - The Father of Goku (Doragon bôru Z: Tatta hitori no saishuu kessen - Furiiza ni itonda Z senshi Kakarotto no chichi)
## 11668                                  Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu)
## 11669                                                           Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû)
## 11670                                                                                                                                                 Skyfall
## 11671                                                                                                                                           Campaign, The
## 11672                                                                                                                                              ParaNorman
## 11673                                                                                                                                                 Lawless
## 11674                                                                                                                                           Pitch Perfect
## 11675                                                                                                                                                  Looper
## 11676                                                                                                                                                   Dredd
## 11677                                                                                                                                            End of Watch
## 11678                                                                                                                        Perks of Being a Wallflower, The
## 11679                                                                                                                                       Seven Psychopaths
## 11680                                                                                                                                             Cloud Atlas
## 11681                                                                                                                                     Killing Them Softly
## 11682                                                                                                                                          Wreck-It Ralph
## 11683                                                                                                                                 Silver Linings Playbook
## 11684                                                                                                                                                  Flight
## 11685                                                                                                                                              Life of Pi
## 11686                                                                                                                                                 Redline
## 11687                                                                                                                      Hobbit: An Unexpected Journey, The
## 11688                                                                         Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu)
## 11689                                                                                                                                        Zero Dark Thirty
## 11690                                                                                                                                            Jack Reacher
## 11691                                                                                                                                        Django Unchained
## 11692                                                                                                                         Impossible, The (Imposible, Lo)
## 11693                                                                                                                                          Gangster Squad
## 11694                                                                                                                                              Sightseers
## 11695                                                                                                                                            Side Effects
## 11696                                                                                                                                         Before Midnight
## 11697                                                                                                                             Place Beyond the Pines, The
## 11698                                                                                                                                                Oblivion
## 11699                                                                                                                                             Pain & Gain
## 11700                                                                                                                                         This Is the End
## 11701                                                                                                                                                     Mud
## 11702                                                                                                                              Legendary Weapons of China
## 11703                                                                                                                                       Great Gatsby, The
## 11704                                                                                                                                 Star Trek Into Darkness
## 11705                                                                                                          Fast & Furious 6 (Fast and the Furious 6, The)
## 11706                                                                                                                                      Way, Way Back, The
## 11707                                                                                                                                            Man of Steel
## 11708                                                                                                                                    Kings of Summer, The
## 11709                                                                                                                                             Pacific Rim
## 11710                                                                                                                                             World War Z
## 11711                                                                                                                                                 Elysium
## 11712                                                                                                                                        Lone Ranger, The
## 11713                                                                                                                                       Fruitvale Station
## 11714                                                                                                                                          Conjuring, The
## 11715                                                                                                                                          Wolverine, The
## 11716                                                                                                                                                 Gravity
## 11717                                                                                                                                                    Rush
## 11718                                                                                                                                           Short Term 12
## 11719                                                                                                                                                 Don Jon
## 11720                                                                                                                                        Captain Phillips
## 11721                                                                                                                                            Ender's Game
## 11722                                                                                                                                     Toy Story of Terror
## 11723                                                                                                                                      Dallas Buyers Club
## 11724                                                                                                                         The Hunger Games: Catching Fire
## 11725                                                                                                                    Hobbit: The Desolation of Smaug, The
## 11726                                                                                                                                                47 Ronin
## 11727                                                                                                                                Wolf of Wall Street, The
## 11728                                                                                                                                         American Hustle
## 11729                                                                                                                        Secret Life of Walter Mitty, The
## 11730                                                                                                                                                     Her
## 11731                                                                                                                                           Lone Survivor
## 11732                                                                                                                       Anchorman 2: The Legend Continues
## 11733                                                                                                                                             Snowpiercer
## 11734                                                                                                                           Dragon Ball Z: Battle of Gods
## 11735                                                                                                                             Dragon ball Z 04: Lord Slug
## 11736                                                                                        Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi)
## 11737                                                                                                                                               Divergent
## 11738                                                                                                                                                    <NA>
## 11739                                                                                                                                          The Lego Movie
## 11740                                                                                                                                 Nymphomaniac: Volume II
## 11741                                                                                                                               Four, The (Si da ming bu)
## 11742                                                                                                                               Grand Budapest Hotel, The
## 11743                                                                                                                                            Interstellar
## 11744                                                                                                                                          Need for Speed
## 11745                                                                                                                                               Bad Words
## 11746                                                                                                                                                    Noah
## 11747                                                                                                                                Wetlands (Feuchtgebiete)
## 11748                                                                                                                                    The Raid 2: Berandal
## 11749                                                                                                                                                   Locke
## 11750                                                                                                                                                    Lucy
## 11751                                                                                                                              X-Men: Days of Future Past
## 11752                                                                                                                                                Godzilla
## 11753                                                                                                                                             Kelly & Cal
## 11754                                                                                                                                              Maleficent
## 11755                                                                                                                                        Edge of Tomorrow
## 11756                                                                                                                      Mission: Impossible - Rogue Nation
## 11757                                                                                                                                  The Fault in Our Stars
## 11758                                                                                                        Birdman: Or (The Unexpected Virtue of Ignorance)
## 11759                                                                                                                                                 Boyhood
## 11760                                                                                                                                           Babadook, The
## 11761                                                                                                                                                Whiplash
## 11762                                                                                                                                               Gone Girl
## 11763                                                                                                                          Dawn of the Planet of the Apes
## 11764                                                                                                                                     Purge: Anarchy, The
## 11765                                                                                                                                 Guardians of the Galaxy
## 11766                                                                                                                                              Housebound
## 11767                                                                                                                            Teenage Mutant Ninja Turtles
## 11768                                                                                                                            Sin City: A Dame to Kill For
## 11769                                                                                                                                                The Drop
## 11770                                                                                                                                        Maze Runner, The
## 11771                                                                                                                                         American Sniper
## 11772                                                                                                                                                    Tusk
## 11773                                                                                                                                          Predestination
## 11774                                                                                                                               What We Do in the Shadows
## 11775                                                                                                                                               John Wick
## 11776                                                                                                                                          Salvation, The
## 11777                                                                                                                                            Nightcrawler
## 11778                                                                                                                                              Ex Machina
## 11779                                                                                                                      Simpsons: The Longest Daycare, The
## 11780                                                                                                                                                       9
## 11781                                                                                                                                      Stonehearst Asylum
## 11782                                                                                                                                      The Imitation Game
## 11783                                                                                                                   The Hunger Games: Mockingjay - Part 1
## 11784                                                                                                                                       Dear White People
## 11785                                                                                                                                The Theory of Everything
## 11786                                                                                                                                          Jurassic World
## 11787                                                                                                                                              The Voices
## 11788                                                                                                               The Hobbit: The Battle of the Five Armies
## 11789                                                                                                                            Kingsman: The Secret Service
## 11790                                                                                                                                                 Chappie
## 11791                                                                                                                                              It Follows
## 11792                                                                                                                                      Mad Max: Fury Road
## 11793                                                                                                              Star Wars: Episode VII - The Force Awakens
## 11794                                                                                                                                                Warcraft
## 11795                                                                                                                                                 Ant-Man
## 11796                                                                                                                                                Deadpool
## 11797                                                                                                                                       X-Men: Apocalypse
## 11798                                                                                                                          Rudolph the Red-Nosed Reindeer
## 11799                                                                                                                                                    Dope
## 11800                                                                                                                                       The Hateful Eight
## 11801                                                                                                                                             Backcountry
## 11802                                                                                                                                                    Muck
## 11803                                                                                                                                             The Lobster
## 11804                                                                                                                                             The Martian
## 11805                                                                                                                                                 Minions
## 11806                                                                                                                                         The Jungle Book
## 11807                                                                                                                                            Afro Samurai
## 11808                                                                                                                                            The Revenant
## 11809                                                                                                                                                 Sicario
## 11810                                                                                                                                               The Witch
## 11811                                                                                                                                  Straight Outta Compton
## 11812                                                                                                                                               Deathgasm
## 11813                                                                                                                                              Green Room
## 11814                                                                                                                                                   Creed
## 11815                                                                                                                                          Big Short, The
## 11816                                                                                                                                     10 Cloverfield Lane
## 11817                                                                                                                                    The Brothers Grimsby
## 11818                                                                                                                                                  Demons
## 11819                                                                                                                                                    Hush
## 11820                                                                                                                                           The Nice Guys
## 11821                                                                                                                                          The Video Dead
## 11822                                                                                                                                         The Conjuring 2
## 11823                                                                                                                           Kingsglaive: Final Fantasy XV
## 11824                                                                                                                                                    <NA>
## 11825                                                                                                                                               GoldenEye
## 11826                                                                                                                                                  Casino
## 11827                                                                                                                                   Sense and Sensibility
## 11828                                                                                                                                           Happy Gilmore
## 11829                                                                                                                                              Braveheart
## 11830                                                                                                                                          Batman Forever
## 11831                                                                                                                      Star Wars: Episode IV - A New Hope
## 11832                                                                                                                                            Forrest Gump
## 11833                                                                                                                                        Schindler's List
## 11834                                                                                                                                                  Batman
## 11835                                                                                                                                         Pallbearer, The
## 11836                                                                                                                                              Casablanca
## 11837                                                                                                                    William Shakespeare's Romeo + Juliet
## 11838                                                                                                                            Monty Python's Life of Brian
## 11839                                                                                                                              E.T. the Extra-Terrestrial
## 11840                                                                                                                         Monty Python and the Holy Grail
## 11841                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 11842                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 11843                                                                                                                                                  Patton
## 11844                                                                                                                                         Field of Dreams
## 11845                                                                                                                                          Batman Returns
## 11846                                                                                                                                          Batman & Robin
## 11847                                                                                                                                                 Contact
## 11848                                                                                                                                       Good Will Hunting
## 11849                                                                                                                                                 Titanic
## 11850                                                                                                                                     Tomorrow Never Dies
## 11851                                                                                                                                             Deep Impact
## 11852                                                                                                                                              Armageddon
## 11853                                                                                                                                         Lethal Weapon 4
## 11854                                                                                                                                                   Rocky
## 11855                                                                                                                                                Rain Man
## 11856                                                                                                                                           Lethal Weapon
## 11857                                                                                                                                         Lethal Weapon 3
## 11858                                                                                                                                     Saving Private Ryan
## 11859                                                                                                                                              Swing Kids
## 11860                                                                                                                                                   Blade
## 11861                                                                                                                                                      54
## 11862                                                                                                                                       Gods and Monsters
## 11863                                                                                                                                     Shakespeare in Love
## 11864                                                                                                                                                 Payback
## 11865                                                                                                                                        Cruel Intentions
## 11866                                                                                                                                          Wing Commander
## 11867                                                                                                                                             Matrix, The
## 11868                                                                                                                              10 Things I Hate About You
## 11869                                                                                                               Star Wars: Episode I - The Phantom Menace
## 11870                                                                                                                                                Superman
## 11871                                                                                                                    South Park: Bigger, Longer and Uncut
## 11872                                                                                                                                Blair Witch Project, The
## 11873                                                                                                                                        Sixth Sense, The
## 11874                                                                                                                                               Toy Story
## 11875                                                                                                                                        Grumpier Old Men
## 11876                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 11877                                                                                                                                            Crimson Tide
## 11878                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 11879                                                                                                                      Star Wars: Episode IV - A New Hope
## 11880                                                                                                                                                Stargate
## 11881                                                                                                                               Shawshank Redemption, The
## 11882                                                                                                                                             Client, The
## 11883                                                                                                                                               Crow, The
## 11884                                                                                                                                            Forrest Gump
## 11885                                                                                                                                                Maverick
## 11886                                                                                                                                                   Speed
## 11887                                                                                                                                                 Timecop
## 11888                                                                                                                                          Demolition Man
## 11889                                                                                                                                           Jurassic Park
## 11890                                                                                                                                              Piano, The
## 11891                                                                                                                               Robin Hood: Men in Tights
## 11892                                                                                                                                        Schindler's List
## 11893                                                                                                                                            Blade Runner
## 11894                                                                                                                              Terminator 2: Judgment Day
## 11895                                                                                                                                                  Batman
## 11896                                                                                                                            Truth About Cats & Dogs, The
## 11897                                                                                                                                                  Eraser
## 11898                                                                                                                                               Lone Star
## 11899                                                                                                                                          Godfather, The
## 11900                                                                                                                               Island of Dr. Moreau, The
## 11901                                                                                                                                     Singin' in the Rain
## 11902                                                                                                                                             Rear Window
## 11903                                                                                                                                      North by Northwest
## 11904                                                                                                                                            Citizen Kane
## 11905                                                                                                                                        To Catch a Thief
## 11906                                                                                                                                   It's a Wonderful Life
## 11907                                                                                                                                        Bringing Up Baby
## 11908                                                                                                                            Monty Python's Life of Brian
## 11909                                                                                                                                              Abyss, The
## 11910                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 11911                                                                                                                                     Princess Bride, The
## 11912                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 11913                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 11914                                                                                                                                   To Kill a Mockingbird
## 11915                                                                                                                                          Apocalypse Now
## 11916                                                                                                                                                   Alien
## 11917                                                                                                                                                  Psycho
## 11918                                                                                                                                 Godfather: Part II, The
## 11919                                                                                                                                                 Amadeus
## 11920                                                                                                                                              Sting, The
## 11921                                                                                                                                         Terminator, The
## 11922                                                                                                                          Day the Earth Stood Still, The
## 11923                                                                                                                                            Shining, The
## 11924                                                                                                                                             Stand by Me
## 11925                                                                                                                                           Groundhog Day
## 11926                                                                                                                                      Back to the Future
## 11927                                                                                                                                                  Patton
## 11928                                                                                                                                      Young Frankenstein
## 11929                                                                                                                                      This Is Spinal Tap
## 11930                                                                                                                      Indiana Jones and the Last Crusade
## 11931                                                                                                                                             Real Genius
## 11932                                                                                                                                Star Trek: First Contact
## 11933                                                                                                                                             Sling Blade
## 11934                                                                                                                           Star Trek IV: The Voyage Home
## 11935                                                                                                                                            Benny & Joon
## 11936                                                                                                             Austin Powers: International Man of Mystery
## 11937                                                                                                                               Men in Black (a.k.a. MIB)
## 11938                                                                                                                                                 Contact
## 11939                                                                                                                                          Rainmaker, The
## 11940                                                                                                                                                 Titanic
## 11941                                                                                                                                              Armageddon
## 11942                                                                                                                                               Labyrinth
## 11943                                                                                                                                             Poltergeist
## 11944                                                                                                                                                Gremlins
## 11945                                                                                                                                            Goonies, The
## 11946                                                                                                                              Back to the Future Part II
## 11947                                                                                                                             Back to the Future Part III
## 11948                                                                                                                    Indiana Jones and the Temple of Doom
## 11949                                                                                                                                           Weird Science
## 11950                                                                                                                                  NeverEnding Story, The
## 11951                                                                                                                                                   Blade
## 11952                                                                                                                                             Beetlejuice
## 11953                                                                                                                                                    Rope
## 11954                                                                                                                                                Rounders
## 11955                                                                                                                                          Producers, The
## 11956                                                                                                                                         My Cousin Vinny
## 11957                                                                                                                          2010: The Year We Make Contact
## 11958                                                                                                                                           Bug's Life, A
## 11959                                                                                                                                                  Fletch
## 11960                                                                                              Christmas Vacation (National Lampoon's Christmas Vacation)
## 11961                                                                                                                                         You've Got Mail
## 11962                                                                                                                                                Fly, The
## 11963                                                                                                                                            Office Space
## 11964                                                                                                                                             Matrix, The
## 11965                                                                                                                                                eXistenZ
## 11966                                                                                                                               Run Lola Run (Lola rennt)
## 11967                                                                                                                                          Arlington Road
## 11968                                                                                                                                Blair Witch Project, The
## 11969                                                                                                                                                     Big
## 11970                                                                                                                                          Stir of Echoes
## 11971                                                                                                                                            Total Recall
## 11972                                                                                                                                              Fight Club
## 11973                                                                                                                                        Live and Let Die
## 11974                                                                                                                                          American Movie
## 11975                                                                                                                                            Falling Down
## 11976                                                                                                                                              Spaceballs
## 11977                                                                                                                                                Scrooged
## 11978                                                                                                                                         Green Mile, The
## 11979                                                                                                                                        Scent of a Woman
## 11980                                                                                                                                         Erin Brockovich
## 11981                                                                                                                                               Frequency
## 11982                                                                                                                                         Blazing Saddles
## 11983                                                                                                                                                   X-Men
## 11984                                                                                                                                        Meet the Parents
## 11985                                                                                                                                       Time Machine, The
## 11986                                                                                                                                      Enemy at the Gates
## 11987                                                                                                                                                 Memento
## 11988                                                                                                                                                   Shrek
## 11989                                                                                                                        Bill & Ted's Excellent Adventure
## 11990                                                                                                                         It's a Mad, Mad, Mad, Mad World
## 11991                                                                                                                                            Donnie Darko
## 11992                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 11993                                                                                                                                             Vanilla Sky
## 11994                                                                                                                              Bill & Ted's Bogus Journey
## 11995                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 11996                                                                                                                                              Brainstorm
## 11997                                                                                                                                       Time Machine, The
## 11998                                                                                                                                         Minority Report
## 11999                                                                                                                    Professional, The (Le professionnel)
## 12000                                                                                                                  Lord of the Rings: The Two Towers, The
## 12001                                                                                                                                                Identity
## 12002                                                                                                                      Terminator 3: Rise of the Machines
## 12003                                                                                                                                            Ginger Snaps
## 12004                                                                                                          Lord of the Rings: The Return of the King, The
## 12005                                                                                                                                    The Butterfly Effect
## 12006                                                                                                                   Eternal Sunshine of the Spotless Mind
## 12007                                                                                                                                               Explorers
## 12008                                                                                                                               Pirates of Silicon Valley
## 12009                                                                                                                                           Before Sunset
## 12010                                                                                                                                                     Saw
## 12011                                                                                                                                          Blade: Trinity
## 12012                                                                                                                                             Jacket, The
## 12013                                                                                                                                                   Crash
## 12014                                                                                                                                           Batman Begins
## 12015                                                                                                                                             Island, The
## 12016                                                                                                                                                  Saw II
## 12017                                                                                                                                          Producers, The
## 12018                                                                                                                                    Hills Have Eyes, The
## 12019                                                                                                                                              To Die For
## 12020                                                                                                                                 Quick and the Dead, The
## 12021                                                                                                                                      Secret Garden, The
## 12022                                                                                                                                                 Sabrina
## 12023                                                                                                                            Mr. Smith Goes to Washington
## 12024                                                                                                                                         Sophie's Choice
## 12025                                                                                                                                            My Left Foot
## 12026                                                                                                                                    Arsenic and Old Lace
## 12027                                                                                                                                     Waiting for Guffman
## 12028                                                                                                                                      Dangerous Liaisons
## 12029                                                                                                                                               Peter Pan
## 12030                                                                                                                                               Elizabeth
## 12031                                                                                                                                   From Russia with Love
## 12032                                                                                                                                         Blazing Saddles
## 12033                                                                                                                                            Best in Show
## 12034                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 12035                                                                                                                                           City Slickers
## 12036                                                                                                                                                  Volver
## 12037                                                                                                                                           Blood Diamond
## 12038                                                                                                                                                Stardust
## 12039                                                                                                                                               Toy Story
## 12040                                                                                                                                                    Heat
## 12041                                                                                                                                               GoldenEye
## 12042                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 12043                                                                                                                                                    Babe
## 12044                                                                                                                                                Clueless
## 12045                                                                                                                                    Seven (a.k.a. Se7en)
## 12046                                                                                                                                      Mr. Holland's Opus
## 12047                                                                                                                                     From Dusk Till Dawn
## 12048                                                                                                                                               Screamers
## 12049                                                                                                                                            Broken Arrow
## 12050                                                                                                                                              Braveheart
## 12051                                                                                                                                             Taxi Driver
## 12052                                                                                                                                           Birdcage, The
## 12053                                                                                                                                            Crimson Tide
## 12054                                                                                                                                               Desperado
## 12055                                                                                                                              Die Hard: With a Vengeance
## 12056                                                                                                                                             Judge Dredd
## 12057                                                                                                                                                Net, The
## 12058                                                                                                                                              Waterworld
## 12059                                                                                                                                                  Clerks
## 12060                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 12061                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 12062                                                                                                                      Star Wars: Episode IV - A New Hope
## 12063                                                                                                                                    Natural Born Killers
## 12064                                                                                                                                                Outbreak
## 12065                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 12066                                                                                                                                            Pulp Fiction
## 12067                                                                                                                                                Stargate
## 12068                                                                                                                               Shawshank Redemption, The
## 12069                                                                                                                                  Star Trek: Generations
## 12070                                                                                                                                 While You Were Sleeping
## 12071                                                                                                                              Ace Ventura: Pet Detective
## 12072                                                                                                                                Clear and Present Danger
## 12073                                                                                                                                               Crow, The
## 12074                                                                                                                                            Forrest Gump
## 12075                                                                                                                                          Lion King, The
## 12076                                                                                                                                               Mask, The
## 12077                                                                                                                                                   Speed
## 12078                                                                                                                                               True Lies
## 12079                                                                                                                                                Airheads
## 12080                                                                                                                                          Demolition Man
## 12081                                                                                                                                           Fugitive, The
## 12082                                                                                                                                           Jurassic Park
## 12083                                                                                                                                          Mrs. Doubtfire
## 12084                                                                                                                                            Blade Runner
## 12085                                                                                                                         Nightmare Before Christmas, The
## 12086                                                                                                                                              Home Alone
## 12087                                                                                                                                                   Ghost
## 12088                                                                                                                                                 Aladdin
## 12089                                                                                                                              Terminator 2: Judgment Day
## 12090                                                                                                                                      Dances with Wolves
## 12091                                                                                                                                                  Batman
## 12092                                                                                                                               Silence of the Lambs, The
## 12093                                                                                                                                    Beauty and the Beast
## 12094                                                                                                                                            Pretty Woman
## 12095                                                                                                                                                   Fargo
## 12096                                                                                                                                     Mission: Impossible
## 12097                                                                                                         Wallace & Gromit: The Best of Aardman Animation
## 12098                                                                                                                                               Rock, The
## 12099                                                                                                                                                 Twister
## 12100                                                                                                                     Ghost in the Shell (Kôkaku kidôtai)
## 12101                                                                                                                         Wallace & Gromit: A Close Shave
## 12102                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 12103                                                                                                                           Independence Day (a.k.a. ID4)
## 12104                                                                                                                               Crow: City of Angels, The
## 12105                                                                                                                                        Escape from L.A.
## 12106                                                                                                                                       Wizard of Oz, The
## 12107                                                                                                                                   2001: A Space Odyssey
## 12108                                                                                                                                                Die Hard
## 12109                                                                                                                     Willy Wonka & the Chocolate Factory
## 12110                                                                                                                                    Fish Called Wanda, A
## 12111                                                                                                                            Monty Python's Life of Brian
## 12112                                                                                                                              E.T. the Extra-Terrestrial
## 12113                                                                                                                                    Escape from New York
## 12114                                                                                                                         Monty Python and the Holy Grail
## 12115                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 12116                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 12117                                                                                                                                     Princess Bride, The
## 12118                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 12119                                                                                                                                                  Brazil
## 12120                                                                                                                                                  Aliens
## 12121                                                                                                                                     Clockwork Orange, A
## 12122                                                                                                                                          Apocalypse Now
## 12123                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 12124                                                                                                                                                   Alien
## 12125                                                                                                                                        Army of Darkness
## 12126                                                                                                                                                     Ran
## 12127                                                                                                                                     Blues Brothers, The
## 12128                                                                                                                                       Full Metal Jacket
## 12129                                                                                                                Grand Day Out with Wallace and Gromit, A
## 12130                                                                                                                                         Terminator, The
## 12131                                                                                                                                            Shining, The
## 12132                                                                                                                                       Great Escape, The
## 12133                                                                                                                                           Groundhog Day
## 12134                                                                                                                                      Back to the Future
## 12135                                                                                                                                                   Akira
## 12136                                                                                                                                      Young Frankenstein
## 12137                                                                                                                                                Fantasia
## 12138                                                                                                                      Indiana Jones and the Last Crusade
## 12139                                                                                                                         American Werewolf in London, An
## 12140                                                                                                                                                  Grease
## 12141                                                                                                                                                    Jaws
## 12142                                                                                                                                           Jerry Maguire
## 12143                                                                                                             Austin Powers: International Man of Mystery
## 12144                                                                                                                                      Fifth Element, The
## 12145                                                                                                                                                 Con Air
## 12146                                                                                                                               Men in Black (a.k.a. MIB)
## 12147                                                                                                                                                 Contact
## 12148                                                                                                                                                   Spawn
## 12149                                                                                                                               Hunt for Red October, The
## 12150                                                                                                                                                 Gattaca
## 12151                                                                                                                                       Starship Troopers
## 12152                                                                                                                                        Truman Show, The
## 12153                                                                                                                                       Good Will Hunting
## 12154                                                                                                                                                 Titanic
## 12155                                                                                                                                       Big Lebowski, The
## 12156                                                                                                                                     Blues Brothers 2000
## 12157                                                                                                                                                  Sphere
## 12158                                                                                                                                      As Good as It Gets
## 12159                                                                                                                                              Armageddon
## 12160                                                                                                                            There's Something About Mary
## 12161                                                                                                                                                Rain Man
## 12162                                                                                                                                               Labyrinth
## 12163                                                                                                                                     Breakfast Club, The
## 12164                                                                                                                                           Lethal Weapon
## 12165                                                                                                                                         Lethal Weapon 2
## 12166                                                                                                                                            Goonies, The
## 12167                                                                                                                              Back to the Future Part II
## 12168                                                                                                                             Back to the Future Part III
## 12169                                                                                                                                                    Dune
## 12170                                                                                                                                Honey, I Shrunk the Kids
## 12171                                                                                                                                     Little Mermaid, The
## 12172                                                                                                                                                    Tron
## 12173                                                                                                                    Indiana Jones and the Temple of Doom
## 12174                                                                                                                                     Secret of NIMH, The
## 12175                                                                                                                                       Dark Crystal, The
## 12176                                                                                                                                                   Blade
## 12177                                                                                                                                             Beetlejuice
## 12178                                                                                                                                      Six-String Samurai
## 12179                                                                                                                                     Edward Scissorhands
## 12180                                                                                                                                           Pleasantville
## 12181                                                                                                                                           Bug's Life, A
## 12182                                                                                                                                                Rushmore
## 12183                                                                                                                                         Howard the Duck
## 12184                                                                                                                                            Office Space
## 12185                                                                                                                                             Logan's Run
## 12186                                                                                                                                      Planet of the Apes
## 12187                                                                                                                                        Cruel Intentions
## 12188                                                                                                                       Lock, Stock & Two Smoking Barrels
## 12189                                                                                                                                             Matrix, The
## 12190                                                                                                                                                Election
## 12191                                                                                                                                                eXistenZ
## 12192                                                                                                               Star Wars: Episode I - The Phantom Menace
## 12193                                                                                                                                                Superman
## 12194                                                                                                                                             Superman II
## 12195                                                                                                                                            Notting Hill
## 12196                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 12197                                                                                                                    South Park: Bigger, Longer and Uncut
## 12198                                                                                                                                            American Pie
## 12199                                                                                                                                      Muppets From Space
## 12200                                                                                                                                Blair Witch Project, The
## 12201                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 12202                                                                                                                                        Sixth Sense, The
## 12203                                                                                               Monty Python's And Now for Something Completely Different
## 12204                                                                                                                                                     Big
## 12205                                                                                                                                       Universal Soldier
## 12206                                                                                                                                         American Beauty
## 12207                                                                                                                                            Total Recall
## 12208                                                                                                                                Ferris Bueller's Day Off
## 12209                                                                                                                                              Fight Club
## 12210                                                                                                                                            Time Bandits
## 12211                                                                                                                                                 RoboCop
## 12212                                                                                                                                               RoboCop 2
## 12213                                                                                                                                Who Framed Roger Rabbit?
## 12214                                                                                                                       Princess Mononoke (Mononoke-hime)
## 12215                                                                                                                                              Spaceballs
## 12216                                                                                                                                                   Dogma
## 12217                                                                                             Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 12218                                                                                                                                           Sleepy Hollow
## 12219                                                                                                                                             Toy Story 2
## 12220                                                                                                                                         Green Mile, The
## 12221                                                                                                                                  Cider House Rules, The
## 12222                                                                                                                                            Galaxy Quest
## 12223                                                                                                                                               Stalag 17
## 12224                                                                                                                                   Boys from Brazil, The
## 12225                                                                                                                                Buffy the Vampire Slayer
## 12226                                                                                                                                    Boondock Saints, The
## 12227                                                                                                                                       Muppet Movie, The
## 12228                                                                                                                                 Great Muppet Caper, The
## 12229                                                                                                                             Muppets Take Manhattan, The
## 12230                                                                                                                                         Erin Brockovich
## 12231                                                                                                                                         Thelma & Louise
## 12232                                                                                                                                            Animal House
## 12233                                                                                                                                       Creature Comforts
## 12234                                                                                                                            Teenage Mutant Ninja Turtles
## 12235                                                                                                 Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 12236                                                                                                                      Close Encounters of the Third Kind
## 12237                                                                                                                                                Predator
## 12238                                                                                                                                               Gladiator
## 12239                                                                                                                                  Mission: Impossible II
## 12240                                                                                                                                         Blazing Saddles
## 12241                                                                                                                                                 Mad Max
## 12242                                                                                                                           Road Warrior, The (Mad Max 2)
## 12243                                                                                                                              Mad Max Beyond Thunderdome
## 12244                                                                                                                                             Chicken Run
## 12245                                                                                                                                            Patriot, The
## 12246                                                                                                                                                   X-Men
## 12247                                                                                                                                             Bring It On
## 12248                                                                                                                                           Almost Famous
## 12249                                                                                                                                        Charlie's Angels
## 12250                                                                                                                                             Unbreakable
## 12251                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12252                                                                                                                                                  Snatch
## 12253                                                                                                                              O Brother, Where Art Thou?
## 12254                                                                                                                    Don't Tell Mom the Babysitter's Dead
## 12255                                                                                                                                             Cherry 2000
## 12256                                                                                                                                   Bridget Jones's Diary
## 12257                                                                                                                                      Mummy Returns, The
## 12258                                                                                                                                                   Shrek
## 12259                                                                                                                       Final Fantasy: The Spirits Within
## 12260                                                                                                                                          Legally Blonde
## 12261                                                                                                                     Adventures of Baron Munchausen, The
## 12262                                                                                                                                 Dirty Rotten Scoundrels
## 12263                                                                                                                          Return of the Living Dead, The
## 12264                                                                                                                                          Monsters, Inc.
## 12265                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12266                                                                                                                                          Ocean's Eleven
## 12267                                                                                                                                   Royal Tenenbaums, The
## 12268                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 12269                                                                                                                                       Time Machine, The
## 12270                                                                                                                                                 Ice Age
## 12271                                                                                                                                                Blade II
## 12272                                                                                                                                              Spider-Man
## 12273                                                                                                            Star Wars: Episode II - Attack of the Clones
## 12274                                                                                                                                         Minority Report
## 12275                                                                                                                                                   Signs
## 12276                                                                                                                                              Rollerball
## 12277                                                                                                           Spirited Away (Sen to Chihiro no kamikakushi)
## 12278                                                                                                                                            Strange Brew
## 12279                                                                                                                                   Bowling for Columbine
## 12280                                                                                                                    Professional, The (Le professionnel)
## 12281                                                                                                                 Harry Potter and the Chamber of Secrets
## 12282                                                                                                                                             Equilibrium
## 12283                                                                                                                                       Last Unicorn, The
## 12284                                                                                                                                               Daredevil
## 12285                                                                                                                                             Phone Booth
## 12286                                                                                                                                   Andromeda Strain, The
## 12287                                                                                                                                          Fahrenheit 451
## 12288                                                                                                                                                Wiz, The
## 12289                                                                                                                                        X2: X-Men United
## 12290                                                                                                      Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 12291                                                                                                                                    Matrix Reloaded, The
## 12292                                                                                                                                            Finding Nemo
## 12293                                                                                                                      Terminator 3: Rise of the Machines
## 12294                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 12295                                                                                                     League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 12296                                                                                                                                                THX 1138
## 12297                                                                                                                                       Pink Panther, The
## 12298                                                                                                                                            Bubba Ho-tep
## 12299                                                                                                                      Monty Python's The Meaning of Life
## 12300                                                                                                                                                     PCU
## 12301                                                                                                                                       Kill Bill: Vol. 1
## 12302                                                                                                                                 Matrix Revolutions, The
## 12303                                                                                           Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 12304                                                                                                                                       Last Samurai, The
## 12305                                                                                                                                                Big Fish
## 12306                                                                                                                                                Paycheck
## 12307                                                                                                                                      Boy and His Dog, A
## 12308                                                                                                                                        Dawn of the Dead
## 12309                                                                                                                                                 Hellboy
## 12310                                                                                                                                        Dawn of the Dead
## 12311                                                                                                                                       Kill Bill: Vol. 2
## 12312                                                                                                                             Babylon 5: In the Beginning
## 12313                                                                                                                                               Bedazzled
## 12314                                                                                                                               Babylon 5: A Call to Arms
## 12315                                                                                                                           Babylon 5: The River of Souls
## 12316                                                                                                                                   Babylon 5: Thirdspace
## 12317                                                                                                                                        Children of Dune
## 12318                                                                                                                                                    Dune
## 12319                                                                                                                      Jin Roh: The Wolf Brigade (Jin-Rô)
## 12320                                                                                                                Harry Potter and the Prisoner of Azkaban
## 12321                                                                                                               Kaena: The Prophecy (Kaena: La prophétie)
## 12322                                                                                                                                         Fahrenheit 9/11
## 12323                                                                                                                                            Spider-Man 2
## 12324                                                                                                                                                I, Robot
## 12325                                                                                                                                   Bourne Supremacy, The
## 12326                                                                                                                                       Shaun of the Dead
## 12327                                                                                                                                                     Ray
## 12328                                                                                                                                        Incredibles, The
## 12329                                                                                                                                Twilight Zone: The Movie
## 12330                                                                                                                                         Nuns on the Run
## 12331                                                                                                                                       Bring It On Again
## 12332                                                                                                                                              Layer Cake
## 12333                                                                                                                                                 Wizards
## 12334                                                                                                                                                 Elektra
## 12335                                                                                                             Howl's Moving Castle (Hauru no ugoku shiro)
## 12336                                                                                                                                Kung Fu Hustle (Gong fu)
## 12337                                                                                                                                                Sin City
## 12338                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 12339                                                                                                                                           Batman Begins
## 12340                                                                                                                                             Island, The
## 12341                                                                                                                                                Serenity
## 12342                                                                                                    Family Guy Presents Stewie Griffin: The Untold Story
## 12343                                                                                                                                            Corpse Bride
## 12344                                                                                                                                              MirrorMask
## 12345                                                                                                        Wallace & Gromit in The Curse of the Were-Rabbit
## 12346                                                                                                                                            Descent, The
## 12347                                                                                                                                           Walk the Line
## 12348                                                                                                                                          V for Vendetta
## 12349                                                                                                                                   X-Men: The Last Stand
## 12350                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 12351                                                                                                                                             Half Nelson
## 12352                                                                                                                                                Accepted
## 12353                                                                                                                                                   Sicko
## 12354                                                                                                                                                 Jumanji
## 12355                                                                                                                                               GoldenEye
## 12356                                                                                                                                                  Casino
## 12357                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 12358                                                                                                                                                    Babe
## 12359                                                                                                                                                Clueless
## 12360                                                                                                                                    Seven (a.k.a. Se7en)
## 12361                                                                                                                                     Usual Suspects, The
## 12362                                                                                                                                              Braveheart
## 12363                                                                                                                                             Taxi Driver
## 12364                                                                                                                                           Birdcage, The
## 12365                                                                                                                                               Apollo 13
## 12366                                                                                                                                         Johnny Mnemonic
## 12367                                                                                                                                                Net, The
## 12368                                                                                                                                               Showgirls
## 12369                                                                                                                                                  Clerks
## 12370                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 12371                                                                                                                      Star Wars: Episode IV - A New Hope
## 12372                                                                                                                                            Pulp Fiction
## 12373                                                                                                                                                Stargate
## 12374                                                                                                                               Shawshank Redemption, The
## 12375                                                                                                                                  Star Trek: Generations
## 12376                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 12377                                                                                                                                Clear and Present Danger
## 12378                                                                                                                                            Forrest Gump
## 12379                                                                                                                                          Lion King, The
## 12380                                                                                                                                                   Speed
## 12381                                                                                                                                           Jurassic Park
## 12382                                                                                                                                          Mrs. Doubtfire
## 12383                                                                                                                                            Philadelphia
## 12384                                                                                                                                                  Sliver
## 12385                                                                                                                                                 Aladdin
## 12386                                                                                                                              Terminator 2: Judgment Day
## 12387                                                                                                                               Silence of the Lambs, The
## 12388                                                                                                                                     Mission: Impossible
## 12389                                                                                                                                                 Twister
## 12390                                                                                                                                           Trainspotting
## 12391                                                                                                                           Independence Day (a.k.a. ID4)
## 12392                                                                                                                                    Nutty Professor, The
## 12393                                                                                                                                          Godfather, The
## 12394                                                                                                                                       Wizard of Oz, The
## 12395                                                                                                                                   2001: A Space Odyssey
## 12396                                                                                                                    William Shakespeare's Romeo + Juliet
## 12397                                                                                                                                          Reservoir Dogs
## 12398                                                                                                                                        Crying Game, The
## 12399                                                                                                                              E.T. the Extra-Terrestrial
## 12400                                                                                                                         Monty Python and the Holy Grail
## 12401                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 12402                                                                                                                                                  Aliens
## 12403                                                                                                                                     Clockwork Orange, A
## 12404                                                                                                                                          Apocalypse Now
## 12405                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 12406                                                                                                                                              Goodfellas
## 12407                                                                                                                                                   Alien
## 12408                                                                                                                                       Full Metal Jacket
## 12409                                                                                                                                         Terminator, The
## 12410                                                                                                                                           Groundhog Day
## 12411                                                                                                                                      Back to the Future
## 12412                                                                                                                                                  Gandhi
## 12413                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 12414                                                                                                                                                  Carrie
## 12415                                                                                                                                Star Trek: First Contact
## 12416                                                                                                                           Star Trek: The Motion Picture
## 12417                                                                                                                         Star Trek II: The Wrath of Khan
## 12418                                                                                                                     Star Trek III: The Search for Spock
## 12419                                                                                                                           Star Trek IV: The Voyage Home
## 12420                                                                                                                                                  Scream
## 12421                                                                                                                  Romy and Michele's High School Reunion
## 12422                                                                                                             Austin Powers: International Man of Mystery
## 12423                                                                                                                                      Fifth Element, The
## 12424                                                                                                                                                 Con Air
## 12425                                                                                                                               Men in Black (a.k.a. MIB)
## 12426                                                                                                                                                 Contact
## 12427                                                                                                                                               G.I. Jane
## 12428                                                                                                                               Hunt for Red October, The
## 12429                                                                                                                                               Game, The
## 12430                                                                                                                         I Know What You Did Last Summer
## 12431                                                                                                                                       Starship Troopers
## 12432                                                                                                                                           Sliding Doors
## 12433                                                                                                                                        Truman Show, The
## 12434                                                                                                                                     Alien: Resurrection
## 12435                                                                                                                                       Good Will Hunting
## 12436                                                                                                                                                Scream 2
## 12437                                                                                                                                                 Titanic
## 12438                                                                                                                                     Tomorrow Never Dies
## 12439                                                                                                                                       Big Lebowski, The
## 12440                                                                                                                                             Wag the Dog
## 12441                                                                                                                                             Wild Things
## 12442                                                                                                                                             Deep Impact
## 12443                                                                                                                                              Armageddon
## 12444                                                                                                                            There's Something About Mary
## 12445                                                                                                                                     Breakfast Club, The
## 12446                                                                                                                                           Exorcist, The
## 12447                                                                                                                              Back to the Future Part II
## 12448                                                                                                                             Back to the Future Part III
## 12449                                                                                                                                     Saving Private Ryan
## 12450                                                                               Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 12451                                                                                                                                             Beetlejuice
## 12452                                                                                                                                                Rounders
## 12453                                                                                                                                    What Dreams May Come
## 12454                                                                                                                                      American History X
## 12455                                                                                                                                              Siege, The
## 12456                                                                                                                                               Elizabeth
## 12457                                                                                                                                      Enemy of the State
## 12458                                                                                                                                 Star Trek: Insurrection
## 12459                                                                                                                                    Prince of Egypt, The
## 12460                                                                                                                                        Cruel Intentions
## 12461                                                                                                                       Lock, Stock & Two Smoking Barrels
## 12462                                                                                                                                             Matrix, The
## 12463                                                                                                                                              Mummy, The
## 12464                                                                                                               Star Wars: Episode I - The Phantom Menace
## 12465                                                                                                                          Rocky Horror Picture Show, The
## 12466                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 12467                                                                                                                    South Park: Bigger, Longer and Uncut
## 12468                                                                                                                                            American Pie
## 12469                                                                                                                                Blair Witch Project, The
## 12470                                                                                                                                         American Beauty
## 12471                                                                                                                                          Boys Don't Cry
## 12472                                                                                                                                            Total Recall
## 12473                                                                                                                                              Goldfinger
## 12474                                                                                                                                              Fight Club
## 12475                                                                                                                                Who Framed Roger Rabbit?
## 12476                                                                                                                                   House on Haunted Hill
## 12477                                                                                                                                                   Dogma
## 12478                                                                                                                                                   42 Up
## 12479                                                                                                                                World Is Not Enough, The
## 12480                                                                                                                                         Green Mile, The
## 12481                                                                                                                                           Patriot Games
## 12482                                                                                                                                                Scream 3
## 12483                                                                                                                                             Boiler Room
## 12484                                                                                                                                                     JFK
## 12485                                                                                                                                         Thelma & Louise
## 12486                                                                                                                                                 Network
## 12487                                                                                                                                    Virgin Suicides, The
## 12488                                                                                                                                               Gladiator
## 12489                                                                                                                                               Road Trip
## 12490                                                                                                                                  Mission: Impossible II
## 12491                                                                                                                                            Patriot, The
## 12492                                                                                                                                      Perfect Storm, The
## 12493                                                                                                                                             Scary Movie
## 12494                                                                                                                                                   X-Men
## 12495                                                                                                                                           Almost Famous
## 12496                                                                                                                                Urban Legends: Final Cut
## 12497                                                                                                                                     Requiem for a Dream
## 12498                                                                                                                                            Billy Elliot
## 12499                                                                                                                                        Charlie's Angels
##       year                                                    genres userId
## 1     1995                                                     Drama      1
## 2     1941                          Animation|Children|Drama|Musical      1
## 3     1996                                                  Thriller      1
## 4     1981                          Action|Adventure|Sci-Fi|Thriller      1
## 5     1989                                                     Drama      1
## 6     1978                                                 Drama|War      1
## 7     1959                                    Action|Adventure|Drama      1
## 8     1982                                                     Drama      1
## 9     1992                           Fantasy|Horror|Romance|Thriller      1
## 10    1991                                                  Thriller      1
## 11    1979                                          Adventure|Sci-Fi      1
## 12    1996                          Adventure|Animation|Comedy|Crime      1
## 13    1971                                     Action|Crime|Thriller      1
## 14    1982                                   Action|Adventure|Sci-Fi      1
## 15    1980                                          Adventure|Comedy      1
## 16    1988                                  Action|Adventure|Fantasy      1
## 17    1998               Adventure|Animation|Children|Comedy|Fantasy      1
## 18    1986                              Drama|Horror|Sci-Fi|Thriller      1
## 19    1981                           Adventure|Comedy|Fantasy|Sci-Fi      1
## 20    1974                                            Comedy|Western      1
## 21    1995                                 Action|Adventure|Thriller      2
## 22    1995                                             Drama|Romance      2
## 23    1995                                            Comedy|Romance      2
## 24    1995                                          Mystery|Thriller      2
## 25    1995                                    Crime|Mystery|Thriller      2
## 26    1995                                      Comedy|Drama|Romance      2
## 27    1995                                                     Drama      2
## 28    1995                                          Action|Drama|War      2
## 29    1995                                                    Comedy      2
## 30    1995                                      Adventure|Drama|IMAX      2
## 31    1995                             Action|Adventure|Comedy|Crime      2
## 32    1995                                        Drama|Thriller|War      2
## 33    1995                                     Action|Crime|Thriller      2
## 34    1995                                      Action|Drama|Romance      2
## 35    1995                                     Action|Crime|Thriller      2
## 36    1995                                            Comedy|Romance      2
## 37    1995                                   Action|Adventure|Sci-Fi      2
## 38    1995                                             Drama|Romance      2
## 39    1994                                                    Comedy      2
## 40    1994                                            Drama|Thriller      2
## 41    1994                                              Comedy|Drama      2
## 42    1994                                                    Comedy      2
## 43    1994                                              Drama|Horror      2
## 44    1994                                                     Drama      2
## 45    1992                                     Drama|Fantasy|Romance      2
## 46    1994                                 Drama|Romance|War|Western      2
## 47    1994                                              Comedy|Drama      2
## 48    1994                                       Drama|Horror|Sci-Fi      2
## 49    1995                              Action|Drama|Sci-Fi|Thriller      2
## 50    1994                               Comedy|Crime|Drama|Thriller      2
## 51    1994                                                     Drama      2
## 52    1994                            Children|Drama|Fantasy|Mystery      2
## 53    1994                                      Comedy|Drama|Fantasy      2
## 54    1994                                     Comedy|Drama|Thriller      2
## 55    1995                                            Comedy|Romance      2
## 56    1994                               Action|Crime|Drama|Thriller      2
## 57    1994                                    Drama|Mystery|Thriller      2
## 58    1994                                  Comedy|Drama|Romance|War      2
## 59    1994                                            Comedy|Romance      2
## 60    1994           Adventure|Animation|Children|Drama|Musical|IMAX      2
## 61    1994                               Action|Comedy|Crime|Fantasy      2
## 62    1994                                             Action|Comedy      2
## 63    1994                                              Comedy|Drama      2
## 64    1994                                      Comedy|Drama|Romance      2
## 65    1994                                   Action|Romance|Thriller      2
## 66    1994                             Drama|Horror|Romance|Thriller      2
## 67    1994                                            Action|Fantasy      2
## 68    1993                                   Children|Comedy|Fantasy      2
## 69    1993                                            Drama|Thriller      2
## 70    1993                                                  Thriller      2
## 71    1995                                            Comedy|Romance      2
## 72    1993                                           Action|Thriller      2
## 73    1993                          Action|Adventure|Sci-Fi|Thriller      2
## 74    1993                           Action|Adventure|Comedy|Fantasy      2
## 75    1993                                            Comedy|Romance      2
## 76    1993                                              Comedy|Drama      2
## 77    1993                                                     Drama      2
## 78    1993                                             Drama|Romance      2
## 79    1993                                             Drama|Romance      2
## 80    1993                                                 Drama|War      2
## 81    1994                                                     Drama      2
## 82    1993                                      Comedy|Drama|Romance      2
## 83    1994                                            Comedy|Romance      2
## 84    1993                        Animation|Children|Fantasy|Musical      2
## 85    1993                           Action|Adventure|Comedy|Romance      2
## 86    1995                                                    Comedy      2
## 87    1990                                           Children|Comedy      2
## 88    1990                     Comedy|Drama|Fantasy|Romance|Thriller      2
## 89    1992               Adventure|Animation|Children|Comedy|Musical      2
## 90    1991                                             Action|Sci-Fi      2
## 91    1990                                   Adventure|Drama|Western      2
## 92    1989                                     Action|Crime|Thriller      2
## 93    1991                                     Crime|Horror|Thriller      2
## 94    1970                                        Animation|Children      2
## 95    1996              Adventure|Animation|Children|Fantasy|Musical      2
## 96    1996                                Adventure|Animation|Comedy      2
## 97    1995                                Adventure|Children|Fantasy      3
## 98    1995                                          Action|Drama|War      3
## 99    1994                                               Crime|Drama      3
## 100   1995                                                    Comedy      3
## 101   1994                               Comedy|Crime|Drama|Thriller      3
## 102   1994                                               Crime|Drama      3
## 103   1994                                   Children|Comedy|Fantasy      3
## 104   1994                                  Comedy|Drama|Romance|War      3
## 105   1994                                   Action|Romance|Thriller      3
## 106   1993                                                 Drama|War      3
## 107   1992               Adventure|Animation|Children|Comedy|Musical      3
## 108   1989                                     Action|Crime|Thriller      3
## 109   1991                                     Crime|Horror|Thriller      3
## 110   1991           Animation|Children|Fantasy|Musical|Romance|IMAX      3
## 111   1996                         Action|Adventure|Romance|Thriller      3
## 112   1996                                        Comedy|Crime|Drama      3
## 113   1996                              Crime|Drama|Romance|Thriller      3
## 114   1987                   Action|Adventure|Comedy|Fantasy|Romance      3
## 115   1983                                   Action|Adventure|Sci-Fi      3
## 116   1971                                      Comedy|Drama|Romance      3
## 117   1991                                        Comedy|Crime|Drama      3
## 118   1988                                     Action|Comedy|Western      3
## 119   1997                                      Action|Comedy|Sci-Fi      3
## 120   1997                                             Drama|Romance      3
## 121   1998                                    Adventure|Comedy|Drama      3
## 122   1998                                          Action|Drama|War      3
## 123   1998                                              Comedy|Drama      3
## 124   1989                                                    Horror      3
## 125   1999                                                    Comedy      3
## 126   1999                                                     Drama      3
## 127   1984                                      Action|Comedy|Sci-Fi      3
## 128   1999                                      Drama|Horror|Mystery      3
## 129   1999                                   Horror|Mystery|Thriller      3
## 130   1999                                             Drama|Romance      3
## 131   1999                               Action|Crime|Drama|Thriller      3
## 132   1992                                                    Comedy      3
## 133   2000                                            Drama|Thriller      3
## 134   2000                                                     Drama      3
## 135   2002                          Action|Adventure|Sci-Fi|Thriller      3
## 136   2002                                               Documentary      3
## 137   2003                       Adventure|Animation|Children|Comedy      3
## 138   2003                            Action|Adventure|Drama|Fantasy      3
## 139   2004                                      Drama|Romance|Sci-Fi      3
## 140   2004                                               Documentary      3
## 141   2004                              Action|Adventure|Sci-Fi|IMAX      3
## 142   2000                                          Animation|Comedy      3
## 143   2006                               Action|Sci-Fi|Thriller|IMAX      3
## 144   2006                                                 Drama|War      3
## 145   2006                                                 Drama|War      3
## 146   2008                                   Action|Crime|Drama|IMAX      3
## 147   2009                                               Documentary      3
## 148   1995                                 Action|Adventure|Thriller      4
## 149   1995                                            Children|Drama      4
## 150   1995                             Action|Adventure|Comedy|Crime      4
## 151   1996                                                    Comedy      4
## 152   1995                             Action|Adventure|Comedy|Crime      4
## 153   1995                                       Action|Crime|Sci-Fi      4
## 154   1995                                     Action|Crime|Thriller      4
## 155   1977                                   Action|Adventure|Sci-Fi      4
## 156   1994                                            Comedy|Romance      4
## 157   1994                               Comedy|Crime|Drama|Thriller      4
## 158   1994                                    Adventure|Drama|Sci-Fi      4
## 159   1994                               Action|Crime|Drama|Thriller      4
## 160   1994                                  Comedy|Drama|Romance|War      4
## 161   1994                                            Comedy|Romance      4
## 162   1994           Adventure|Animation|Children|Drama|Musical|IMAX      4
## 163   1994                               Action|Comedy|Crime|Fantasy      4
## 164   1994                  Action|Adventure|Comedy|Romance|Thriller      4
## 165   1993                                   Children|Comedy|Fantasy      4
## 166   1993                                               Crime|Drama      4
## 167   1993                                 Action|Adventure|Thriller      4
## 168   1993                                             Comedy|Sci-Fi      4
## 169   1993                                            Comedy|Romance      4
## 170   1993                                   Action|Adventure|Sci-Fi      4
## 171   1993                           Action|Adventure|Crime|Thriller      4
## 172   1993                          Action|Adventure|Sci-Fi|Thriller      4
## 173   1982                                    Action|Sci-Fi|Thriller      4
## 174   1992               Adventure|Animation|Children|Comedy|Musical      4
## 175   1991                                             Action|Sci-Fi      4
## 176   1990                                   Adventure|Drama|Western      4
## 177   1937                  Animation|Children|Drama|Fantasy|Musical      4
## 178   1940                        Animation|Children|Fantasy|Musical      4
## 179   1981                  Action|Adventure|Animation|Horror|Sci-Fi      4
## 180   1970                                        Animation|Children      4
## 181   1972                                               Crime|Drama      4
## 182   1958                            Drama|Mystery|Romance|Thriller      4
## 183   1959                                              Comedy|Crime      4
## 184   1941                                         Film-Noir|Mystery      4
## 185   1939                        Adventure|Children|Fantasy|Musical      4
## 186   1974                           Children|Comedy|Fantasy|Romance      4
## 187   1959                                           Children|Comedy      4
## 188   1950                Animation|Children|Fantasy|Musical|Romance      4
## 189   1964                           Children|Comedy|Fantasy|Musical      4
## 190   1977                      Adventure|Animation|Children|Musical      4
## 191   1971                                Adventure|Children|Musical      4
## 192   1951              Adventure|Animation|Children|Fantasy|Musical      4
## 193   1981                                  Animation|Children|Drama      4
## 194   1988                                     Action|Crime|Thriller      4
## 195   1971                           Children|Comedy|Fantasy|Musical      4
## 196   1988                                              Comedy|Crime      4
## 197   1992                                    Crime|Mystery|Thriller      4
## 198   1982                                     Children|Drama|Sci-Fi      4
## 199   1975                                              Comedy|Crime      4
## 200   1989                          Action|Adventure|Sci-Fi|Thriller      4
## 201   1975                                  Adventure|Comedy|Fantasy      4
## 202   1978                                                    Comedy      4
## 203   1980                                   Action|Adventure|Sci-Fi      4
## 204   1987                   Action|Adventure|Comedy|Fantasy|Romance      4
## 205   1981                                          Action|Adventure      4
## 206   1986                            Action|Adventure|Horror|Sci-Fi      4
## 207   1971                               Crime|Drama|Sci-Fi|Thriller      4
## 208   1979                                          Action|Drama|War      4
## 209   1983                                   Action|Adventure|Sci-Fi      4
## 210   1990                                               Crime|Drama      4
## 211   1979                                             Horror|Sci-Fi      4
## 212   1960                                              Crime|Horror      4
## 213   1980                                     Action|Comedy|Musical      4
## 214   1987                                                 Drama|War      4
## 215   1984                                                     Drama      4
## 216   1977                                            Comedy|Romance      4
## 217   1984                                    Action|Sci-Fi|Thriller      4
## 218   1990                                              Comedy|Drama      4
## 219   1985                                            Comedy|Romance      4
## 220   1980                                                    Horror      4
## 221   1986                                           Adventure|Drama      4
## 222   1993                                    Comedy|Fantasy|Romance      4
## 223   1985                                   Adventure|Comedy|Sci-Fi      4
## 224   1974                                            Comedy|Fantasy      4
## 225   1940                        Animation|Children|Fantasy|Musical      4
## 226   1989                                                    Comedy      4
## 227   1984                                                    Comedy      4
## 228   1989                                          Action|Adventure      4
## 229   1982                                             Drama|Musical      4
## 230   1989                                            Comedy|Romance      4
## 231   1987                                           Horror|Thriller      4
## 232   1958                                             Horror|Sci-Fi      4
## 233   1962                                      Crime|Drama|Thriller      4
## 234   1996                          Action|Adventure|Sci-Fi|Thriller      4
## 235   1979                                          Adventure|Sci-Fi      4
## 236   1991                                     Action|Mystery|Sci-Fi      4
## 237   1982                          Action|Adventure|Sci-Fi|Thriller      4
## 238   1986                                   Adventure|Comedy|Sci-Fi      4
## 239   1992                                              Action|Crime      4
## 240   1978                                    Comedy|Musical|Romance      4
## 241   1975                                             Action|Horror      4
## 242   1978                                           Horror|Thriller      4
## 243   1992                          Action|Comedy|Crime|Drama|Sci-Fi      4
## 244   1997                          Action|Adventure|Sci-Fi|Thriller      4
## 245   1997                                      Action|Comedy|Sci-Fi      4
## 246   1981                                                Comedy|War      4
## 247   1985                                    Drama|Romance|Thriller      4
## 248   1998                              Crime|Drama|Mystery|Thriller      4
## 249   1997                                             Action|Comedy      4
## 250   1998                            Action|Romance|Sci-Fi|Thriller      4
## 251   1998                              Action|Comedy|Crime|Thriller      4
## 252   1971                                     Action|Crime|Thriller      4
## 253   1976                                                     Drama      4
## 254   1988                                                     Drama      4
## 255   1986                                 Adventure|Fantasy|Musical      4
## 256   1985                                              Comedy|Drama      4
## 257   1982                                           Horror|Thriller      4
## 258   1987                                 Action|Comedy|Crime|Drama      4
## 259   1992                                 Action|Comedy|Crime|Drama      4
## 260   1984                                             Comedy|Horror      4
## 261   1985                  Action|Adventure|Children|Comedy|Fantasy      4
## 262   1977                                   Children|Comedy|Fantasy      4
## 263   1942                                  Animation|Children|Drama      4
## 264   1988                                             Drama|Romance      4
## 265   1984                                          Adventure|Sci-Fi      4
## 266   1985                      Adventure|Animation|Children|Fantasy      4
## 267   1979                                           Children|Sci-Fi      4
## 268   1986                                 Adventure|Children|Sci-Fi      4
## 269   1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi      4
## 270   1989                                               Documentary      4
## 271   1967                         Animation|Children|Comedy|Musical      4
## 272   1955                         Animation|Children|Comedy|Romance      4
## 273   1989                 Animation|Children|Comedy|Musical|Romance      4
## 274   1961                              Adventure|Animation|Children      4
## 275   1985                                             Drama|Fantasy      4
## 276   1953                        Animation|Children|Fantasy|Musical      4
## 277   1978                                           Children|Sci-Fi      4
## 278   1991                                   Action|Adventure|Sci-Fi      4
## 279   1959                                Animation|Children|Musical      4
## 280   1984                                    Comedy|Fantasy|Romance      4
## 281   1928                         Animation|Children|Comedy|Musical      4
## 282   1982                                   Action|Adventure|Sci-Fi      4
## 283   1979                                                    Comedy      4
## 284   1982                                     Comedy|Crime|Thriller      4
## 285   1983                                                     Drama      4
## 286   1984                                  Action|Adventure|Fantasy      4
## 287   1991                                   Children|Comedy|Fantasy      4
## 288   1982                                         Adventure|Fantasy      4
## 289   1986                       Adventure|Animation|Children|Comedy      4
## 290   1985                                 Adventure|Fantasy|Romance      4
## 291   1984                                            Comedy|Romance      4
## 292   1984                                Adventure|Children|Fantasy      4
## 293   1988                                            Comedy|Fantasy      4
## 294   1988                                  Action|Adventure|Fantasy      4
## 295   1987                                        Action|Crime|Drama      4
## 296   1989                                      Comedy|Drama|Romance      4
## 297   1988                                    Drama|Fantasy|Thriller      4
## 298   1992                                      Crime|Drama|Thriller      4
## 299   1992                                        Comedy|Crime|Drama      4
## 300   1986                                                     Drama      4
## 301   1985                                      Comedy|Crime|Mystery      4
## 302   1982                           Action|Adventure|Drama|Thriller      4
## 303   1984                           Action|Adventure|Comedy|Romance      4
## 304   1979                                              Action|Drama      4
## 305   1958                                     Horror|Mystery|Sci-Fi      4
## 306   1986                              Crime|Drama|Mystery|Thriller      4
## 307   1988                                     Drama|Horror|Thriller      4
## 308   1990                                              Action|Crime      4
## 309   1999                                   Action|Adventure|Sci-Fi      4
## 310   1978                                   Action|Adventure|Sci-Fi      4
## 311   1982                                        Comedy|Documentary      4
## 312   1999                                   Action|Adventure|Comedy      4
## 313   1990                                             Comedy|Horror      4
## 314   1984                                      Action|Comedy|Sci-Fi      4
## 315   1999                                     Action|Comedy|Fantasy      4
## 316   1986                                  Adventure|Drama|Thriller      4
## 317   1999                                                    Comedy      4
## 318   1971                                                    Comedy      4
## 319   1980                                                    Comedy      4
## 320   1983                                                    Comedy      4
## 321   1988                              Comedy|Drama|Fantasy|Romance      4
## 322   1983                                           Children|Comedy      4
## 323   1992                                         Adventure|Romance      4
## 324   1985                                    Comedy|Horror|Thriller      4
## 325   1981                                         Adventure|Fantasy      4
## 326   1975                                                   Musical      4
## 327   1983                                   Horror|Mystery|Thriller      4
## 328   1986                                           Horror|Thriller      4
## 329   1990                          Action|Adventure|Sci-Fi|Thriller      4
## 330   1986                                                    Comedy      4
## 331   1981                           Adventure|Comedy|Fantasy|Sci-Fi      4
## 332   1990                              Action|Crime|Sci-Fi|Thriller      4
## 333   1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery      4
## 334   1973                                 Action|Adventure|Thriller      4
## 335   1982                                                    Horror      4
## 336   1973               Adventure|Animation|Children|Comedy|Musical      4
## 337   1983                                                    Comedy      4
## 338   1979                                                    Comedy      4
## 339   1991                                      Comedy|Drama|Musical      4
## 340   1988                                              Comedy|Drama      4
## 341   1987                                            Drama|Thriller      4
## 342   1988                              Action|Comedy|Crime|Thriller      4
## 343   1991                              Comedy|Drama|Fantasy|Romance      4
## 344   1985                                      Crime|Drama|Thriller      4
## 345   1993                                             Action|Comedy      4
## 346   1982                                      Comedy|Drama|Romance      4
## 347   1985                                             Drama|Mystery      4
## 348   1992                                              Comedy|Drama      4
## 349   1992                                              Comedy|Drama      4
## 350   1992                               Action|Crime|Drama|Thriller      4
## 351   1986                       Adventure|Animation|Children|Sci-Fi      4
## 352   1995                                            Comedy|Romance      5
## 353   1995                                            Comedy|Romance      5
## 354   1996                                                    Comedy      5
## 355   1996                                                    Comedy      5
## 356   1995                                      Adventure|Drama|IMAX      5
## 357   1994                                          Adventure|Comedy      5
## 358   1994                                                     Drama      5
## 359   1994                                                    Comedy      5
## 360   1994                                  Comedy|Drama|Romance|War      5
## 361   1994           Adventure|Animation|Children|Drama|Musical|IMAX      5
## 362   1994                               Action|Comedy|Crime|Fantasy      5
## 363   1994                                   Action|Romance|Thriller      5
## 364   1993                                            Comedy|Romance      5
## 365   1993                                              Comedy|Drama      5
## 366   1990                                           Children|Comedy      5
## 367   1992               Adventure|Animation|Children|Comedy|Musical      5
## 368   1991           Animation|Children|Fantasy|Musical|Romance|IMAX      5
## 369   1990                                            Comedy|Romance      5
## 370   1996                             Comedy|Fantasy|Romance|Sci-Fi      5
## 371   1972                                               Crime|Drama      5
## 372   1958                            Drama|Mystery|Romance|Thriller      5
## 373   1939                        Adventure|Children|Fantasy|Musical      5
## 374   1950                Animation|Children|Fantasy|Musical|Romance      5
## 375   1965                                           Musical|Romance      5
## 376   1975                                                     Drama      5
## 377   1974                                               Crime|Drama      5
## 378   1967                                      Comedy|Drama|Romance      5
## 379   1989                                            Comedy|Romance      5
## 380   1978                                    Comedy|Musical|Romance      5
## 381   1996                                             Drama|Romance      5
## 382   1997                                                    Comedy      5
## 383   1997                          Action|Adventure|Sci-Fi|Thriller      5
## 384   1998                                       Comedy|Drama|Sci-Fi      5
## 385   1997                                             Drama|Romance      5
## 386   1998                                            Comedy|Romance      5
## 387   1997                                      Comedy|Drama|Romance      5
## 388   1998                                            Comedy|Romance      5
## 389   1988                                                     Drama      5
## 390   1985                                              Comedy|Drama      5
## 391   1973                                            Horror|Mystery      5
## 392   1990                              Crime|Drama|Mystery|Thriller      5
## 393   1989                 Animation|Children|Comedy|Musical|Romance      5
## 394   1998                              Action|Comedy|Crime|Thriller      5
## 395   1998               Adventure|Animation|Children|Comedy|Fantasy      5
## 396   1998                       Adventure|Animation|Children|Comedy      5
## 397   1998                                            Comedy|Romance      5
## 398   1999                                              Comedy|Crime      5
## 399   1999                                   Action|Adventure|Comedy      5
## 400   1999                                                    Comedy      5
## 401   1999                                            Comedy|Romance      5
## 402   1999                                      Drama|Horror|Mystery      5
## 403   1999                                                    Comedy      5
## 404   1986                                                    Comedy      5
## 405   1999                                      Comedy|Drama|Fantasy      5
## 406   1999               Adventure|Animation|Children|Comedy|Fantasy      5
## 407   1999                                    Drama|Mystery|Thriller      5
## 408   2000                                                     Drama      5
## 409   2000                                          Action|Drama|War      5
## 410   2000                                                     Drama      5
## 411   2000                                                    Comedy      5
## 412   2000                                             Drama|Romance      5
## 413   2000                                            Comedy|Romance      5
## 414   2000                                                     Drama      5
## 415   2000                                              Comedy|Crime      5
## 416   2001       Adventure|Animation|Children|Comedy|Fantasy|Romance      5
## 417   2001                                     Drama|Musical|Romance      5
## 418   2001                                            Comedy|Romance      5
## 419   2001                                                    Comedy      5
## 420   2001                                            Crime|Thriller      5
## 421   2001                                             Drama|Romance      5
## 422   2002                                                  Thriller      5
## 423   2002                                            Comedy|Romance      5
## 424   2002                          Action|Adventure|Sci-Fi|Thriller      5
## 425   2002                                               Crime|Drama      5
## 426   2002                                               Documentary      5
## 427   2002                                   Horror|Mystery|Thriller      5
## 428   2002                                         Adventure|Fantasy      5
## 429   2002                                                 Drama|War      5
## 430   2002                                      Comedy|Drama|Romance      5
## 431   2003                              Comedy|Drama|Fantasy|Romance      5
## 432   2003                       Adventure|Animation|Children|Comedy      5
## 433   2002                                      Action|Horror|Sci-Fi      5
## 434   2003                                      Comedy|Drama|Romance      5
## 435   2003                                      Comedy|Drama|Romance      5
## 436   2004                                                    Comedy      5
## 437   2004                                  Comedy|Documentary|Drama      5
## 438   2004                                               Documentary      5
## 439   2004                              Action|Adventure|Sci-Fi|IMAX      5
## 440   2004                          Action|Adventure|Sci-Fi|Thriller      5
## 441   2004                                                     Drama      5
## 442   2004                                                 Drama|War      5
## 443   2005                    Adventure|Children|Comedy|Fantasy|IMAX      5
## 444   2004                                               Crime|Drama      5
## 445   2005                           Action|Adventure|Comedy|Romance      5
## 446   2005                                            Comedy|Romance      5
## 447   2005                                            Comedy|Romance      5
## 448   2005                                     Drama|Musical|Romance      5
## 449   2005                                Adventure|Children|Fantasy      5
## 450   2005                   Action|Adventure|Drama|Fantasy|Thriller      5
## 451   2006                                                    Comedy      5
## 452   1976                                      Crime|Drama|Thriller      6
## 453   1995                                        Adventure|Children      6
## 454   1995                                       Action|Crime|Sci-Fi      6
## 455   1994                               Action|Crime|Drama|Thriller      6
## 456   1940                        Animation|Children|Fantasy|Musical      6
## 457   1958                            Drama|Mystery|Romance|Thriller      6
## 458   1962                                       Adventure|Drama|War      6
## 459   1957                                       Adventure|Drama|War      6
## 460   1986                                           Adventure|Drama      6
## 461   1967                                                     Drama      6
## 462   1989                                                    Comedy      6
## 463   1996                                                     Drama      6
## 464   1997                                      Comedy|Drama|Romance      6
## 465   1997                                           Action|Thriller      6
## 466   1997                                                    Comedy      6
## 467   1998                                     Drama|Sci-Fi|Thriller      6
## 468   1998                      Action|Crime|Mystery|Sci-Fi|Thriller      6
## 469   1989                                 Action|Comedy|Crime|Drama      6
## 470   1954                                    Action|Adventure|Drama      6
## 471   1989                                                    Comedy      6
## 472   1988                                            Comedy|Fantasy      6
## 473   1999                                              Comedy|Crime      6
## 474   1976                                   Action|Adventure|Sci-Fi      6
## 475   1968                                       Action|Drama|Sci-Fi      6
## 476   1999                                    Action|Sci-Fi|Thriller      6
## 477   1975                              Comedy|Horror|Musical|Sci-Fi      6
## 478   1998                                              Action|Crime      6
## 479   1999                                     Action|Comedy|Fantasy      6
## 480   1999                 Adventure|Animation|Children|Drama|Sci-Fi      6
## 481   1999                         Action|Adventure|Comedy|Drama|War      6
## 482   1999                                  Adventure|Comedy|Fantasy      6
## 483   1999               Adventure|Animation|Children|Comedy|Fantasy      6
## 484   2000                                    Horror|Sci-Fi|Thriller      6
## 485   2000                                 Animation|Children|Comedy      6
## 486   2001                                              Comedy|Drama      6
## 487   2001                           Mystery|Romance|Sci-Fi|Thriller      6
## 488   2002                                         Adventure|Fantasy      6
## 489   2002                                    Action|Adventure|Drama      6
## 490   2003                            Action|Adventure|Drama|Fantasy      6
## 491   2004                                      Drama|Romance|Sci-Fi      6
## 492   2004                                    Adventure|Fantasy|IMAX      6
## 493   2004                              Action|Adventure|Sci-Fi|IMAX      6
## 494   2004                                      Comedy|Drama|Romance      6
## 495   2004                                             Comedy|Horror      6
## 496   1995               Adventure|Animation|Children|Comedy|Fantasy      7
## 497   1995                                 Action|Adventure|Thriller      7
## 498   1995                                     Comedy|Crime|Thriller      7
## 499   1995                                                     Drama      7
## 500   1995                                            Children|Drama      7
## 501   1995                                                     Drama      7
## 502   1996                                                    Comedy      7
## 503   1995                                          Action|Drama|War      7
## 504   1995                             Action|Adventure|Comedy|Crime      7
## 505   1996                                                    Comedy      7
## 506   1995                                  Action|Drama|Romance|War      7
## 507   1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller      7
## 508   1995                                             Drama|Romance      7
## 509   1977                                   Action|Adventure|Sci-Fi      7
## 510   1994                                              Comedy|Drama      7
## 511   1994                                   Action|Adventure|Sci-Fi      7
## 512   1994                                               Crime|Drama      7
## 513   1994                                    Adventure|Drama|Sci-Fi      7
## 514   1995                                                    Comedy      7
## 515   1994                                              Comedy|Drama      7
## 516   1994                                   Children|Comedy|Fantasy      7
## 517   1994                                  Comedy|Drama|Romance|War      7
## 518   1994                                            Comedy|Romance      7
## 519   1994           Adventure|Animation|Children|Drama|Musical|IMAX      7
## 520   1994                               Action|Comedy|Crime|Fantasy      7
## 521   1994                                   Action|Romance|Thriller      7
## 522   1994                  Action|Adventure|Comedy|Romance|Thriller      7
## 523   1993                          Action|Adventure|Sci-Fi|Thriller      7
## 524   1993                                              Comedy|Drama      7
## 525   1993                                             Drama|Romance      7
## 526   1993                                      Comedy|Drama|Romance      7
## 527   1982                                    Action|Sci-Fi|Thriller      7
## 528   1993                        Animation|Children|Fantasy|Musical      7
## 529   1992               Adventure|Animation|Children|Comedy|Musical      7
## 530   1991                                             Action|Sci-Fi      7
## 531   1990                                   Adventure|Drama|Western      7
## 532   1989                                     Action|Crime|Thriller      7
## 533   1937                  Animation|Children|Drama|Fantasy|Musical      7
## 534   1991           Animation|Children|Fantasy|Musical|Romance|IMAX      7
## 535   1981                  Action|Adventure|Animation|Horror|Sci-Fi      7
## 536   1996                                             Comedy|Sci-Fi      7
## 537   1996                                            Comedy|Romance      7
## 538   1996                                Adventure|Animation|Comedy      7
## 539   1996                             Drama|Fantasy|Horror|Thriller      7
## 540   1996                         Action|Adventure|Romance|Thriller      7
## 541   1996                                             Action|Sci-Fi      7
## 542   1995                                 Animation|Children|Comedy      7
## 543   1996                          Action|Adventure|Sci-Fi|Thriller      7
## 544   1996                                     Action|Drama|Thriller      7
## 545   1968                                    Adventure|Drama|Sci-Fi      7
## 546   1988                                     Action|Crime|Thriller      7
## 547   1971                           Children|Comedy|Fantasy|Musical      7
## 548   1988                                              Comedy|Crime      7
## 549   1979                                                    Comedy      7
## 550   1982                                     Children|Drama|Sci-Fi      7
## 551   1975                                              Comedy|Crime      7
## 552   1981                          Action|Adventure|Sci-Fi|Thriller      7
## 553   1975                                  Adventure|Comedy|Fantasy      7
## 554   1993                           Animation|Children|Comedy|Crime      7
## 555   1980                                   Action|Adventure|Sci-Fi      7
## 556   1987                   Action|Adventure|Comedy|Fantasy|Romance      7
## 557   1981                                          Action|Adventure      7
## 558   1983                                   Action|Adventure|Sci-Fi      7
## 559   1980                                     Action|Comedy|Musical      7
## 560   1989                Adventure|Animation|Children|Comedy|Sci-Fi      7
## 561   1984                                                     Drama      7
## 562   1983                                                     Drama      7
## 563   1984                                    Action|Sci-Fi|Thriller      7
## 564   1989                                                 Drama|War      7
## 565   1985                                   Adventure|Comedy|Sci-Fi      7
## 566   1986                                  Action|Adventure|Fantasy      7
## 567   1974                                            Comedy|Fantasy      7
## 568   1959                                    Action|Adventure|Drama      7
## 569   1984                                                    Comedy      7
## 570   1989                                          Action|Adventure      7
## 571   1982                                             Drama|Musical      7
## 572   1989                                    Children|Drama|Fantasy      7
## 573   1989                                            Comedy|Romance      7
## 574   1996                                      Comedy|Drama|Romance      7
## 575   1979                                          Adventure|Sci-Fi      7
## 576   1991                                     Action|Mystery|Sci-Fi      7
## 577   1989                                             Action|Sci-Fi      7
## 578   1982                          Action|Adventure|Sci-Fi|Thriller      7
## 579   1984                                   Action|Adventure|Sci-Fi      7
## 580   1986                                   Adventure|Comedy|Sci-Fi      7
## 581   1987                                                    Comedy      7
## 582   1996                          Adventure|Animation|Comedy|Crime      7
## 583   1992                                Action|Romance|War|Western      7
## 584   1995                                   Mystery|Sci-Fi|Thriller      8
## 585   1995                                     Comedy|Drama|Thriller      8
## 586   1995                                          Mystery|Thriller      8
## 587   1995                                    Crime|Mystery|Thriller      8
## 588   1995                                          Action|Drama|War      8
## 589   1977                                   Action|Adventure|Sci-Fi      8
## 590   1994                                                     Drama      8
## 591   1994                               Comedy|Crime|Drama|Thriller      8
## 592   1994                                               Crime|Drama      8
## 593   1994                                  Comedy|Drama|Romance|War      8
## 594   1993                                                  Thriller      8
## 595   1993                                                    Comedy      8
## 596   1993                                                     Drama      8
## 597   1993                                                 Drama|War      8
## 598   1993                                   Comedy|Romance|Thriller      8
## 599   1991                                             Action|Sci-Fi      8
## 600   1991                                     Crime|Horror|Thriller      8
## 601   1996                              Crime|Drama|Mystery|Thriller      8
## 602   1996                                            Drama|Thriller      8
## 603   1972                                               Crime|Drama      8
## 604   1980                                   Action|Adventure|Sci-Fi      8
## 605   1987                   Action|Adventure|Comedy|Fantasy|Romance      8
## 606   1981                                          Action|Adventure      8
## 607   1983                                   Action|Adventure|Sci-Fi      8
## 608   1960                                              Crime|Horror      8
## 609   1984                                                     Drama      8
## 610   1980                                                    Horror      8
## 611   1986                                           Adventure|Drama      8
## 612   1993                                    Comedy|Fantasy|Romance      8
## 613   1985                                   Adventure|Comedy|Sci-Fi      8
## 614   1989                                          Action|Adventure      8
## 615   1989                                    Children|Drama|Fantasy      8
## 616   1996                                                     Drama      8
## 617   1975                                             Action|Horror      8
## 618   1996                                             Drama|Romance      8
## 619   1997                                      Comedy|Crime|Romance      8
## 620   1997                                 Action|Adventure|Thriller      8
## 621   1997                          Crime|Film-Noir|Mystery|Thriller      8
## 622   1997                                    Drama|Mystery|Thriller      8
## 623   1985                                    Drama|Romance|Thriller      8
## 624   1997                                             Drama|Romance      8
## 625   1998                              Crime|Drama|Fantasy|Thriller      8
## 626   1998                                            Comedy|Romance      8
## 627   1998                                     Drama|Sci-Fi|Thriller      8
## 628   1988                                                     Drama      8
## 629   1998                                          Action|Drama|War      8
## 630   1984                                    Comedy|Fantasy|Romance      8
## 631   1982                        Adventure|Animation|Children|Drama      8
## 632   1987                                        Action|Crime|Drama      8
## 633   1992                                                    Comedy      8
## 634   1997                                  Comedy|Drama|Romance|War      8
## 635   1998                                               Crime|Drama      8
## 636   1998                                           Action|Thriller      8
## 637   1989                                                    Comedy      8
## 638   1999                                              Comedy|Crime      8
## 639   1999                                    Action|Sci-Fi|Thriller      8
## 640   1984                                      Action|Comedy|Sci-Fi      8
## 641   1999                                      Drama|Horror|Mystery      8
## 642   1999                                                    Comedy      8
## 643   1980                                                    Comedy      8
## 644   1988                              Comedy|Drama|Fantasy|Romance      8
## 645   1983                                           Children|Comedy      8
## 646   1999                                   Horror|Mystery|Thriller      8
## 647   1999                                             Drama|Romance      8
## 648   1986                                                    Comedy      8
## 649   1999                               Action|Crime|Drama|Thriller      8
## 650   1999                                               Crime|Drama      8
## 651   2000                                    Action|Adventure|Drama      8
## 652   2000                                                     Drama      8
## 653   2000                                                    Comedy      8
## 654   2000                                      Action|Drama|Romance      8
## 655   2000                                     Comedy|Crime|Thriller      8
## 656   2000                                                     Drama      8
## 657   2000                                      Crime|Drama|Thriller      8
## 658   2000                                          Mystery|Thriller      8
## 659   1983                                        Action|Crime|Drama      8
## 660   2001                                              Action|Drama      8
## 661   2001               Adventure|Animation|Children|Comedy|Fantasy      8
## 662   2001                                Adventure|Children|Fantasy      8
## 663   2001                                            Crime|Thriller      8
## 664   2001                                            Comedy|Romance      8
## 665   2001                                         Adventure|Fantasy      8
## 666   2001                                             Drama|Romance      8
## 667   2002                           Action|Adventure|Drama|Thriller      8
## 668   2002                              Action|Adventure|Sci-Fi|IMAX      8
## 669   2002                      Action|Crime|Mystery|Sci-Fi|Thriller      8
## 670   2002                                               Crime|Drama      8
## 671   2002                                    Crime|Mystery|Thriller      8
## 672   1983                                                    Comedy      8
## 673   2002                                               Documentary      8
## 674   2002                                         Adventure|Fantasy      8
## 675   2002                                               Crime|Drama      8
## 676   2003                       Adventure|Animation|Children|Comedy      8
## 677   2003                                              Action|Crime      8
## 678   2003                                       Crime|Drama|Mystery      8
## 679   2003                                     Action|Crime|Thriller      8
## 680   2003                                            Drama|Thriller      8
## 681   2003                                Action|Adventure|Drama|War      8
## 682   2003                            Action|Adventure|Drama|Fantasy      8
## 683   2004                                      Drama|Romance|Sci-Fi      8
## 684   2004                                     Action|Drama|Thriller      8
## 685   2004                                             Drama|Romance      8
## 686   2004                                      Comedy|Drama|Romance      8
## 687   2004                                           Adventure|Drama      8
## 688   2004                                             Comedy|Horror      8
## 689   2005                   Action|Crime|Film-Noir|Mystery|Thriller      8
## 690   2004                                               Crime|Drama      8
## 691   2005                                   Action|Adventure|Sci-Fi      8
## 692   2005                                         Action|Crime|IMAX      8
## 693   2005                                            Comedy|Romance      8
## 694   2005                                            Drama|Thriller      8
## 695   2005                                     Drama|Musical|Romance      8
## 696   2005                                      Comedy|Drama|Romance      8
## 697   2006                                                     Drama      8
## 698   2006                                      Crime|Drama|Thriller      8
## 699   2006                                            Comedy|Romance      8
## 700   1995               Adventure|Animation|Children|Comedy|Fantasy      9
## 701   1995                                             Drama|Romance      9
## 702   1995                                                     Drama      9
## 703   1995                                               Crime|Drama      9
## 704   1995                                          Mystery|Thriller      9
## 705   1994                                               Crime|Drama      9
## 706   1993                                            Comedy|Romance      9
## 707   1993                                             Drama|Romance      9
## 708   1993                                                 Drama|War      9
## 709   1993                                             Drama|Romance      9
## 710   1991                                     Crime|Horror|Thriller      9
## 711   1996                               Comedy|Crime|Drama|Thriller      9
## 712   1996                                 Action|Adventure|Thriller      9
## 713   1996                                             Drama|Romance      9
## 714   1992                                             Drama|Romance      9
## 715   1996                                             Drama|Romance      9
## 716   1996                                                     Drama      9
## 717   1996                                       Crime|Drama|Romance      9
## 718   1997                                            Comedy|Romance      9
## 719   1997                                              Drama|Sci-Fi      9
## 720   1998                                             Drama|Romance      9
## 721   1998                                       Comedy|Drama|Sci-Fi      9
## 722   1997                                             Drama|Romance      9
## 723   1997                                             Drama|Romance      9
## 724   1997                                      Comedy|Drama|Romance      9
## 725   1998                                          Action|Drama|War      9
## 726   1998                                      Comedy|Drama|Romance      9
## 727   1982                                         Adventure|Fantasy      9
## 728   1990                                                    Comedy      9
## 729   1992                                      Crime|Drama|Thriller      9
## 730   1998                              Action|Comedy|Crime|Thriller      9
## 731   1998                                     Action|Crime|Thriller      9
## 732   1990                                     Drama|Fantasy|Romance      9
## 733   1998               Adventure|Animation|Children|Comedy|Fantasy      9
## 734   1992                                                    Comedy      9
## 735   1998                                      Crime|Drama|Thriller      9
## 736   1998                                      Comedy|Drama|Romance      9
## 737   1998                                          Action|Drama|War      9
## 738   1999                                           Action|Thriller      9
## 739   1999                                                     Drama      9
## 740   1999                                                    Comedy      9
## 741   1999                                    Action|Sci-Fi|Thriller      9
## 742   1999                                   Action|Adventure|Sci-Fi      9
## 743   1999                                      Drama|Horror|Mystery      9
## 744   1968                Adventure|Animation|Comedy|Fantasy|Musical      9
## 745   1995                                    Crime|Mystery|Thriller     10
## 746   1995                                              Drama|Horror     10
## 747   1994                                               Crime|Drama     10
## 748   1994                                                    Comedy     10
## 749   1994                                              Comedy|Drama     10
## 750   1989                                     Action|Crime|Thriller     10
## 751   1994                                                    Horror     10
## 752   1988                                     Action|Crime|Thriller     10
## 753   1992                                    Crime|Mystery|Thriller     10
## 754   1986                                            Action|Romance     10
## 755   1989                          Action|Adventure|Sci-Fi|Thriller     10
## 756   1980                                   Action|Adventure|Sci-Fi     10
## 757   1987                   Action|Adventure|Comedy|Fantasy|Romance     10
## 758   1981                                          Action|Adventure     10
## 759   1986                            Action|Adventure|Horror|Sci-Fi     10
## 760   1983                                   Action|Adventure|Sci-Fi     10
## 761   1980                                     Action|Comedy|Musical     10
## 762   1984                                    Action|Sci-Fi|Thriller     10
## 763   1989                                          Action|Adventure     10
## 764   1996                                                     Drama     10
## 765   1996                                                     Drama     10
## 766   1997                                          Mystery|Thriller     10
## 767   1997                                 Action|Adventure|Thriller     10
## 768   1991                                             Drama|Romance     10
## 769   1997                                      Action|Horror|Sci-Fi     10
## 770   1997                                             Drama|Romance     10
## 771   1997                                                     Drama     10
## 772   1998                                  Adventure|Comedy|Western     10
## 773   1998                                            Comedy|Romance     10
## 774   1991                                            Comedy|Romance     10
## 775   1985                           Action|Adventure|Drama|Thriller     10
## 776   1984                           Action|Adventure|Comedy|Romance     10
## 777   1982                                              Action|Drama     10
## 778   1999                                                    Comedy     10
## 779   1999                                    Action|Sci-Fi|Thriller     10
## 780   1999                                  Action|Adventure|Fantasy     10
## 781   1999                                    Horror|Sci-Fi|Thriller     10
## 782   1999                                            Drama|Thriller     10
## 783   1999                                   Horror|Mystery|Thriller     10
## 784   1999                               Action|Crime|Drama|Thriller     10
## 785   1999                         Action|Adventure|Comedy|Drama|War     10
## 786   1999                                                    Comedy     10
## 787   1988                                              Comedy|Drama     10
## 788   1999                                           Horror|Thriller     10
## 789   1999                                                  Thriller     10
## 790   1989                                               Crime|Drama     10
## 791   1995                                    Crime|Mystery|Thriller     11
## 792   1996                             Action|Comedy|Horror|Thriller     11
## 793   1994                                Adventure|Children|Fantasy     11
## 794   1995                                  Adventure|Children|Drama     11
## 795   1994                               Comedy|Crime|Drama|Thriller     11
## 796   1996                                        Comedy|Crime|Drama     11
## 797   1996                                                    Comedy     11
## 798   1941                                             Drama|Mystery     11
## 799   1991                                           Adventure|Drama     11
## 800   1966                                  Action|Adventure|Western     11
## 801   1992                                Action|Romance|War|Western     11
## 802   1998                              Action|Comedy|Crime|Thriller     11
## 803   1994                                           Children|Comedy     11
## 804   1998                                              Comedy|Drama     11
## 805   1999                                      Drama|Horror|Mystery     11
## 806   1989                                                     Drama     11
## 807   2002                                               Documentary     11
## 808   2002                                               Documentary     11
## 809   1988                   Action|Adventure|Drama|Mystery|Thriller     11
## 810   2006                                      Crime|Drama|Thriller     11
## 811   2007                                            Comedy|Romance     11
## 812   2008                                     Action|Crime|Thriller     11
## 813   2009                               Comedy|Crime|Drama|Thriller     11
## 814   2010                                        Comedy|Documentary     11
## 815   2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     11
## 816   2010                                      Crime|Drama|Thriller     11
## 817   2010                                               Documentary     11
## 818   2010                                           Documentary|War     11
## 819   2010                                  Adventure|Drama|Thriller     11
## 820   2011                            Crime|Drama|Film-Noir|Thriller     11
## 821   2012                    Action|Adventure|Drama|Sci-Fi|Thriller     11
## 822   2012                               Action|Adventure|Crime|IMAX     11
## 823   2011                                         Documentary|Drama     11
## 824   2012                            Action|Adventure|Thriller|IMAX     11
## 825   2012                               Action|Crime|Drama|Thriller     11
## 826   2012                                      Adventure|Drama|IMAX     11
## 827   2013                                        Action|Sci-Fi|IMAX     11
## 828   2013                              Action|Adventure|Sci-Fi|IMAX     11
## 829   1994                                              Drama|Horror     12
## 830   1993                                                     Drama     12
## 831   1993                                                     Drama     12
## 832   1996                               Comedy|Crime|Drama|Thriller     12
## 833   1996        Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     12
## 834   1996                         Action|Adventure|Romance|Thriller     12
## 835   1996                                             Action|Sci-Fi     12
## 836   1964                           Children|Comedy|Fantasy|Musical     12
## 837   1951              Adventure|Animation|Children|Fantasy|Musical     12
## 838   1973                                             Comedy|Sci-Fi     12
## 839   1987                   Action|Adventure|Comedy|Fantasy|Romance     12
## 840   1993                    Action|Adventure|Comedy|Fantasy|Horror     12
## 841   1980                                     Action|Comedy|Musical     12
## 842   1977                                            Comedy|Romance     12
## 843   1971                                      Comedy|Drama|Romance     12
## 844   1988                                                     Drama     12
## 845   1982                          Action|Adventure|Sci-Fi|Thriller     12
## 846   1975                                             Action|Horror     12
## 847   1997                                      Comedy|Drama|Romance     12
## 848   1998                                              Comedy|Crime     12
## 849   1984                                            Comedy|Romance     12
## 850   1998                       Adventure|Animation|Children|Comedy     12
## 851   1986                                                    Horror     12
## 852   1968                                       Action|Drama|Sci-Fi     12
## 853   1982                                             Horror|Sci-Fi     12
## 854   1999                               Action|Crime|Drama|Thriller     12
## 855   1999                                                    Comedy     12
## 856   1999                                                     Drama     12
## 857   1999                                    Drama|Mystery|Thriller     12
## 858   1999                                                     Drama     12
## 859   2000                                      Crime|Drama|Thriller     12
## 860   2000                                                    Comedy     12
## 861   2000                                                     Drama     12
## 862   1997                                           Sci-Fi|Thriller     12
## 863   1984                                    Horror|Sci-Fi|Thriller     12
## 864   1990                                                    Comedy     12
## 865   1950                                                    Sci-Fi     12
## 866   1984                                                     Drama     12
## 867   2000                                   Action|Adventure|Sci-Fi     12
## 868   2000                                              Comedy|Drama     12
## 869   2000                                      Drama|Horror|Mystery     12
## 870   2000                                        Animation|Children     12
## 871   1959                                             Drama|Mystery     12
## 872   1991                                                    Comedy     12
## 873   2000                                      Comedy|Drama|Romance     12
## 874   2000                            Action|Adventure|Comedy|Sci-Fi     12
## 875   2000                                            Comedy|Romance     12
## 876   2000                                                    Comedy     12
## 877   1990                                             Action|Comedy     12
## 878   1989                                                     Drama     12
## 879   2000                                                    Comedy     12
## 880   2000                                     Drama|Horror|Thriller     12
## 881   1999                                   Action|Adventure|Sci-Fi     12
## 882   2000                                        Comedy|Documentary     12
## 883   1991                                                    Comedy     12
## 884   1953                                             Drama|Western     12
## 885   1965                                            Comedy|Western     12
## 886   2000                                           Action|Thriller     12
## 887   2000                                      Comedy|Drama|Romance     12
## 888   2000                                                     Drama     12
## 889   1976                                              Drama|Sci-Fi     12
## 890   1995               Adventure|Animation|Children|Comedy|Fantasy     13
## 891   1995                                          Mystery|Thriller     13
## 892   1995                                          Action|Drama|War     13
## 893   1994                                                     Drama     13
## 894   1994                               Comedy|Crime|Drama|Thriller     13
## 895   1994                                               Crime|Drama     13
## 896   1994                                  Comedy|Drama|Romance|War     13
## 897   1994                                Adventure|Children|Romance     13
## 898   1993                          Action|Adventure|Sci-Fi|Thriller     13
## 899   1993                                                     Drama     13
## 900   1993                                                 Drama|War     13
## 901   1993                                            Children|Drama     13
## 902   1990                     Comedy|Drama|Fantasy|Romance|Thriller     13
## 903   1990                                   Adventure|Drama|Western     13
## 904   1964                              Comedy|Drama|Musical|Romance     13
## 905   1939                        Adventure|Children|Fantasy|Musical     13
## 906   1991                                           Adventure|Drama     13
## 907   1986                                           Adventure|Drama     13
## 908   1993                                    Comedy|Fantasy|Romance     13
## 909   1998                              Action|Comedy|Crime|Thriller     13
## 910   1988                                                     Drama     13
## 911   1998                       Adventure|Animation|Children|Comedy     13
## 912   1999                                    Action|Sci-Fi|Thriller     13
## 913   1999                                            Comedy|Romance     13
## 914   1999                 Adventure|Animation|Children|Drama|Sci-Fi     13
## 915   1999                                      Drama|Horror|Mystery     13
## 916   1983                                           Children|Comedy     13
## 917   1999                                                     Drama     13
## 918   1986                                                    Comedy     13
## 919   1999               Adventure|Animation|Children|Comedy|Fantasy     13
## 920   1999                                               Crime|Drama     13
## 921   1992                                              Comedy|Drama     13
## 922   1979                         Adventure|Children|Comedy|Musical     13
## 923   2000                           Action|Adventure|Comedy|Western     13
## 924   2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     13
## 925   2001                                  Action|Drama|Romance|War     13
## 926   1991                                            Comedy|Western     13
## 927   2001                                                    Comedy     13
## 928   2001                             Drama|Mystery|Sci-Fi|Thriller     13
## 929   2001               Adventure|Animation|Children|Comedy|Fantasy     13
## 930   2001                                         Adventure|Fantasy     13
## 931   2002                                               Crime|Drama     13
## 932   2003                       Adventure|Animation|Children|Comedy     13
## 933   2004                                      Drama|Romance|Sci-Fi     13
## 934   2001                                          Action|Drama|War     13
## 935   2007                                     Action|Crime|Thriller     13
## 936   2008                                   Action|Crime|Drama|IMAX     13
## 937   2008                                               Crime|Drama     13
## 938   2009                                      Comedy|Drama|Romance     13
## 939   2010          Adventure|Animation|Children|Comedy|Fantasy|IMAX     13
## 940   2010                             Action|Adventure|Fantasy|IMAX     13
## 941   2011               Action|Adventure|Drama|Fantasy|Mystery|IMAX     13
## 942   2012                              Action|Adventure|Sci-Fi|IMAX     13
## 943   1937                  Animation|Children|Drama|Fantasy|Musical     14
## 944   1980                                   Action|Adventure|Sci-Fi     14
## 945   1997                                             Drama|Romance     14
## 946   1978                                    Children|Comedy|Sci-Fi     14
## 947   1998                       Adventure|Animation|Children|Comedy     14
## 948   1998                                         Animation|Musical     14
## 949   1999                                   Action|Adventure|Sci-Fi     14
## 950   1999                                   Action|Adventure|Comedy     14
## 951   1984                                      Action|Comedy|Sci-Fi     14
## 952   1999                          Action|Adventure|Children|Comedy     14
## 953   1999                                            Comedy|Romance     14
## 954   1999                                              Comedy|Drama     14
## 955   1999               Adventure|Animation|Children|Comedy|Fantasy     14
## 956   1999                                   Children|Comedy|Fantasy     14
## 957   1999                                   Adventure|Comedy|Sci-Fi     14
## 958   2000                                                    Sci-Fi     14
## 959   2000                                 Action|Adventure|Thriller     14
## 960   2000                                 Animation|Children|Comedy     14
## 961   2000                                    Action|Sci-Fi|Thriller     14
## 962   2000                                   Children|Comedy|Fantasy     14
## 963   1995               Adventure|Animation|Children|Comedy|Fantasy     15
## 964   1995                                Adventure|Children|Fantasy     15
## 965   1995                                                    Comedy     15
## 966   1995                                     Action|Crime|Thriller     15
## 967   1995                                 Action|Adventure|Thriller     15
## 968   1995                                      Comedy|Drama|Romance     15
## 969   1995                                                     Drama     15
## 970   1995                                               Crime|Drama     15
## 971   1995                                             Drama|Romance     15
## 972   1995                                                    Comedy     15
## 973   1995                                     Comedy|Crime|Thriller     15
## 974   1995                       Crime|Drama|Horror|Mystery|Thriller     15
## 975   1995                                             Drama|Romance     15
## 976   1995                                   Mystery|Sci-Fi|Thriller     15
## 977   1995                                            Children|Drama     15
## 978   1995                                               Crime|Drama     15
## 979   1995                                            Comedy|Romance     15
## 980   1995                                  Action|Adventure|Fantasy     15
## 981   1995                                          Mystery|Thriller     15
## 982   1995                                    Crime|Mystery|Thriller     15
## 983   1995                                      Comedy|Drama|Romance     15
## 984   1995                                                     Drama     15
## 985   1996                             Action|Comedy|Horror|Thriller     15
## 986   1995                                              Comedy|Drama     15
## 987   1996                                      Comedy|Drama|Romance     15
## 988   1996                                 Action|Adventure|Thriller     15
## 989   1996                            Adventure|Comedy|Crime|Romance     15
## 990   1996                                                    Comedy     15
## 991   1996                         Adventure|Children|Comedy|Musical     15
## 992   1995                                          Action|Drama|War     15
## 993   1976                                      Crime|Drama|Thriller     15
## 994   1995                             Action|Adventure|Comedy|Crime     15
## 995   1994                                     Drama|Mystery|Romance     15
## 996   1996                                                    Comedy     15
## 997   1995                        Action|Comedy|Crime|Drama|Thriller     15
## 998   1994                                      Crime|Drama|Thriller     15
## 999   1995                                      Adventure|Drama|IMAX     15
## 1000  1995                             Action|Adventure|Comedy|Crime     15
## 1001  1995                                                Comedy|War     15
## 1002  1995                           Action|Adventure|Mystery|Sci-Fi     15
## 1003  1995                                        Drama|Thriller|War     15
## 1004  1994                                               Documentary     15
## 1005  1995                                    Action|Romance|Western     15
## 1006  1995                          Crime|Film-Noir|Mystery|Thriller     15
## 1007  1995                                     Action|Crime|Thriller     15
## 1008  1995                           Action|Adventure|Crime|Thriller     15
## 1009  1995                                    Action|Sci-Fi|Thriller     15
## 1010  1995                                                     Drama     15
## 1011  1995                                                    Comedy     15
## 1012  1995                                            Comedy|Romance     15
## 1013  1995                                     Action|Crime|Thriller     15
## 1014  1995                                                     Drama     15
## 1015  1995                                             Horror|Sci-Fi     15
## 1016  1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller     15
## 1017  1995                                   Action|Adventure|Sci-Fi     15
## 1018  1994                                                 Drama|War     15
## 1019  1995                                             Drama|Romance     15
## 1020  1995                                                    Comedy     15
## 1021  1994                                                    Comedy     15
## 1022  1994                                            Drama|Thriller     15
## 1023  1995                                            Drama|Thriller     15
## 1024  1994                                          Adventure|Comedy     15
## 1025  1994                                      Comedy|Drama|Romance     15
## 1026  1994                                                     Drama     15
## 1027  1994                                              Comedy|Drama     15
## 1028  1995                                            Comedy|Romance     15
## 1029  1994                                               Documentary     15
## 1030  1994                                               Crime|Drama     15
## 1031  1994                                            Comedy|Romance     15
## 1032  1994                                              Drama|Horror     15
## 1033  1977                                   Action|Adventure|Sci-Fi     15
## 1034  1992                                     Drama|Fantasy|Romance     15
## 1035  1994                                     Action|Crime|Thriller     15
## 1036  1995                              Action|Drama|Sci-Fi|Thriller     15
## 1037  1994                               Action|Crime|Drama|Thriller     15
## 1038  1994                               Comedy|Crime|Drama|Thriller     15
## 1039  1994                                                     Drama     15
## 1040  1994                                                     Drama     15
## 1041  1993                                                     Drama     15
## 1042  1994                                              Comedy|Drama     15
## 1043  1994                                   Action|Adventure|Sci-Fi     15
## 1044  1994                                      Comedy|Drama|Fantasy     15
## 1045  1994                                               Crime|Drama     15
## 1046  1995                                              Comedy|Drama     15
## 1047  1994                                    Adventure|Drama|Sci-Fi     15
## 1048  1995                                          Mystery|Thriller     15
## 1049  1995                                            Comedy|Romance     15
## 1050  1994                                                    Comedy     15
## 1051  1994                                                    Comedy     15
## 1052  1994                               Action|Crime|Drama|Thriller     15
## 1053  1994                             Action|Crime|Fantasy|Thriller     15
## 1054  1994                                   Children|Comedy|Fantasy     15
## 1055  1994                                  Comedy|Drama|Romance|War     15
## 1056  1994                                            Comedy|Romance     15
## 1057  1994           Adventure|Animation|Children|Drama|Musical|IMAX     15
## 1058  1994                               Action|Comedy|Crime|Fantasy     15
## 1059  1994                                             Action|Comedy     15
## 1060  1994                                              Comedy|Drama     15
## 1061  1994                                      Comedy|Drama|Romance     15
## 1062  1992                                                  Thriller     15
## 1063  1994                                   Action|Romance|Thriller     15
## 1064  1994                  Action|Adventure|Comedy|Romance|Thriller     15
## 1065  1994                             Drama|Horror|Romance|Thriller     15
## 1066  1994                                                    Comedy     15
## 1067  1993                                               Crime|Drama     15
## 1068  1993                                 Action|Adventure|Thriller     15
## 1069  1993                                             Comedy|Sci-Fi     15
## 1070  1993                                            Comedy|Romance     15
## 1071  1993                                                    Comedy     15
## 1072  1993                                   Action|Adventure|Sci-Fi     15
## 1073  1993                                            Drama|Thriller     15
## 1074  1993                                                  Thriller     15
## 1075  1993                                         Action|Comedy|War     15
## 1076  1994                                                    Comedy     15
## 1077  1993                                           Action|Thriller     15
## 1078  1993                          Action|Adventure|Sci-Fi|Thriller     15
## 1079  1993                                            Drama|Thriller     15
## 1080  1993                                                     Drama     15
## 1081  1993                           Action|Adventure|Comedy|Fantasy     15
## 1082  1996                                 Action|Adventure|Thriller     15
## 1083  1993                                              Comedy|Drama     15
## 1084  1993                                                     Drama     15
## 1085  1993                                             Drama|Romance     15
## 1086  1993                                                    Comedy     15
## 1087  1993                                                     Drama     15
## 1088  1993                                                 Drama|War     15
## 1089  1993                                                     Drama     15
## 1090  1993                                      Comedy|Drama|Romance     15
## 1091  1993                                                  Thriller     15
## 1092  1982                                    Action|Sci-Fi|Thriller     15
## 1093  1993                                   Comedy|Romance|Thriller     15
## 1094  1993                                             Drama|Musical     15
## 1095  1993                        Animation|Children|Fantasy|Musical     15
## 1096  1993                                            Crime|Thriller     15
## 1097  1993                                               Documentary     15
## 1098  1995                                              Comedy|Drama     15
## 1099  1994                                              Comedy|Drama     15
## 1100  1990                                           Children|Comedy     15
## 1101  1990                     Comedy|Drama|Fantasy|Romance|Thriller     15
## 1102  1992               Adventure|Animation|Children|Comedy|Musical     15
## 1103  1991                                             Action|Sci-Fi     15
## 1104  1990                                   Adventure|Drama|Western     15
## 1105  1989                                     Action|Crime|Thriller     15
## 1106  1991                                     Crime|Horror|Thriller     15
## 1107  1937                  Animation|Children|Drama|Fantasy|Musical     15
## 1108  1990                                            Comedy|Romance     15
## 1109  1996                               Comedy|Crime|Drama|Thriller     15
## 1110  1981                  Action|Adventure|Animation|Horror|Sci-Fi     15
## 1111  1996                              Crime|Drama|Mystery|Thriller     15
## 1112  1996                                    Action|Crime|Drama|War     15
## 1113  1996                         Action|Adventure|Mystery|Thriller     15
## 1114  1996                                                    Comedy     15
## 1115  1995                                          Comedy|Drama|War     15
## 1116  1968                                   Adventure|Comedy|Sci-Fi     15
## 1117  1965                     Drama|Mystery|Romance|Sci-Fi|Thriller     15
## 1118  1996                                            Comedy|Romance     15
## 1119  1996                                Adventure|Animation|Comedy     15
## 1120  1996                             Drama|Fantasy|Horror|Thriller     15
## 1121  1996                                 Action|Adventure|Thriller     15
## 1122  1996                         Action|Adventure|Romance|Thriller     15
## 1123  1995                                 Animation|Children|Comedy     15
## 1124  1996                                    Action|Sci-Fi|Thriller     15
## 1125  1964                                                Comedy|War     15
## 1126  1996                                              Comedy|Crime     15
## 1127  1996                                        Comedy|Crime|Drama     15
## 1128  1996                          Action|Adventure|Sci-Fi|Thriller     15
## 1129  1996                                           Comedy|Thriller     15
## 1130  1996                                                    Comedy     15
## 1131  1996                                     Action|Drama|Thriller     15
## 1132  1996                             Comedy|Fantasy|Romance|Sci-Fi     15
## 1133  1996                                    Comedy|Horror|Thriller     15
## 1134  1996                                     Drama|Mystery|Western     15
## 1135  1996                                             Drama|Romance     15
## 1136  1996                                      Comedy|Drama|Romance     15
## 1137  1996                                            Comedy|Romance     15
## 1138  1996                                            Crime|Thriller     15
## 1139  1996                                 Action|Adventure|Thriller     15
## 1140  1996                                                     Drama     15
## 1141  1972                                               Crime|Drama     15
## 1142  1996                              Crime|Drama|Romance|Thriller     15
## 1143  1952                                    Comedy|Musical|Romance     15
## 1144  1958                            Drama|Mystery|Romance|Thriller     15
## 1145  1954                                          Mystery|Thriller     15
## 1146  1959                 Action|Adventure|Mystery|Romance|Thriller     15
## 1147  1960                                      Comedy|Drama|Romance     15
## 1148  1959                                              Comedy|Crime     15
## 1149  1963                     Comedy|Crime|Mystery|Romance|Thriller     15
## 1150  1942                                             Drama|Romance     15
## 1151  1941                                         Film-Noir|Mystery     15
## 1152  1964                              Comedy|Drama|Musical|Romance     15
## 1153  1953                                      Comedy|Drama|Romance     15
## 1154  1939                        Adventure|Children|Fantasy|Musical     15
## 1155  1939                                         Drama|Romance|War     15
## 1156  1950                                   Drama|Film-Noir|Romance     15
## 1157  1941                                             Drama|Mystery     15
## 1158  1968                                    Adventure|Drama|Sci-Fi     15
## 1159  1950                                                     Drama     15
## 1160  1945                                  Mystery|Romance|Thriller     15
## 1161  1946                            Children|Drama|Fantasy|Romance     15
## 1162  1996                                              Comedy|Drama     15
## 1163  1993                                                    Comedy     15
## 1164  1965                                           Musical|Romance     15
## 1165  1988                                     Action|Crime|Thriller     15
## 1166  1996                                                     Drama     15
## 1167  1996                                     Action|Drama|Thriller     15
## 1168  1996                                             Drama|Romance     15
## 1169  1996                                              Comedy|Drama     15
## 1170  1971                           Children|Comedy|Fantasy|Musical     15
## 1171  1988                                              Comedy|Crime     15
## 1172  1967                                               Crime|Drama     15
## 1173  1987                                     Drama|Musical|Romance     15
## 1174  1992                                    Crime|Mystery|Thriller     15
## 1175  1992                                    Crime|Mystery|Thriller     15
## 1176  1991                                                     Drama     15
## 1177  1992                                    Drama|Romance|Thriller     15
## 1178  1992                                                     Drama     15
## 1179  1982                                     Children|Drama|Sci-Fi     15
## 1180  1990                                      Action|Drama|Romance     15
## 1181  1986                                            Action|Romance     15
## 1182  1996                                              Comedy|Drama     15
## 1183  1989                          Action|Adventure|Sci-Fi|Thriller     15
## 1184  1986                                             Drama|Mystery     15
## 1185  1975                                  Adventure|Comedy|Fantasy     15
## 1186  1996                                               Documentary     15
## 1187  1993                           Animation|Children|Comedy|Crime     15
## 1188  1992                                                    Comedy     15
## 1189  1989                                              Comedy|Drama     15
## 1190  1991                                     Drama|Fantasy|Romance     15
## 1191  1957                                                 Drama|War     15
## 1192  1990                                     Crime|Drama|Film-Noir     15
## 1193  1996                                         Drama|Romance|War     15
## 1194  1989                                                     Drama     15
## 1195  1988                                               Documentary     15
## 1196  1975                                                     Drama     15
## 1197  1980                                   Action|Adventure|Sci-Fi     15
## 1198  1987                   Action|Adventure|Comedy|Fantasy|Romance     15
## 1199  1981                                          Action|Adventure     15
## 1200  1985                                            Fantasy|Sci-Fi     15
## 1201  1986                            Action|Adventure|Horror|Sci-Fi     15
## 1202  1966                                  Action|Adventure|Western     15
## 1203  1957                                                     Drama     15
## 1204  1962                                       Adventure|Drama|War     15
## 1205  1971                               Crime|Drama|Sci-Fi|Thriller     15
## 1206  1962                                                     Drama     15
## 1207  1979                                          Action|Drama|War     15
## 1208  1968                                      Action|Drama|Western     15
## 1209  1983                                   Action|Adventure|Sci-Fi     15
## 1210  1987                                     Drama|Fantasy|Romance     15
## 1211  1949                                Film-Noir|Mystery|Thriller     15
## 1212  1990                                               Crime|Drama     15
## 1213  1979                                             Horror|Sci-Fi     15
## 1214  1993                    Action|Adventure|Comedy|Fantasy|Horror     15
## 1215  1985                                                 Drama|War     15
## 1216  1989                               Action|Crime|Drama|Thriller     15
## 1217  1960                                              Crime|Horror     15
## 1218  1980                                     Action|Comedy|Musical     15
## 1219  1974                                               Crime|Drama     15
## 1220  1987                                                 Drama|War     15
## 1221  1989                Adventure|Animation|Children|Comedy|Sci-Fi     15
## 1222  1984                                                     Drama     15
## 1223  1980                                                     Drama     15
## 1224  1977                                            Comedy|Romance     15
## 1225  1983                                                     Drama     15
## 1226  1981                                          Action|Drama|War     15
## 1227  1973                                              Comedy|Crime     15
## 1228  1971                                      Comedy|Drama|Romance     15
## 1229  1984                                    Action|Sci-Fi|Thriller     15
## 1230  1990                                              Comedy|Drama     15
## 1231  1979                                      Comedy|Drama|Romance     15
## 1232  1989                                                     Drama     15
## 1233  1967                                      Comedy|Drama|Romance     15
## 1234  1958                                  Crime|Film-Noir|Thriller     15
## 1235  1990                             Action|Crime|Romance|Thriller     15
## 1236  1957                                       Adventure|Drama|War     15
## 1237  1963                                             Drama|Fantasy     15
## 1238  1974                          Crime|Film-Noir|Mystery|Thriller     15
## 1239  1948                            Action|Adventure|Drama|Western     15
## 1240  1980                                                    Horror     15
## 1241  1986                                           Adventure|Drama     15
## 1242  1931                                  Crime|Film-Noir|Thriller     15
## 1243  1963                                Action|Adventure|Drama|War     15
## 1244  1978                                                 Drama|War     15
## 1245  1981                     Action|Drama|Mystery|Romance|Thriller     15
## 1246  1993                                    Comedy|Fantasy|Romance     15
## 1247  1992                                             Drama|Western     15
## 1248  1962                                        Crime|Thriller|War     15
## 1249  1985                                   Adventure|Comedy|Sci-Fi     15
## 1250  1970                                                 Drama|War     15
## 1251  1967                                                     Drama     15
## 1252  1991                                                     Drama     15
## 1253  1940                                          Comedy|Drama|War     15
## 1254  1952                                             Drama|Western     15
## 1255  1946                                   Crime|Film-Noir|Mystery     15
## 1256  1959                                    Action|Adventure|Drama     15
## 1257  1984                                                    Comedy     15
## 1258  1983                                               Documentary     15
## 1259  1987                                             Drama|Romance     15
## 1260  1989                                          Action|Adventure     15
## 1261  1982                                                     Drama     15
## 1262  1985                                                    Comedy     15
## 1263  1989                                    Children|Drama|Fantasy     15
## 1264  1975                                           Adventure|Drama     15
## 1265  1969                                            Action|Western     15
## 1266  1989                                            Comedy|Romance     15
## 1267  1992                             Action|Horror|Sci-Fi|Thriller     15
## 1268  1963                                           Horror|Thriller     15
## 1269  1958                                             Horror|Sci-Fi     15
## 1270  1992                           Fantasy|Horror|Romance|Thriller     15
## 1271  1992                                           Horror|Thriller     15
## 1272  1996                          Action|Adventure|Sci-Fi|Thriller     15
## 1273  1996                                                     Drama     15
## 1274  1996                                               Documentary     15
## 1275  1990                                 Action|Adventure|Thriller     15
## 1276  1992                                              Action|Crime     15
## 1277  1978                                    Comedy|Musical|Romance     15
## 1278  1992                                     Action|Drama|Thriller     15
## 1279  1975                                             Action|Horror     15
## 1280  1996                                      Action|Comedy|Sci-Fi     15
## 1281  1996                                             Drama|Romance     15
## 1282  1987                                                    Comedy     15
## 1283  1992                          Action|Comedy|Crime|Drama|Sci-Fi     15
## 1284  1996                          Adventure|Animation|Comedy|Crime     15
## 1285  1996                            Comedy|Horror|Mystery|Thriller     15
## 1286  1996                                                    Comedy     15
## 1287  1997             Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     15
## 1288  1997                                               Crime|Drama     15
## 1289  1997                                              Comedy|Drama     15
## 1290  1997                            Action|Romance|Sci-Fi|Thriller     15
## 1291  1996                                            Drama|Thriller     15
## 1292  1996                              Comedy|Drama|Mystery|Romance     15
## 1293  1997                                                    Comedy     15
## 1294  1997                                      Comedy|Crime|Romance     15
## 1295  1996                                             Drama|Romance     15
## 1296  1997                                                    Comedy     15
## 1297  1997                                                    Comedy     15
## 1298  1997                                   Action|Adventure|Comedy     15
## 1299  1997                            Action|Adventure|Comedy|Sci-Fi     15
## 1300  1997                                              Comedy|Drama     15
## 1301  1997                          Action|Adventure|Sci-Fi|Thriller     15
## 1302  1996                                                    Comedy     15
## 1303  1997                                 Action|Adventure|Thriller     15
## 1304  1997                                   Action|Romance|Thriller     15
## 1305  1997                         Action|Adventure|Fantasy|Thriller     15
## 1306  1997                                            Comedy|Romance     15
## 1307  1997                               Action|Crime|Drama|Thriller     15
## 1308  1997                                      Action|Comedy|Sci-Fi     15
## 1309  1997                                              Drama|Sci-Fi     15
## 1310  1997                               Action|Crime|Drama|Thriller     15
## 1311  1997                            Drama|Mystery|Romance|Thriller     15
## 1312  1997                                           Action|Thriller     15
## 1313  1990                                 Action|Adventure|Thriller     15
## 1314  1997                                           Adventure|Drama     15
## 1315  1997                                       Action|Thriller|War     15
## 1316  1997                          Crime|Film-Noir|Mystery|Thriller     15
## 1317  1997                                    Drama|Mystery|Thriller     15
## 1318  1997                                                     Drama     15
## 1319  1997                                      Comedy|Drama|Romance     15
## 1320  1997                                   Horror|Mystery|Thriller     15
## 1321  1997                                    Drama|Mystery|Thriller     15
## 1322  1997                                               Documentary     15
## 1323  1997                                     Drama|Sci-Fi|Thriller     15
## 1324  1981                                                Comedy|War     15
## 1325  1997                                                     Drama     15
## 1326  1997                                             Action|Sci-Fi     15
## 1327  1998                                             Drama|Romance     15
## 1328  1998                                       Comedy|Drama|Sci-Fi     15
## 1329  1997                                     Comedy|Crime|Thriller     15
## 1330  1997                                      Action|Horror|Sci-Fi     15
## 1331  1997                                                     Drama     15
## 1332  1997                                             Drama|Romance     15
## 1333  1997                            Comedy|Horror|Mystery|Thriller     15
## 1334  1997                                                     Drama     15
## 1335  1997                                             Drama|Romance     15
## 1336  1997                                 Action|Adventure|Thriller     15
## 1337  1997                                      Crime|Drama|Thriller     15
## 1338  1998                                              Comedy|Crime     15
## 1339  1998                                             Drama|Romance     15
## 1340  1997                                                    Comedy     15
## 1341  1998                       Adventure|Film-Noir|Sci-Fi|Thriller     15
## 1342  1998                                     Action|Crime|Thriller     15
## 1343  1998                                                    Comedy     15
## 1344  1998                              Crime|Drama|Fantasy|Thriller     15
## 1345  1998                                            Comedy|Romance     15
## 1346  1998                                           Sci-Fi|Thriller     15
## 1347  1997                                      Comedy|Drama|Romance     15
## 1348  1998                                     Action|Crime|Thriller     15
## 1349  1998                              Crime|Drama|Mystery|Thriller     15
## 1350  1998                                                     Drama     15
## 1351  1998                                              Comedy|Drama     15
## 1352  1997                                              Comedy|Drama     15
## 1353  1997                                        Comedy|Documentary     15
## 1354  1998                                   Action|Adventure|Sci-Fi     15
## 1355  1997                              Crime|Drama|Mystery|Thriller     15
## 1356  1998                                              Comedy|Drama     15
## 1357  1998                                   Comedy|Mystery|Thriller     15
## 1358  1997                                                     Drama     15
## 1359  1997                                                     Drama     15
## 1360  1998                                             Horror|Sci-Fi     15
## 1361  1998                                     Drama|Sci-Fi|Thriller     15
## 1362  1998                                    Action|Sci-Fi|Thriller     15
## 1363  1998                                      Comedy|Drama|Romance     15
## 1364  1997                                    Drama|Mystery|Thriller     15
## 1365  1998                                      Comedy|Drama|Romance     15
## 1366  1998                                             Drama|Romance     15
## 1367  1997                                              Comedy|Drama     15
## 1368  1998                      Action|Crime|Mystery|Sci-Fi|Thriller     15
## 1369  1998                       Comedy|Crime|Drama|Romance|Thriller     15
## 1370  1998                                              Comedy|Drama     15
## 1371  1998                            Action|Romance|Sci-Fi|Thriller     15
## 1372  1998                                     Drama|Sci-Fi|Thriller     15
## 1373  1998                                            Comedy|Romance     15
## 1374  1954                                               Crime|Drama     15
## 1375  1967                                             Drama|Mystery     15
## 1376  1969                                                     Drama     15
## 1377  1971                                     Action|Crime|Thriller     15
## 1378  1976                                                     Drama     15
## 1379  1979                                                     Drama     15
## 1380  1980                                                     Drama     15
## 1381  1988                                                     Drama     15
## 1382  1989                                                     Drama     15
## 1383  1971                                             Drama|Mystery     15
## 1384  1985                                              Comedy|Drama     15
## 1385  1982                                           Horror|Thriller     15
## 1386  1973                                            Horror|Mystery     15
## 1387  1987                                 Action|Comedy|Crime|Drama     15
## 1388  1984                                             Comedy|Horror     15
## 1389  1985                  Action|Adventure|Children|Comedy|Fantasy     15
## 1390  1998                                     Action|Comedy|Romance     15
## 1391  1927                                              Drama|Sci-Fi     15
## 1392  1989                                   Adventure|Comedy|Sci-Fi     15
## 1393  1990                           Adventure|Comedy|Sci-Fi|Western     15
## 1394  1942                                  Animation|Children|Drama     15
## 1395  1954                                    Action|Adventure|Drama     15
## 1396  1988                                             Drama|Romance     15
## 1397  1997                                             Drama|Romance     15
## 1398  1998                                          Action|Drama|War     15
## 1399  1981                          Action|Adventure|Children|Comedy     15
## 1400  1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     15
## 1401  1998                       Action|Crime|Drama|Mystery|Thriller     15
## 1402  1998                                                    Comedy     15
## 1403  1989                                               Documentary     15
## 1404  1986                                    Drama|Mystery|Thriller     15
## 1405  1984                                    Comedy|Fantasy|Romance     15
## 1406  1982                                   Action|Adventure|Sci-Fi     15
## 1407  1991                                            Comedy|Romance     15
## 1408  1984                                  Action|Adventure|Fantasy     15
## 1409  1991                                   Children|Comedy|Fantasy     15
## 1410  1998                             Action|Crime|Mystery|Thriller     15
## 1411  1987                                          Adventure|Comedy     15
## 1412  1985                                     Comedy|Fantasy|Sci-Fi     15
## 1413  1982                                         Adventure|Fantasy     15
## 1414  1986                                      Comedy|Drama|Romance     15
## 1415  1980                                          Adventure|Comedy     15
## 1416  1968                                     Drama|Horror|Thriller     15
## 1417  1984                                Adventure|Children|Fantasy     15
## 1418  1998                                    Action|Horror|Thriller     15
## 1419  1988                                            Comedy|Fantasy     15
## 1420  1951                            Crime|Drama|Film-Noir|Thriller     15
## 1421  1987                                        Action|Crime|Drama     15
## 1422  1998                                                     Drama     15
## 1423  1997                            Horror|Mystery|Sci-Fi|Thriller     15
## 1424  1987                                      Comedy|Drama|Romance     15
## 1425  1989                                      Comedy|Drama|Romance     15
## 1426  1992                                      Crime|Drama|Thriller     15
## 1427  1993                                             Drama|Romance     15
## 1428  1998                              Action|Comedy|Crime|Thriller     15
## 1429  1998                                     Action|Crime|Thriller     15
## 1430  1998                                              Comedy|Drama     15
## 1431  1982                             Action|Horror|Sci-Fi|Thriller     15
## 1432  1992                                        Comedy|Crime|Drama     15
## 1433  1990                                     Drama|Fantasy|Romance     15
## 1434  1998               Adventure|Animation|Children|Comedy|Fantasy     15
## 1435  1992                                                    Comedy     15
## 1436  1975                                             Drama|Musical     15
## 1437  1984                                                    Sci-Fi     15
## 1438  1980                                                     Drama     15
## 1439  1998                                              Comedy|Drama     15
## 1440  1998                                      Comedy|Drama|Fantasy     15
## 1441  1997                                  Comedy|Drama|Romance|War     15
## 1442  1998                                               Crime|Drama     15
## 1443  1998                                                     Drama     15
## 1444  1998                                           Action|Thriller     15
## 1445  1998                                                     Drama     15
## 1446  1998                                                   Romance     15
## 1447  1957                                                     Drama     15
## 1448  1998                                           Action|Thriller     15
## 1449  1998                       Adventure|Animation|Children|Comedy     15
## 1450  1998                                                     Drama     15
## 1451  1998                                                     Drama     15
## 1452  1933                           Action|Adventure|Fantasy|Horror     15
## 1453  1985                                      Comedy|Drama|Romance     15
## 1454  1985                                      Comedy|Crime|Mystery     15
## 1455  1984                                              Comedy|Crime     15
## 1456  1998                                              Comedy|Crime     15
## 1457  1998                                      Crime|Drama|Thriller     15
## 1458  1998                                              Comedy|Drama     15
## 1459  1998                                      Comedy|Drama|Romance     15
## 1460  1985                           Action|Adventure|Comedy|Romance     15
## 1461  1984                           Action|Adventure|Comedy|Romance     15
## 1462  1985                                             Comedy|Sci-Fi     15
## 1463  1985                             Comedy|Crime|Mystery|Thriller     15
## 1464  1998                                            Comedy|Romance     15
## 1465  1998                                          Action|Drama|War     15
## 1466  1998                                             Horror|Sci-Fi     15
## 1467  1997                                                     Drama     15
## 1468  1999                                              Comedy|Drama     15
## 1469  1986                              Drama|Horror|Sci-Fi|Thriller     15
## 1470  1986                              Crime|Drama|Mystery|Thriller     15
## 1471  1986                                            Comedy|Western     15
## 1472  1999                                           Action|Thriller     15
## 1473  1999                                                     Drama     15
## 1474  1999                                              Comedy|Crime     15
## 1475  1999                                    Drama|Mystery|Thriller     15
## 1476  1976                                   Action|Adventure|Sci-Fi     15
## 1477  1999                                                    Comedy     15
## 1478  1999                                                     Drama     15
## 1479  1998                                     Comedy|Crime|Thriller     15
## 1480  1999                                           Horror|Thriller     15
## 1481  1999                                              Action|Crime     15
## 1482  1999                                    Action|Sci-Fi|Thriller     15
## 1483  1999                                            Comedy|Romance     15
## 1484  1999                                                    Comedy     15
## 1485  1998                                                     Drama     15
## 1486  1998                                    Crime|Mystery|Thriller     15
## 1487  1999                                              Comedy|Crime     15
## 1488  1999                                            Comedy|Romance     15
## 1489  1998                                             Drama|Romance     15
## 1490  1997                             Drama|Romance|Sci-Fi|Thriller     15
## 1491  1999                                                    Comedy     15
## 1492  1999                                                    Comedy     15
## 1493  1999                                    Action|Sci-Fi|Thriller     15
## 1494  1999                                            Crime|Thriller     15
## 1495  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     15
## 1496  1998                                             Drama|Fantasy     15
## 1497  1999                                   Action|Adventure|Sci-Fi     15
## 1498  1978                                   Action|Adventure|Sci-Fi     15
## 1499  1931                                       Drama|Horror|Sci-Fi     15
## 1500  1975                              Comedy|Horror|Musical|Sci-Fi     15
## 1501  1999                                            Comedy|Romance     15
## 1502  1998                                                     Drama     15
## 1503  1999                                   Action|Adventure|Comedy     15
## 1504  1998                                             Drama|Mystery     15
## 1505  1998                                              Action|Crime     15
## 1506  1990                                             Comedy|Horror     15
## 1507  1999                                  Animation|Comedy|Musical     15
## 1508  1999                              Action|Comedy|Sci-Fi|Western     15
## 1509  1999                                                     Drama     15
## 1510  1999                                            Comedy|Romance     15
## 1511  1999                                                  Thriller     15
## 1512  1999                                           Children|Comedy     15
## 1513  1999                                     Drama|Horror|Thriller     15
## 1514  1999                                    Drama|Mystery|Thriller     15
## 1515  1999                                           Horror|Thriller     15
## 1516  1984                                      Action|Comedy|Sci-Fi     15
## 1517  1989                                     Comedy|Fantasy|Sci-Fi     15
## 1518  1999                                                    Comedy     15
## 1519  1999                             Action|Horror|Sci-Fi|Thriller     15
## 1520  1999                                     Action|Comedy|Fantasy     15
## 1521  1956                                           Crime|Film-Noir     15
## 1522  1962                                             Drama|Romance     15
## 1523  1999                                                    Comedy     15
## 1524  1999                 Adventure|Animation|Children|Drama|Sci-Fi     15
## 1525  1999                                      Drama|Horror|Mystery     15
## 1526  1999                                            Action|Mystery     15
## 1527  2000                                               Crime|Drama     15
## 1528  1999                                                    Comedy     15
## 1529  1980                                                    Comedy     15
## 1530  1983                                                    Comedy     15
## 1531  1988                              Comedy|Drama|Fantasy|Romance     15
## 1532  1993                      Crime|Drama|Mystery|Romance|Thriller     15
## 1533  1975                            Drama|Mystery|Romance|Thriller     15
## 1534  1999                                            Drama|Thriller     15
## 1535  1999                                   Horror|Mystery|Thriller     15
## 1536  1999                                             Drama|Romance     15
## 1537  1972                                  Adventure|Drama|Thriller     15
## 1538  1999                               Action|Crime|Drama|Thriller     15
## 1539  1999                         Action|Adventure|Comedy|Drama|War     15
## 1540  1962                                    Action|Adventure|Drama     15
## 1541  1999                                                     Drama     15
## 1542  1999                                      Crime|Drama|Thriller     15
## 1543  1983                                                    Comedy     15
## 1544  1990                          Action|Adventure|Sci-Fi|Thriller     15
## 1545  1986                                                    Comedy     15
## 1546  1970                                                     Drama     15
## 1547  1964                                 Action|Adventure|Thriller     15
## 1548  1962                                 Action|Adventure|Thriller     15
## 1549  1996                                      Crime|Drama|Thriller     15
## 1550  1999                               Action|Crime|Drama|Thriller     15
## 1551  1989                                        Comedy|Crime|Drama     15
## 1552  1999                                                     Drama     15
## 1553  1965                                                  Thriller     15
## 1554  1987                        Action|Crime|Drama|Sci-Fi|Thriller     15
## 1555  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     15
## 1556  1989                                 Action|Adventure|Thriller     15
## 1557  1965                                 Action|Adventure|Thriller     15
## 1558  1999                                      Comedy|Drama|Fantasy     15
## 1559  1997                  Action|Adventure|Animation|Drama|Fantasy     15
## 1560  1999                                            Comedy|Romance     15
## 1561  1999                                                  Thriller     15
## 1562  1999                                            Drama|Thriller     15
## 1563  1999                                               Documentary     15
## 1564  1998                                              Drama|Sci-Fi     15
## 1565  1999                                                     Drama     15
## 1566  1989                                               Crime|Drama     15
## 1567  1993                                              Action|Drama     15
## 1568  1961                                          Action|Adventure     15
## 1569  1987                                             Comedy|Sci-Fi     15
## 1570  1983                                                    Comedy     15
## 1571  1991                                  Mystery|Romance|Thriller     15
## 1572  1999                                  Adventure|Comedy|Fantasy     15
## 1573  1991                                      Comedy|Drama|Musical     15
## 1574  1998                                               Documentary     15
## 1575  1999                            Fantasy|Horror|Mystery|Romance     15
## 1576  1999                                 Action|Adventure|Thriller     15
## 1577  1999                                                     Drama     15
## 1578  1948                                                     Drama     15
## 1579  1987                                            Drama|Thriller     15
## 1580  1988                              Action|Comedy|Crime|Thriller     15
## 1581  1991                                              Action|Drama     15
## 1582  1991                              Comedy|Drama|Fantasy|Romance     15
## 1583  1999                    Action|Fantasy|Horror|Mystery|Thriller     15
## 1584  1999               Adventure|Animation|Children|Comedy|Fantasy     15
## 1585  1999                                                     Drama     15
## 1586  1999                                              Comedy|Drama     15
## 1587  1937                                                 Drama|War     15
## 1588  1999                                                    Comedy     15
## 1589  1999                                               Crime|Drama     15
## 1590  1999                                                     Drama     15
## 1591  1999                                            Drama|Thriller     15
## 1592  1971                                                     Drama     15
## 1593  1999                                   Children|Comedy|Fantasy     15
## 1594  1999                                                     Drama     15
## 1595  1969                                           Adventure|Drama     15
## 1596  1999                                                     Drama     15
## 1597  1999                                              Comedy|Drama     15
## 1598  1999                                   Adventure|Comedy|Sci-Fi     15
## 1599  1999                                    Drama|Mystery|Thriller     15
## 1600  1999                                                     Drama     15
## 1601  1999                                               Documentary     15
## 1602  1999                                                     Drama     15
## 1603  1982                                      Comedy|Drama|Romance     15
## 1604  1990                                          Mystery|Thriller     15
## 1605  2000                                            Comedy|Romance     15
## 1606  1992                                                     Drama     15
## 1607  1993                                                     Drama     15
## 1608  1992                                                    Comedy     15
## 1609  1992                                              Comedy|Drama     15
## 1610  1992                               Action|Crime|Drama|Thriller     15
## 1611  1992                                      Comedy|Drama|Romance     15
## 1612  1992                              Crime|Drama|Mystery|Thriller     15
## 1613  1992                               Action|Crime|Drama|Thriller     15
## 1614  1992                               Comedy|Crime|Drama|Thriller     15
## 1615  1992                             Action|Crime|Thriller|Western     15
## 1616  1992                                               Crime|Drama     15
## 1617  2000                            Comedy|Horror|Mystery|Thriller     15
## 1618  2000                               Action|Crime|Drama|Thriller     15
## 1619  2000                                           Adventure|Drama     15
## 1620  2000                                                    Comedy     15
## 1621  2000                                      Crime|Drama|Thriller     15
## 1622  2000                                    Horror|Sci-Fi|Thriller     15
## 1623  2000                                              Comedy|Crime     15
## 1624  1931                                      Comedy|Drama|Romance     15
## 1625  2000                                           Action|Thriller     15
## 1626  2000                                              Comedy|Drama     15
## 1627  1999                                            Drama|Thriller     15
## 1628  1999                                      Comedy|Drama|Romance     15
## 1629  1999                                               Crime|Drama     15
## 1630  1991                              Comedy|Drama|Fantasy|Romance     15
## 1631  1988                                      Comedy|Drama|Romance     15
## 1632  1975                                               Crime|Drama     15
## 1633  1991                                    Drama|Mystery|Thriller     15
## 1634  1986                             Adventure|Crime|Drama|Romance     15
## 1635  2000                                                     Drama     15
## 1636  2000                                            Drama|Thriller     15
## 1637  1991                                     Adventure|Crime|Drama     15
## 1638  1978                                                    Comedy     15
## 1639  1989                                          Animation|Comedy     15
## 1640  1944                                     Crime|Drama|Film-Noir     15
## 1641  1987                                          Comedy|Drama|War     15
## 1642  1963                                  Adventure|Drama|Thriller     15
## 1643  1936                                      Comedy|Drama|Romance     15
## 1644  1977                                    Adventure|Drama|Sci-Fi     15
## 1645  1990                                            Horror|Mystery     15
## 1646  1995                                              Comedy|Drama     15
## 1647  2000                                      Comedy|Drama|Romance     15
## 1648  2000                                                  Thriller     15
## 1649  1991                                  Adventure|Comedy|Fantasy     15
## 1650  1990                                     Drama|Horror|Thriller     15
## 1651  1976                                              Comedy|Drama     15
## 1652  1987                                    Drama|Mystery|Thriller     15
## 1653  2000                                            Drama|Thriller     15
## 1654  2000                                             Drama|Romance     15
## 1655  1987                                    Action|Sci-Fi|Thriller     15
## 1656  2000                                                     Drama     15
## 1657  2000                             Crime|Horror|Mystery|Thriller     15
## 1658  2000                                      Comedy|Drama|Romance     15
## 1659  1999                                                    Comedy     15
## 1660  1982                                              Comedy|Drama     15
## 1661  1980                                                    Comedy     15
## 1662  2000                                       Action|Thriller|War     15
## 1663  1999                                             Drama|Romance     15
## 1664  2000                                              Comedy|Drama     15
## 1665  1998                                              Comedy|Drama     15
## 1666  2000                                              Comedy|Drama     15
## 1667  1988                                             Drama|Romance     15
## 1668  2000                                    Action|Adventure|Drama     15
## 1669  2000                              Crime|Drama|Romance|Thriller     15
## 1670  2000                                                    Comedy     15
## 1671  2000                                              Comedy|Crime     15
## 1672  2000                                 Action|Adventure|Thriller     15
## 1673  2000                           Action|Adventure|Comedy|Western     15
## 1674  1999                                                    Comedy     15
## 1675  1969                         Action|Adventure|Romance|Thriller     15
## 1676  1964                                                  Thriller     15
## 1677  1977                                 Action|Adventure|Thriller     15
## 1678  1979                          Action|Adventure|Sci-Fi|Thriller     15
## 1679  1974                                 Action|Adventure|Thriller     15
## 1680  1974                                            Comedy|Western     15
## 1681  1984                                     Crime|Drama|Film-Noir     15
## 1682  1986                                             Drama|Romance     15
## 1683  2000                                              Action|Crime     15
## 1684  1992                            Crime|Drama|Film-Noir|Thriller     15
## 1685  1974                                             Drama|Mystery     15
## 1686  1973                                               Crime|Drama     15
## 1687  1925                                                 Drama|War     15
## 1688  2000                Action|Adventure|Animation|Children|Sci-Fi     15
## 1689  1999                                                     Drama     15
## 1690  2000                                 Animation|Children|Comedy     15
## 1691  2000                                          Adventure|Comedy     15
## 1692  2000                                            Drama|Thriller     15
## 1693  1986                                     Action|Crime|Thriller     15
## 1694  1998                                               Crime|Drama     15
## 1695  2000                                             Comedy|Horror     15
## 1696  1999                                                    Comedy     15
## 1697  1999                                                    Comedy     15
## 1698  1966                                             Drama|Mystery     15
## 1699  2000                                   Action|Adventure|Sci-Fi     15
## 1700  2000                                              Comedy|Drama     15
## 1701  2000                                      Drama|Horror|Mystery     15
## 1702  1999                              Crime|Drama|Romance|Thriller     15
## 1703  1959                                             Drama|Mystery     15
## 1704  1999                                                     Drama     15
## 1705  2000                                      Comedy|Drama|Romance     15
## 1706  2000                                    Horror|Sci-Fi|Thriller     15
## 1707  2000                            Action|Adventure|Comedy|Sci-Fi     15
## 1708  2000                                                    Comedy     15
## 1709  1999                                         Drama|Romance|War     15
## 1710  2000                                                    Comedy     15
## 1711  2000                                     Drama|Horror|Thriller     15
## 1712  1988                               Action|Comedy|Crime|Romance     15
## 1713  2000                                                    Comedy     15
## 1714  2000                                                    Horror     15
## 1715  2000                       Comedy|Crime|Drama|Romance|Thriller     15
## 1716  2000                                            Crime|Thriller     15
## 1717  2000                                                     Drama     15
## 1718  2000                                             Drama|Musical     15
## 1719  2000                                                    Comedy     15
## 1720  2000                                                     Drama     15
## 1721  2000                                                    Comedy     15
## 1722  2000                                                    Comedy     15
## 1723  2000                                                     Drama     15
## 1724  2000                                            Drama|Thriller     15
## 1725  2000                                     Drama|Horror|Thriller     15
## 1726  2000                                                     Drama     15
## 1727  2000                                                    Comedy     15
## 1728  2000                                                     Drama     15
## 1729  2000                                             Action|Comedy     15
## 1730  2000                                                    Comedy     15
## 1731  2000                                    Action|Sci-Fi|Thriller     15
## 1732  2000                                             Drama|Romance     15
## 1733  1971                                 Action|Adventure|Thriller     15
## 1734  2000                                    Action|Sci-Fi|Thriller     15
## 1735  2000                                             Drama|Romance     15
## 1736  2000                                   Children|Comedy|Fantasy     15
## 1737  1999                                               Documentary     15
## 1738  2000                                 Animation|Children|Comedy     15
## 1739  2000                                             Drama|Romance     15
## 1740  2000                                              Drama|Sci-Fi     15
## 1741  2000                                      Action|Drama|Romance     15
## 1742  2000                                                     Drama     15
## 1743  2000                                          Action|Adventure     15
## 1744  1987                                 Action|Adventure|Thriller     15
## 1745  1986                       Adventure|Animation|Children|Sci-Fi     15
## 1746  1987                                                     Drama     15
## 1747  1985                                                    Comedy     15
## 1748  2000                                     Comedy|Crime|Thriller     15
## 1749  2000                                             Drama|Romance     15
## 1750  2000                                             Comedy|Sci-Fi     15
## 1751  2000                                                     Drama     15
## 1752  2000                                            Comedy|Romance     15
## 1753  2000                                                     Drama     15
## 1754  2000                                                  Thriller     15
## 1755  2000                                                     Drama     15
## 1756  2000                                                     Drama     15
## 1757  2000                                      Comedy|Drama|Romance     15
## 1758  2000                                              Comedy|Crime     15
## 1759  2000                                    Adventure|Comedy|Crime     15
## 1760  2000                                              Comedy|Drama     15
## 1761  2000                                                    Horror     15
## 1762  2000                                        Drama|Thriller|War     15
## 1763  2000                                      Crime|Drama|Thriller     15
## 1764  2000                                              Drama|Horror     15
## 1765  1987                          Crime|Film-Noir|Mystery|Thriller     15
## 1766  2001                                      Crime|Drama|Thriller     15
## 1767  2000                                                     Drama     15
## 1768  2001                              Crime|Drama|Mystery|Thriller     15
## 1769  1988                                             Action|Comedy     15
## 1770  1987                                             Comedy|Sci-Fi     15
## 1771  1987                                      Comedy|Drama|Romance     15
## 1772  1984                                 Action|Comedy|Crime|Drama     15
## 1773  1987                            Action|Adventure|Comedy|Sci-Fi     15
## 1774  2000                                             Drama|Romance     15
## 1775  2001                                           Horror|Thriller     15
## 1776  2001                                            Comedy|Romance     15
## 1777  2001                                  Animation|Comedy|Fantasy     15
## 1778  2001                                             Action|Comedy     15
## 1779  2001                                                  Thriller     15
## 1780  2001                                            Comedy|Romance     15
## 1781  1986                        Action|Crime|Drama|Horror|Thriller     15
## 1782  2001                                                 Drama|War     15
## 1783  2001                                                    Comedy     15
## 1784  2000                                          Mystery|Thriller     15
## 1785  2001                          Action|Adventure|Children|Comedy     15
## 1786  2000                                            Drama|Thriller     15
## 1787  2001                             Action|Crime|Mystery|Thriller     15
## 1788  2001                                               Crime|Drama     15
## 1789  2001                                      Comedy|Drama|Romance     15
## 1790  2001                          Adventure|Comedy|Mystery|Romance     15
## 1791  1983                                        Action|Crime|Drama     15
## 1792  2001                          Action|Adventure|Comedy|Thriller     15
## 1793  2000                                                     Drama     15
## 1794  2001                                     Action|Comedy|Romance     15
## 1795  2000                                                     Drama     15
## 1796  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     15
## 1797  2001                                     Drama|Musical|Romance     15
## 1798  2001                                  Action|Drama|Romance|War     15
## 1799  1991                                            Comedy|Western     15
## 1800  1988                                                     Drama     15
## 1801  2001                                             Comedy|Sci-Fi     15
## 1802  2001                                        Action|Crime|Drama     15
## 1803  1991                                     Action|Crime|Thriller     15
## 1804  1982                                            Comedy|Romance     15
## 1805  2001                                          Action|Adventure     15
## 1806  2001                                     Action|Crime|Thriller     15
## 1807  2001                                    Adventure|Drama|Sci-Fi     15
## 1808  2001                                             Drama|Romance     15
## 1809  2000                                               Crime|Drama     15
## 1810  2000                                             Drama|Romance     15
## 1811  2001                                                    Comedy     15
## 1812  2000                              Crime|Drama|Mystery|Thriller     15
## 1813  2001                                           Children|Comedy     15
## 1814  2001                                                    Comedy     15
## 1815  1986                                        Comedy|Crime|Drama     15
## 1816  2001                        Adventure|Animation|Fantasy|Sci-Fi     15
## 1817  2001                                            Comedy|Romance     15
## 1818  2001                                              Action|Drama     15
## 1819  2001                                      Crime|Drama|Thriller     15
## 1820  2001                                      Comedy|Drama|Romance     15
## 1821  1988                                            Comedy|Romance     15
## 1822  1988                                            Drama|Thriller     15
## 1823  1989                                   Adventure|Comedy|Sci-Fi     15
## 1824  1989                                            Comedy|Romance     15
## 1825  1989                                                    Comedy     15
## 1826  2001                          Action|Adventure|Sci-Fi|Thriller     15
## 1827  2001                                            Comedy|Romance     15
## 1828  2001                                              Comedy|Drama     15
## 1829  2000                                      Comedy|Drama|Musical     15
## 1830  2001                             Action|Adventure|Drama|Sci-Fi     15
## 1831  1989                                              Action|Drama     15
## 1832  1989                             Drama|Horror|Mystery|Thriller     15
## 1833  1989                                                    Comedy     15
## 1834  1989                                             Action|Comedy     15
## 1835  1989                                                    Comedy     15
## 1836  1989                                                    Comedy     15
## 1837  2001                                   Children|Comedy|Romance     15
## 1838  2001                                             Action|Comedy     15
## 1839  1980                                              Drama|Sci-Fi     15
## 1840  2001                                                    Comedy     15
## 1841  2001      Action|Animation|Comedy|Crime|Drama|Romance|Thriller     15
## 1842  2001                             Drama|Horror|Mystery|Thriller     15
## 1843  2001                                                     Drama     15
## 1844  2001                                         Drama|Romance|War     15
## 1845  2001                                                    Comedy     15
## 1846  2000                                                     Drama     15
## 1847  2001                                          Adventure|Comedy     15
## 1848  2000                                            Romance|Sci-Fi     15
## 1849  2001                                                    Horror     15
## 1850  2001                                      Crime|Drama|Thriller     15
## 1851  2001                                                    Comedy     15
## 1852  2001                                            Comedy|Romance     15
## 1853  2001                                      Comedy|Crime|Romance     15
## 1854  2001                    Crime|Drama|Film-Noir|Mystery|Thriller     15
## 1855  2001                                   Animation|Drama|Fantasy     15
## 1856  2001                             Drama|Mystery|Sci-Fi|Thriller     15
## 1857  2001                                               Crime|Drama     15
## 1858  2001               Adventure|Animation|Children|Comedy|Fantasy     15
## 1859  2001                                                     Drama     15
## 1860  2001                                    Comedy|Fantasy|Romance     15
## 1861  2001                                Adventure|Children|Fantasy     15
## 1862  2001                               Action|Crime|Drama|Thriller     15
## 1863  2001                         Drama|Fantasy|Horror|Thriller|War     15
## 1864  2001                                                     Drama     15
## 1865  1960                                       Crime|Drama|Romance     15
## 1866  2001                                          Action|Drama|War     15
## 1867  2001                                            Crime|Thriller     15
## 1868  2001                                            Comedy|Romance     15
## 1869  2001                                                    Comedy     15
## 1870  2001                           Mystery|Romance|Sci-Fi|Thriller     15
## 1871  2001                                              Comedy|Drama     15
## 1872  2001                                            Comedy|Romance     15
## 1873  2001                                         Adventure|Fantasy     15
## 1874  2001                                             Drama|Romance     15
## 1875  1969                                             Drama|Romance     15
## 1876  1957                                    Drama|Mystery|Thriller     15
## 1877  2001                                          Action|Drama|War     15
## 1878  2001                                      Comedy|Drama|Mystery     15
## 1879  2001                                             Drama|Romance     15
## 1880  2001                                   Action|Mystery|Thriller     15
## 1881  1970                                          Comedy|Drama|War     15
## 1882  2002                                             Drama|Romance     15
## 1883  2000                                             Drama|Romance     15
## 1884  2001                                              Comedy|Drama     15
## 1885  2000                                                    Comedy     15
## 1886  2001                                      Comedy|Crime|Mystery     15
## 1887  1972                                   Comedy|Mystery|Thriller     15
## 1888  2002                                            Fantasy|Horror     15
## 1889  2001                                            Comedy|Romance     15
## 1890  2002                                       Action|Comedy|Crime     15
## 1891  2002                                   Action|Adventure|Sci-Fi     15
## 1892  2002                       Adventure|Animation|Children|Comedy     15
## 1893  2002                             Action|Horror|Sci-Fi|Thriller     15
## 1894  2002                                             Action|Comedy     15
## 1895  2001                                            Comedy|Romance     15
## 1896  2001                                             Drama|Romance     15
## 1897  2002                                    Action|Horror|Thriller     15
## 1898  2002                                                  Thriller     15
## 1899  2001                                                     Drama     15
## 1900  1991                                            Comedy|Romance     15
## 1901  2002                                                    Comedy     15
## 1902  1950                                       Crime|Drama|Mystery     15
## 1903  2002                                            Drama|Thriller     15
## 1904  2002                                            Comedy|Romance     15
## 1905  2001                                            Comedy|Romance     15
## 1906  2002                                            Comedy|Romance     15
## 1907  1987                                                    Comedy     15
## 1908  2002                         Action|Adventure|Fantasy|Thriller     15
## 1909  2000                                            Crime|Thriller     15
## 1910  1992                                              Comedy|Drama     15
## 1911  1990                                             Drama|Romance     15
## 1912  2002                          Action|Adventure|Sci-Fi|Thriller     15
## 1913  2002                                                    Comedy     15
## 1914  2002                                            Drama|Thriller     15
## 1915  2002                                      Comedy|Drama|Romance     15
## 1916  2002                              Action|Adventure|Sci-Fi|IMAX     15
## 1917  2002                       Action|Crime|Drama|Mystery|Thriller     15
## 1918  2001                                                     Drama     15
## 1919  2002                                            Drama|Thriller     15
## 1920  1972                                              Drama|Sci-Fi     15
## 1921  2002                                     Comedy|Drama|Thriller     15
## 1922  2002                                   Action|Mystery|Thriller     15
## 1923  2002                 Adventure|Children|Comedy|Fantasy|Mystery     15
## 1924  2002                       Adventure|Animation|Children|Sci-Fi     15
## 1925  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     15
## 1926  2002                                            Comedy|Romance     15
## 1927  2002                                   Children|Comedy|Fantasy     15
## 1928  2002                                      Action|Comedy|Sci-Fi     15
## 1929  2002                                  Action|Adventure|Fantasy     15
## 1930  2002                                               Crime|Drama     15
## 1931  2001                                             Drama|Romance     15
## 1932  2002                               Action|Comedy|Horror|Sci-Fi     15
## 1933  2002                                                    Comedy     15
## 1934  1984                                                    Comedy     15
## 1935  2002                                    Horror|Sci-Fi|Thriller     15
## 1936  2002                                        Adventure|Children     15
## 1937  2002                                     Action|Crime|Thriller     15
## 1938  2002                                      Comedy|Drama|Musical     15
## 1939  2000                                                     Drama     15
## 1940  2002                                   Adventure|Drama|Romance     15
## 1941  2002                                            Drama|Thriller     15
## 1942  1991                                 Action|Comedy|Romance|War     15
## 1943  1987                             Comedy|Crime|Romance|Thriller     15
## 1944  1984                                                    Comedy     15
## 1945  2002                                              Comedy|Drama     15
## 1946  2002                                      Comedy|Drama|Romance     15
## 1947  2001                               Adventure|Animation|Fantasy     15
## 1948  2002                                            Comedy|Romance     15
## 1949  2002                                    Crime|Mystery|Thriller     15
## 1950  1983                                                    Comedy     15
## 1951  1997                                   Comedy|Romance|Thriller     15
## 1952  2002                                               Documentary     15
## 1953  2002                                      Comedy|Drama|Romance     15
## 1954  2002                                   Horror|Mystery|Thriller     15
## 1955  2002                                             Drama|Romance     15
## 1956  2002                                              Comedy|Drama     15
## 1957  2002                                            Crime|Thriller     15
## 1958  2002                                         Adventure|Fantasy     15
## 1959  2002                                 Action|Adventure|Thriller     15
## 1960  2002                                             Drama|Romance     15
## 1961  1994                                      Crime|Drama|Thriller     15
## 1962  2002                                      Comedy|Drama|Romance     15
## 1963  2002                                    Action|Sci-Fi|Thriller     15
## 1964  2001                                       Comedy|Drama|Horror     15
## 1965  2002                                              Comedy|Drama     15
## 1966  2002                                         Adventure|Fantasy     15
## 1967  2002                                               Crime|Drama     15
## 1968  2002                                               Crime|Drama     15
## 1969  2002                                            Comedy|Romance     15
## 1970  2002                                      Crime|Drama|Thriller     15
## 1971  1990                                        Comedy|Crime|Drama     15
## 1972  2002                                               Crime|Drama     15
## 1973  2002                                Comedy|Crime|Drama|Musical     15
## 1974  2002                                                 Drama|War     15
## 1975  2002                               Comedy|Crime|Drama|Thriller     15
## 1976  2002                     Action|Adventure|Crime|Drama|Thriller     15
## 1977  1993                                                    Comedy     15
## 1978  1982                                      Comedy|Drama|Romance     15
## 1979  2003                                           Action|Thriller     15
## 1980  2003                                            Comedy|Romance     15
## 1981  2003                                              Action|Crime     15
## 1982  1990                                               Crime|Drama     15
## 1983  2003                                                    Comedy     15
## 1984  1991                                                    Comedy     15
## 1985  2002                                      Comedy|Drama|Romance     15
## 1986  1973                                      Comedy|Drama|Romance     15
## 1987  2002                                            Drama|Thriller     15
## 1988  2001                          Action|Animation|Sci-Fi|Thriller     15
## 1989  2003                                                    Comedy     15
## 1990  2003                                            Comedy|Musical     15
## 1991  2001                                               Documentary     15
## 1992  1971                                            Mystery|Sci-Fi     15
## 1993  2003                                               Documentary     15
## 1994  2002                                               Documentary     15
## 1995  2003                          Action|Adventure|Sci-Fi|Thriller     15
## 1996  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 1997  2003                              Comedy|Drama|Fantasy|Romance     15
## 1998  2003                       Adventure|Animation|Children|Comedy     15
## 1999  2003                                              Action|Crime     15
## 2000  2003                                               Documentary     15
## 2001  2002                                                     Drama     15
## 2002  1929                                               Documentary     15
## 2003  1991                                            Drama|Thriller     15
## 2004  1992                                            Comedy|Romance     15
## 2005  1997                                           Children|Comedy     15
## 2006  2002                                      Action|Horror|Sci-Fi     15
## 2007  2003                    Action|Adventure|Comedy|Crime|Thriller     15
## 2008  2003                                   Action|Adventure|Sci-Fi     15
## 2009  2003                                   Action|Adventure|Sci-Fi     15
## 2010  2003                           Action|Adventure|Comedy|Fantasy     15
## 2011  2003                                             Drama|Fantasy     15
## 2012  2002                                      Crime|Drama|Thriller     15
## 2013  2003                                                    Comedy     15
## 2014  2003                                   Children|Comedy|Fantasy     15
## 2015  2003                                              Comedy|Drama     15
## 2016  2000                                                     Drama     15
## 2017  1949                                              Comedy|Drama     15
## 2018  2003                                        Comedy|Crime|Drama     15
## 2019  2003                                      Comedy|Drama|Romance     15
## 2020  2003                                     Action|Fantasy|Horror     15
## 2021  2003                                  Animation|Comedy|Fantasy     15
## 2022  1939                                              Comedy|Drama     15
## 2023  1976                                            Drama|Thriller     15
## 2024  1987                                                    Comedy     15
## 2025  2000                                     Drama|Horror|Thriller     15
## 2026  2003                                            Comedy|Musical     15
## 2027  2003                                              Comedy|Drama     15
## 2028  2003                                       Crime|Drama|Mystery     15
## 2029  2003                                            Comedy|Romance     15
## 2030  2003                                     Action|Crime|Thriller     15
## 2031  2003                                      Comedy|Drama|Romance     15
## 2032  2003                                            Drama|Thriller     15
## 2033  2003                      Crime|Drama|Mystery|Romance|Thriller     15
## 2034  2003                                               Crime|Drama     15
## 2035  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2036  2003                                   Children|Comedy|Fantasy     15
## 2037  2003                                      Comedy|Drama|Romance     15
## 2038  1991                                                    Comedy     15
## 2039  2003                                       Adventure|Drama|War     15
## 2040  2003                      Crime|Drama|Mystery|Romance|Thriller     15
## 2041  2003                                              Comedy|Crime     15
## 2042  1992                                                     Drama     15
## 2043  1997                                     Drama|Horror|Thriller     15
## 2044  1991                                              Comedy|Drama     15
## 2045  1983                                     Drama|Sci-Fi|Thriller     15
## 2046  1983                                      Crime|Drama|Thriller     15
## 2047  1991                      Comedy|Drama|Mystery|Sci-Fi|Thriller     15
## 2048  1990                              Action|Comedy|Crime|Thriller     15
## 2049  1972                                             Drama|Romance     15
## 2050  1992                                             Drama|Romance     15
## 2051  1990                                              Comedy|Crime     15
## 2052  1998                                             Drama|Romance     15
## 2053  2002                                    Action|Adventure|Drama     15
## 2054  1991                              Drama|Fantasy|Mystery|Sci-Fi     15
## 2055  1935                                    Comedy|Musical|Romance     15
## 2056  2003                                Action|Adventure|Drama|War     15
## 2057  2003                                     Drama|Fantasy|Romance     15
## 2058  2003                            Action|Adventure|Drama|Fantasy     15
## 2059  2003                                           Documentary|War     15
## 2060  2003                                         Drama|Romance|War     15
## 2061  2004                                            Comedy|Romance     15
## 2062  2003                                              Comedy|Drama     15
## 2063  2004                                     Drama|Sci-Fi|Thriller     15
## 2064  2003                                                     Drama     15
## 2065  2004                                            Comedy|Romance     15
## 2066  2004                                          Adventure|Comedy     15
## 2067  2003                                              Comedy|Drama     15
## 2068  2004                              Action|Comedy|Crime|Thriller     15
## 2069  1966                                                     Drama     15
## 2070  2004                                            Comedy|Romance     15
## 2071  2004                                                  Thriller     15
## 2072  2004                                      Drama|Romance|Sci-Fi     15
## 2073  2003                                    Drama|Mystery|Thriller     15
## 2074  2004                           Action|Adventure|Fantasy|Horror     15
## 2075  2004                                     Action|Drama|Thriller     15
## 2076  2004                                    Comedy|Fantasy|Romance     15
## 2077  2004                       Action|Crime|Drama|Mystery|Thriller     15
## 2078  2004                                                    Comedy     15
## 2079  2004                                Action|Adventure|Drama|War     15
## 2080  1970                                               Documentary     15
## 2081  1990                                                     Drama     15
## 2082  1964                                        Drama|Thriller|War     15
## 2083  1967                          Action|Adventure|Sci-Fi|Thriller     15
## 2084  1983                                 Action|Adventure|Thriller     15
## 2085  1979                                            Drama|Thriller     15
## 2086  1974                                                  Thriller     15
## 2087  1958                                          Action|Adventure     15
## 2088  2002                                               Documentary     15
## 2089  1975                                               Documentary     15
## 2090  2004       Adventure|Animation|Children|Comedy|Musical|Romance     15
## 2091  2004                    Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2092  2004                                              Comedy|Drama     15
## 2093  2004                                    Adventure|Fantasy|IMAX     15
## 2094  2004                                                    Comedy     15
## 2095  2004                                  Comedy|Documentary|Drama     15
## 2096  2004                                                    Comedy     15
## 2097  2004                                      Comedy|Drama|Romance     15
## 2098  2004                                       Action|Comedy|Crime     15
## 2099  1999                                         Documentary|Drama     15
## 2100  1992                                           Documentary|War     15
## 2101  2004                                               Documentary     15
## 2102  1987                                            Comedy|Romance     15
## 2103  2004                              Action|Adventure|Sci-Fi|IMAX     15
## 2104  2004                                             Drama|Romance     15
## 2105  2004                                                    Comedy     15
## 2106  2004                          Action|Adventure|Sci-Fi|Thriller     15
## 2107  2004                                               Crime|Drama     15
## 2108  2004                                     Action|Crime|Thriller     15
## 2109  2004                                                  Thriller     15
## 2110  2004                                      Comedy|Drama|Romance     15
## 2111  2004                               Action|Crime|Drama|Thriller     15
## 2112  2004                                          Adventure|Comedy     15
## 2113  2004                                   Action|Adventure|Sci-Fi     15
## 2114  2004                                             Comedy|Horror     15
## 2115  2004                                                    Comedy     15
## 2116  2004                                              Drama|Sci-Fi     15
## 2117  2004                         Action|Adventure|Animation|Comedy     15
## 2118  2003                                               Documentary     15
## 2119  2004                                      Comedy|Drama|Romance     15
## 2120  2004                                      Comedy|Drama|Romance     15
## 2121  2004                                    Drama|Mystery|Thriller     15
## 2122  2004                                   Horror|Mystery|Thriller     15
## 2123  2004                                                     Drama     15
## 2124  2004                Action|Adventure|Animation|Children|Comedy     15
## 2125  2004                                                     Drama     15
## 2126  2004                   Action|Adventure|Drama|Mystery|Thriller     15
## 2127  2004                       Adventure|Animation|Children|Comedy     15
## 2128  2004                              Action|Comedy|Crime|Thriller     15
## 2129  1966                                                 Drama|War     15
## 2130  1966                                   Action|Adventure|Comedy     15
## 2131  1989                                       Crime|Drama|Romance     15
## 2132  1991                                               Documentary     15
## 2133  1993                                                     Drama     15
## 2134  1998                                             Drama|Romance     15
## 2135  2002                                                    Comedy     15
## 2136  2003                             Action|Animation|Drama|Sci-Fi     15
## 2137  2003                                          Mystery|Thriller     15
## 2138  2005                                            Drama|Thriller     15
## 2139  2003                                               Documentary     15
## 2140  2006                   Animation|Drama|Mystery|Sci-Fi|Thriller     15
## 2141  2004                                                     Drama     15
## 2142  2004                                                 Drama|War     15
## 2143  2004                                  Adventure|Comedy|Fantasy     15
## 2144  2004                                                     Drama     15
## 2145  2004                                                    Comedy     15
## 2146  2005                                            Comedy|Romance     15
## 2147  2005                            Action|Fantasy|Horror|Thriller     15
## 2148  2005                   Action|Crime|Film-Noir|Mystery|Thriller     15
## 2149  2005                                   Adventure|Comedy|Sci-Fi     15
## 2150  2005                                               Documentary     15
## 2151  2004                                               Crime|Drama     15
## 2152  2005                                   Action|Adventure|Sci-Fi     15
## 2153  2005                           Action|Adventure|Comedy|Romance     15
## 2154  2005                                         Action|Crime|IMAX     15
## 2155  2005                          Action|Adventure|Sci-Fi|Thriller     15
## 2156  2005                                               Documentary     15
## 2157  2005                                   Action|Adventure|Sci-Fi     15
## 2158  2005                                            Comedy|Romance     15
## 2159  2005                                    Action|Sci-Fi|Thriller     15
## 2160  2005                          Action|Adventure|Sci-Fi|Thriller     15
## 2161  2005                                   Action|Adventure|Sci-Fi     15
## 2162  2005                                               Documentary     15
## 2163  2005                                            Comedy|Romance     15
## 2164  2005                                           Horror|Thriller     15
## 2165  2005                                            Drama|Thriller     15
## 2166  2005                           Action|Crime|Drama|Thriller|War     15
## 2167  2005                                             Action|Sci-Fi     15
## 2168  2005                  Animation|Comedy|Fantasy|Musical|Romance     15
## 2169  2005                                               Crime|Drama     15
## 2170  2005                             Comedy|Crime|Mystery|Thriller     15
## 2171  2005                                              Comedy|Drama     15
## 2172  2005                                               Crime|Drama     15
## 2173  2005                                            Drama|Thriller     15
## 2174  2005                           Adventure|Fantasy|Thriller|IMAX     15
## 2175  2005                               Action|Crime|Drama|Thriller     15
## 2176  2004                                       Action|Crime|Sci-Fi     15
## 2177  2006                                            Comedy|Romance     15
## 2178  2006                               Action|Sci-Fi|Thriller|IMAX     15
## 2179  2006                                              Comedy|Drama     15
## 2180  2006                                      Crime|Drama|Thriller     15
## 2181  2006                                    Drama|Romance|Thriller     15
## 2182  1963                                      Action|Crime|Mystery     15
## 2183  2006                                       Crime|Drama|Mystery     15
## 2184  2005                             Crime|Drama|Film-Noir|Mystery     15
## 2185  2006                                               Documentary     15
## 2186  2006                                 Action|Adventure|Thriller     15
## 2187  2006                                    Drama|Mystery|Thriller     15
## 2188  2006                                    Action|Sci-Fi|Thriller     15
## 2189  2006                                 Animation|Children|Comedy     15
## 2190  2006                                                    Comedy     15
## 2191  2006                    Adventure|Comedy|Drama|Fantasy|Romance     15
## 2192  2006                                              Comedy|Drama     15
## 2193  2006                                  Action|Adventure|Fantasy     15
## 2194  2006                                                    Comedy     15
## 2195  2006                                               Documentary     15
## 2196  2006                              Action|Adventure|Sci-Fi|IMAX     15
## 2197  2006                                    Adventure|Comedy|Drama     15
## 2198  2006                                            Drama|Thriller     15
## 2199  2006                                             Action|Comedy     15
## 2200  2006                                Action|Comedy|Fantasy|IMAX     15
## 2201  2006                              Comedy|Drama|Fantasy|Romance     15
## 2202  2006                             Drama|Fantasy|Mystery|Romance     15
## 2203  2006                                         Documentary|Drama     15
## 2204  2006                                     Drama|Fantasy|Romance     15
## 2205  2006                              Comedy|Drama|Fantasy|Romance     15
## 2206  2006                                                    Comedy     15
## 2207  2006                                    Drama|Fantasy|Thriller     15
## 2208  2006                                      Crime|Drama|Thriller     15
## 2209  2006                    Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2210  2006                             Drama|Mystery|Sci-Fi|Thriller     15
## 2211  2006                                 Action|Adventure|Thriller     15
## 2212  2006                                    Action|Sci-Fi|Thriller     15
## 2213  2006                                            Comedy|Romance     15
## 2214  2006                                               Documentary     15
## 2215  2007                                  Animation|Children|Drama     15
## 2216  2007                                            Drama|Thriller     15
## 2217  2007                               Action|Comedy|Crime|Mystery     15
## 2218  2007                                      Crime|Drama|Thriller     15
## 2219  2007                                   Action|Fantasy|War|IMAX     15
## 2220  2007                                            Comedy|Romance     15
## 2221  2007                           Adventure|Drama|Sci-Fi|Thriller     15
## 2222  2007                              Crime|Drama|Mystery|Thriller     15
## 2223  2007                     Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2224  2007                                      Comedy|Drama|Romance     15
## 2225  2007                                            Crime|Thriller     15
## 2226  2007                                   Action|Adventure|Sci-Fi     15
## 2227  2007                                         Documentary|Drama     15
## 2228  2007                           Action|Adventure|Crime|Thriller     15
## 2229  2007                               Action|Sci-Fi|Thriller|IMAX     15
## 2230  2007                              Adventure|Drama|Fantasy|IMAX     15
## 2231  2007                                          Animation|Comedy     15
## 2232  2007                                     Action|Crime|Thriller     15
## 2233  2006                              Crime|Drama|Mystery|Thriller     15
## 2234  2007                                                    Comedy     15
## 2235  2007                                               Documentary     15
## 2236  2007                                    Action|Adventure|Drama     15
## 2237  2007                                    Adventure|Comedy|Drama     15
## 2238  2007                                            Drama|Thriller     15
## 2239  2007                                           Animation|Drama     15
## 2240  2007                                      Crime|Drama|Thriller     15
## 2241  2007                                               Crime|Drama     15
## 2242  2008                                                    Comedy     15
## 2243  2007                        Action|Horror|Sci-Fi|Thriller|IMAX     15
## 2244  2007                                      Comedy|Drama|Romance     15
## 2245  2007                                               Documentary     15
## 2246  2007                                          Action|Adventure     15
## 2247  2007                                             Drama|Western     15
## 2248  2008                            Action|Mystery|Sci-Fi|Thriller     15
## 2249  2008                           Action|Adventure|Fantasy|Sci-Fi     15
## 2250  2008                               Comedy|Crime|Drama|Thriller     15
## 2251  2008                    Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2252  2008                                     Action|Crime|Thriller     15
## 2253  2008                                   Action|Crime|Drama|IMAX     15
## 2254  2008                                            Comedy|Romance     15
## 2255  2008                                        Comedy|Documentary     15
## 2256  2008                                   Action|Adventure|Sci-Fi     15
## 2257  2008                               Action|Crime|Drama|Thriller     15
## 2258  2006                                                     Drama     15
## 2259  2008                            Action|Adventure|Comedy|Sci-Fi     15
## 2260  2008                     Action|Animation|Children|Comedy|IMAX     15
## 2261  2008                                                    Comedy     15
## 2262  2008                                     Drama|Sci-Fi|Thriller     15
## 2263  2008                                             Action|Sci-Fi     15
## 2264  2008               Adventure|Animation|Children|Romance|Sci-Fi     15
## 2265  2008                                           Action|Thriller     15
## 2266  2008                     Action|Adventure|Comedy|Crime|Fantasy     15
## 2267  2008                                             Action|Comedy     15
## 2268  2007                                               Documentary     15
## 2269  2009                 Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     15
## 2270  2008                                               Documentary     15
## 2271  2008                                       Action|Comedy|Crime     15
## 2272  2008                               Action|Adventure|Comedy|War     15
## 2273  2008                                        Comedy|Crime|Drama     15
## 2274  2008                                                    Comedy     15
## 2275  2008                                     Action|Drama|Thriller     15
## 2276  2008                                      Comedy|Drama|Romance     15
## 2277  2008                                              Comedy|Drama     15
## 2278  2008                                       Crime|Drama|Romance     15
## 2279  2008                                 Action|Adventure|Thriller     15
## 2280  2008                                                    Comedy     15
## 2281  2008                Action|Adventure|Animation|Children|Comedy     15
## 2282  2008                                                     Drama     15
## 2283  2008                                                     Drama     15
## 2284  2008                             Drama|Fantasy|Mystery|Romance     15
## 2285  2007                                           Sci-Fi|Thriller     15
## 2286  2009                                       Action|Comedy|Crime     15
## 2287  2009                                Animation|Fantasy|Thriller     15
## 2288  2008                                              Action|Drama     15
## 2289  2009                                      Comedy|Drama|Romance     15
## 2290  2009                                      Comedy|Crime|Mystery     15
## 2291  2009                                      Comedy|Drama|Romance     15
## 2292  2008                               Comedy|Drama|Musical|Sci-Fi     15
## 2293  2009                                                    Comedy     15
## 2294  2009                                    Crime|Romance|Thriller     15
## 2295  2008                                       Documentary|Musical     15
## 2296  2009                                              Comedy|Drama     15
## 2297  2009                                                    Comedy     15
## 2298  2009                                          Action|Drama|War     15
## 2299  2009                                      Crime|Drama|Thriller     15
## 2300  2009                             Drama|Mystery|Sci-Fi|Thriller     15
## 2301  2009                                    Action|Sci-Fi|Thriller     15
## 2302  2009                                                     Drama     15
## 2303  2009                              Action|Adventure|Sci-Fi|IMAX     15
## 2304  2009                          Action|Adventure|Sci-Fi|Thriller     15
## 2305  2009                                        Action|Comedy|IMAX     15
## 2306  2009                        Adventure|Animation|Children|Drama     15
## 2307  2009                                              Comedy|Crime     15
## 2308  2009                                      Crime|Drama|Thriller     15
## 2309  2009                                            Comedy|Romance     15
## 2310  2009                                          Adventure|Comedy     15
## 2311  2008                                 Action|Drama|Thriller|War     15
## 2312  1989                                 Action|Adventure|Thriller     15
## 2313  2009                              Action|Adventure|Sci-Fi|IMAX     15
## 2314  2009                                   Mystery|Sci-Fi|Thriller     15
## 2315  2009                                      Comedy|Drama|Romance     15
## 2316  2009                          Action|Adventure|Sci-Fi|Thriller     15
## 2317  2009                         Action|Adventure|Children|Fantasy     15
## 2318  2008                                               Documentary     15
## 2319  2009                               Comedy|Crime|Drama|Thriller     15
## 2320  2009                           Animation|Children|Fantasy|IMAX     15
## 2321  2008                                               Documentary     15
## 2322  2009                                               Documentary     15
## 2323  2009                                              Comedy|Drama     15
## 2324  2009                                      Action|Comedy|Horror     15
## 2325  2009                                            Drama|Thriller     15
## 2326  2009                                             Drama|Romance     15
## 2327  2009                 Adventure|Animation|Children|Comedy|Crime     15
## 2328  2009                              Action|Drama|Sci-Fi|Thriller     15
## 2329  2009                              Action|Adventure|Sci-Fi|IMAX     15
## 2330  2009                             Action|Crime|Mystery|Thriller     15
## 2331  2009                                               Crime|Drama     15
## 2332  2010                                    Drama|Mystery|Thriller     15
## 2333  2008                                      Comedy|Drama|Romance     15
## 2334  2010                                 Action|Drama|Thriller|War     15
## 2335  2010                                              Action|Crime     15
## 2336  2010                                             Comedy|Sci-Fi     15
## 2337  2010                 Adventure|Animation|Children|Fantasy|IMAX     15
## 2338  2010                                             Action|Comedy     15
## 2339  2010                                     Action|Comedy|Romance     15
## 2340  2010                                               Documentary     15
## 2341  2010                   Action|Adventure|Drama|Mystery|Thriller     15
## 2342  2010                                        Comedy|Documentary     15
## 2343  2010                     Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2344  2010                                                    Comedy     15
## 2345  2010                                    Action|Comedy|Thriller     15
## 2346  2010          Adventure|Animation|Children|Comedy|Fantasy|IMAX     15
## 2347  2010                                            Drama|Thriller     15
## 2348  2010                                    Action|Sci-Fi|Thriller     15
## 2349  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     15
## 2350  2010                                     Action|Comedy|Romance     15
## 2351  2010                                              Comedy|Drama     15
## 2352  2010                                           Action|Thriller     15
## 2353  2010                                                    Comedy     15
## 2354  2010                                 Action|Adventure|Thriller     15
## 2355  2010                     Action|Comedy|Fantasy|Musical|Romance     15
## 2356  2010                                            Drama|Thriller     15
## 2357  2010                                               Documentary     15
## 2358  2010                                                     Drama     15
## 2359  2010                                      Crime|Drama|Thriller     15
## 2360  2010                                       Documentary|Mystery     15
## 2361  2010                                               Documentary     15
## 2362  2010                                           Documentary|War     15
## 2363  2010                                               Documentary     15
## 2364  2010                                             Action|Comedy     15
## 2365  2010                                            Drama|Thriller     15
## 2366  2010                                     Action|Drama|Thriller     15
## 2367  2010                             Action|Adventure|Fantasy|IMAX     15
## 2368  2010                                                     Drama     15
## 2369  2010    Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX     15
## 2370  2010                                                     Drama     15
## 2371  2010                              Action|Adventure|Sci-Fi|IMAX     15
## 2372  2010                                  Adventure|Comedy|Fantasy     15
## 2373  2010                                              Comedy|Drama     15
## 2374  2010                                               Documentary     15
## 2375  2011                 Action|Comedy|Crime|Fantasy|Thriller|IMAX     15
## 2376  2011                       Action|Sci-Fi|Thriller|Western|IMAX     15
## 2377  2010                                               Documentary     15
## 2378  2011                                           Sci-Fi|Thriller     15
## 2379  2011                                            Comedy|Romance     15
## 2380  2011                                      Crime|Drama|Thriller     15
## 2381  2011                                   Romance|Sci-Fi|Thriller     15
## 2382  2011                      Action|Drama|Mystery|Sci-Fi|Thriller     15
## 2383  2010                                               Documentary     15
## 2384  2011                         Action|Adventure|Mystery|Thriller     15
## 2385  2011                       Action|Adventure|Drama|Fantasy|IMAX     15
## 2386  2011                          Action|Crime|Drama|Thriller|IMAX     15
## 2387  2010                                         Drama|Mystery|War     15
## 2388  2011                                                    Comedy     15
## 2389  2011                                    Comedy|Fantasy|Romance     15
## 2390  2011                                                     Drama     15
## 2391  2011                                                    Comedy     15
## 2392  2011           Action|Adventure|Animation|Children|Comedy|IMAX     15
## 2393  2011                      Action|Adventure|Sci-Fi|Thriller|War     15
## 2394  2010                                                     Drama     15
## 2395  2011                              Mystery|Sci-Fi|Thriller|IMAX     15
## 2396  2011                                   Action|Adventure|Sci-Fi     15
## 2397  2011                                                    Comedy     15
## 2398  2011                          Action|Adventure|Sci-Fi|War|IMAX     15
## 2399  2011                                              Comedy|Crime     15
## 2400  2011                                               Documentary     15
## 2401  2011               Action|Adventure|Drama|Fantasy|Mystery|IMAX     15
## 2402  2011                            Crime|Drama|Film-Noir|Thriller     15
## 2403  2011                      Action|Adventure|Sci-Fi|Thriller|War     15
## 2404  2011                                      Comedy|Drama|Romance     15
## 2405  2011                                 Animation|Children|Comedy     15
## 2406  2011                              Action|Drama|Sci-Fi|Thriller     15
## 2407  2010                                                     Drama     15
## 2408  2011                                               Documentary     15
## 2409  2011                                               Documentary     15
## 2410  2011                                      Sci-Fi|Thriller|IMAX     15
## 2411  2011                                                     Drama     15
## 2412  2012                              Action|Adventure|Sci-Fi|IMAX     15
## 2413  2011                                           Action|Thriller     15
## 2414  2011                                  Action|Drama|Sci-Fi|IMAX     15
## 2415  2011                                               Documentary     15
## 2416  2011                                                     Drama     15
## 2417  2011                                            Drama|Thriller     15
## 2418  2011                                                     Drama     15
## 2419  2011                                     Action|Crime|Thriller     15
## 2420  2011                                    Action|Animation|Crime     15
## 2421  2011                   Adventure|Animation|Comedy|Fantasy|IMAX     15
## 2422  2011                             Action|Animation|Mystery|IMAX     15
## 2423  2011                                    Children|Drama|Mystery     15
## 2424  2011                                      Crime|Drama|Thriller     15
## 2425  2012                    Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2426  2010                                      Drama|Romance|Sci-Fi     15
## 2427  2012                               Action|Adventure|Crime|IMAX     15
## 2428  2012                      Action|Adventure|Drama|Thriller|IMAX     15
## 2429  2011            Action|Adventure|Comedy|Crime|Mystery|Thriller     15
## 2430  2011                            Action|Adventure|Thriller|IMAX     15
## 2431  2011                                              Comedy|Drama     15
## 2432  2011                                            Drama|Thriller     15
## 2433  2012                               Action|Crime|Drama|Thriller     15
## 2434  2011                                               Documentary     15
## 2435  2012                                    Action|Sci-Fi|Thriller     15
## 2436  2012                             Action|Crime|Mystery|Thriller     15
## 2437  2012                                     Action|Comedy|Romance     15
## 2438  2012                              Action|Adventure|Sci-Fi|IMAX     15
## 2439  2012                                       Action|Comedy|Crime     15
## 2440  2011                                               Documentary     15
## 2441  2012                                                    Comedy     15
## 2442  2012                             Comedy|Horror|Sci-Fi|Thriller     15
## 2443  2012                                  Adventure|Comedy|Fantasy     15
## 2444  2012                               Action|Sci-Fi|Thriller|IMAX     15
## 2445  2012                                        Comedy|Horror|IMAX     15
## 2446  2012                                                    Comedy     15
## 2447  2012                                 Action|Comedy|Sci-Fi|IMAX     15
## 2448  2012                                    Action|Adventure|Drama     15
## 2449  2012                       Adventure|Animation|Children|Comedy     15
## 2450  2012                                 Action|Horror|Sci-Fi|IMAX     15
## 2451  2012                                      Comedy|Drama|Romance     15
## 2452  2012                  Adventure|Animation|Children|Comedy|IMAX     15
## 2453  2012                       Action|Adventure|Animation|Children     15
## 2454  2012                                      Comedy|Drama|Romance     15
## 2455  2008                         Animation|Children|Comedy|Fantasy     15
## 2456  2012                                      Comedy|Drama|Romance     15
## 2457  2012                              Action|Adventure|Sci-Fi|IMAX     15
## 2458  2012                                             Drama|Fantasy     15
## 2459  2012                                    Action|Sci-Fi|Thriller     15
## 2460  2012                            Action|Adventure|Thriller|IMAX     15
## 2461  2012                                               Documentary     15
## 2462  2012                                               Documentary     15
## 2463  2012                                       Action|Crime|Sci-Fi     15
## 2464  2012                                               Documentary     15
## 2465  2012                                             Action|Sci-Fi     15
## 2466  2012                                            Drama|Thriller     15
## 2467  2012                                               Documentary     15
## 2468  2012                                               Documentary     15
## 2469  2012                                          Animation|Comedy     15
## 2470  2012                                                     Drama     15
## 2471  2012                                      Adventure|Drama|IMAX     15
## 2472  2012                                               Documentary     15
## 2473  2012                                                 Drama|War     15
## 2474  2012                                    Adventure|Fantasy|IMAX     15
## 2475  2012                                     Action|Drama|Thriller     15
## 2476  2013                                     Comedy|Horror|Romance     15
## 2477  2012                                     Action|Crime|Thriller     15
## 2478  2012                                      Action|Drama|Western     15
## 2479  2012                                Drama|Musical|Romance|IMAX     15
## 2480  2012                                               Documentary     15
## 2481  2012                                               Documentary     15
## 2482  2012                                               Documentary     15
## 2483  2013                                                    Comedy     15
## 2484  2012                                               Documentary     15
## 2485  2013                              Crime|Drama|Mystery|Thriller     15
## 2486  2012                                               Documentary     15
## 2487  2012                                               Documentary     15
## 2488  2012                                               Documentary     15
## 2489  2013                                             Drama|Romance     15
## 2490  2013                                               Documentary     15
## 2491  2013                     Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2492  2013                             Action|Adventure|Fantasy|IMAX     15
## 2493  2013                                           Action|Thriller     15
## 2494  2013                              Action|Adventure|Sci-Fi|IMAX     15
## 2495  2013                                                     Drama     15
## 2496  2013                                             Action|Comedy     15
## 2497  2013                               Action|Sci-Fi|Thriller|IMAX     15
## 2498  2013                              Action|Adventure|Sci-Fi|IMAX     15
## 2499  2012                                              Comedy|Drama     15
## 2500  2013                              Action|Adventure|Sci-Fi|IMAX     15
## 2501  2013                                    Crime|Mystery|Thriller     15
## 2502  2013                      Action|Adventure|Fantasy|Sci-Fi|IMAX     15
## 2503  2013                              Action|Adventure|Sci-Fi|IMAX     15
## 2504  2013                                  Action|Drama|Horror|IMAX     15
## 2505  2013                                  Action|Drama|Sci-Fi|IMAX     15
## 2506  2013                                       Action|Comedy|Crime     15
## 2507  2013                              Action|Comedy|Crime|Thriller     15
## 2508  2013                                              Comedy|Crime     15
## 2509  2013                                       Action|Comedy|Crime     15
## 2510  2013                                               Documentary     15
## 2511  2012                                               Documentary     15
## 2512  2013                                        Action|Sci-Fi|IMAX     15
## 2513  2013                                    Drama|Mystery|Thriller     15
## 2514  2013                             Adventure|Drama|Thriller|IMAX     15
## 2515  2013                             Action|Adventure|Fantasy|IMAX     15
## 2516  2013                                                    Comedy     15
## 2517  2013                                               Documentary     15
## 2518  2013                                    Adventure|Fantasy|IMAX     15
## 2519  2013                                        Comedy|Crime|Drama     15
## 2520  2013                                               Crime|Drama     15
## 2521  2013                                      Drama|Romance|Sci-Fi     15
## 2522  2013                                                    Comedy     15
## 2523  2013                                       Action|Drama|Sci-Fi     15
## 2524  2013                                               Documentary     15
## 2525  2014                                Action|Drama|Thriller|IMAX     15
## 2526  2014                             Adventure|Romance|Sci-Fi|IMAX     15
## 2527  2014                                Action|Fantasy|Sci-Fi|IMAX     15
## 2528  2013                                          Mystery|Thriller     15
## 2529  2014        Action|Adventure|Animation|Children|Comedy|Fantasy     15
## 2530  2014                                  Action|Crime|Sci-Fi|IMAX     15
## 2531  2013                                      Drama|Fantasy|Sci-Fi     15
## 2532  2014                                              Comedy|Drama     15
## 2533  2014                                               Sci-Fi|IMAX     15
## 2534  2014                                     Action|Drama|War|IMAX     15
## 2535  2013                                               Documentary     15
## 2536  2013                                    Horror|Sci-Fi|Thriller     15
## 2537  2014                              Action|Adventure|Sci-Fi|IMAX     15
## 2538  2014                                      Adventure|Drama|IMAX     15
## 2539  2014                                        Action|Sci-Fi|IMAX     15
## 2540  2014                                         Drama|Sci-Fi|IMAX     15
## 2541  2014                                            Comedy|Romance     15
## 2542  2013                                               Documentary     15
## 2543  2014                                             Action|Sci-Fi     15
## 2544  2014                                   Action|Adventure|Sci-Fi     15
## 2545  2014                              Action|Adventure|Sci-Fi|IMAX     15
## 2546  2014                                                    Comedy     15
## 2547  2013                                            Comedy|Romance     15
## 2548  2014                                        Action|Sci-Fi|IMAX     15
## 2549  2015                                 Action|Adventure|Thriller     15
## 2550  2014                                       Action|Comedy|Crime     15
## 2551  2014                                     Action|Crime|Thriller     15
## 2552  2014                                              Comedy|Drama     15
## 2553  2014                                   Action|Adventure|Sci-Fi     15
## 2554  2014                                                     Drama     15
## 2555  2014                                            Drama|Thriller     15
## 2556  2014                                                    Sci-Fi     15
## 2557  2014                                                    Comedy     15
## 2558  2014                                   Action|Adventure|Sci-Fi     15
## 2559  2014                                                  Thriller     15
## 2560  2015                                   Action|Adventure|Sci-Fi     15
## 2561  2014                                   Action|Adventure|Comedy     15
## 2562  2014                                              Drama|Sci-Fi     15
## 2563  2013                             Drama|Mystery|Sci-Fi|Thriller     15
## 2564  2014                                     Action|Mystery|Sci-Fi     15
## 2565  2014                                               Documentary     15
## 2566  2014                                           Action|Thriller     15
## 2567  2014                                            Comedy|Romance     15
## 2568  2014                                      Crime|Drama|Thriller     15
## 2569  2014                                   Action|Animation|Comedy     15
## 2570  2015                                     Drama|Sci-Fi|Thriller     15
## 2571  2014                                                     Drama     15
## 2572  2014                                        Drama|Thriller|War     15
## 2573  2014                        Comedy|Crime|Drama|Mystery|Romance     15
## 2574  2014                                 Adventure|Sci-Fi|Thriller     15
## 2575  2014                                     Comedy|Drama|Thriller     15
## 2576  2014                                             Drama|Romance     15
## 2577  2015                    Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2578  2014                                               Documentary     15
## 2579  2014                                         Adventure|Fantasy     15
## 2580  2014                                             Action|Comedy     15
## 2581  2015                             Action|Adventure|Comedy|Crime     15
## 2582  2015                                           Action|Thriller     15
## 2583  2015                          Action|Adventure|Sci-Fi|Thriller     15
## 2584  2014                                               Documentary     15
## 2585  2014                                                    Horror     15
## 2586  2015                          Action|Adventure|Sci-Fi|Thriller     15
## 2587  2015                      Action|Adventure|Fantasy|Sci-Fi|IMAX     15
## 2588  2016                                  Action|Adventure|Fantasy     15
## 2589  2015                                   Action|Adventure|Sci-Fi     15
## 2590  2015                                   Action|Adventure|Sci-Fi     15
## 2591  2015                           Action|Adventure|Fantasy|Sci-Fi     15
## 2592  2016                            Action|Adventure|Comedy|Sci-Fi     15
## 2593  2016                                    Action|Sci-Fi|Thriller     15
## 2594  2016                           Action|Adventure|Fantasy|Sci-Fi     15
## 2595  2015                                    Drama|Mystery|Thriller     15
## 2596  2015                                                   Western     15
## 2597  2015                               Action|Crime|Drama|Thriller     15
## 2598  2014                                              Comedy|Drama     15
## 2599  2015                                    Action|Sci-Fi|Thriller     15
## 2600  2015                                              Drama|Sci-Fi     15
## 2601  2015                                     Action|Crime|Thriller     15
## 2602  2015                                              Comedy|Crime     15
## 2603  2015                  Action|Adventure|Children|Mystery|Sci-Fi     15
## 2604  2015                                     Drama|Fantasy|Romance     15
## 2605  2015                                     Action|Drama|Thriller     15
## 2606  2015                                                     Drama     15
## 2607  2015                                    Adventure|Drama|Sci-Fi     15
## 2608  2015                                       Action|Comedy|Crime     15
## 2609  2015                                            Comedy|Romance     15
## 2610  2015         Adventure|Animation|Children|Comedy|Drama|Fantasy     15
## 2611  2015                                          Adventure|Sci-Fi     15
## 2612  2016                                          Animation|Comedy     15
## 2613  2016                                   Action|Adventure|Sci-Fi     15
## 2614  2016                                   Action|Adventure|Sci-Fi     15
## 2615  2015                                    Action|Adventure|Crime     15
## 2616  2015                                                     Drama     15
## 2617  2016                           Action|Adventure|Fantasy|Sci-Fi     15
## 2618  2015                                               Documentary     15
## 2619  2016                                   Adventure|Drama|Fantasy     15
## 2620  2015                                   Action|Adventure|Comedy     15
## 2621  2015                                           Adventure|Drama     15
## 2622  2015                                       Crime|Drama|Mystery     15
## 2623  2015                                               Documentary     15
## 2624  2015                                  Animation|Comedy|Fantasy     15
## 2625  2015                                                    Comedy     15
## 2626  2015                                                     Drama     15
## 2627  2015                                                    Horror     15
## 2628  2015                             Action|Comedy|Sci-Fi|Thriller     15
## 2629  2015                                              Comedy|Drama     15
## 2630  2015                                                  Thriller     15
## 2631  2015                                                     Drama     15
## 2632  2015                                            Drama|Thriller     15
## 2633  2015                                                     Drama     15
## 2634  2015                       Adventure|Animation|Children|Comedy     15
## 2635  2015                                                     Drama     15
## 2636  2015                                                     Drama     15
## 2637  2015                                                    Comedy     15
## 2638  2015                                           Children|Comedy     15
## 2639  2016                                Action|Adventure|Animation     15
## 2640  2016                                                     Drama     15
## 2641  2016                                                  Thriller     15
## 2642  2016                                     Action|Crime|Thriller     15
## 2643  2016                Action|Adventure|Animation|Children|Comedy     15
## 2644  2016                                                    Comedy     15
## 2645  2016                            Action|Adventure|Drama|Fantasy     15
## 2646  2016                                                    Comedy     15
## 2647  2016                                            Drama|Thriller     15
## 2648  2016                                Adventure|Animation|Comedy     15
## 2649  2016                                                    Comedy     15
## 2650  2016                                    Crime|Mystery|Thriller     15
## 2651  2016                                            Drama|Thriller     15
## 2652  2016                                    Action|Comedy|Thriller     15
## 2653  2016                                   Action|Adventure|Comedy     15
## 2654  2016                                                    Comedy     15
## 2655  2016                                                    Horror     15
## 2656  2016                                     Drama|Sci-Fi|Thriller     15
## 2657  2016                               Action|Comedy|Horror|Sci-Fi     15
## 2658  2016                                             Action|Comedy     15
## 2659  2016                                          Action|Adventure     15
## 2660  2016                                      Action|Horror|Sci-Fi     15
## 2661  2016                                                    Comedy     15
## 2662  2016                                                    Sci-Fi     15
## 2663  1995                                    Crime|Mystery|Thriller     16
## 2664  1994                                               Crime|Drama     16
## 2665  1993                                                     Drama     16
## 2666  1993                                                 Drama|War     16
## 2667  1964                                                Comedy|War     16
## 2668  1997                                     Drama|Sci-Fi|Thriller     16
## 2669  1997                                             Drama|Romance     16
## 2670  1988                                                     Drama     16
## 2671  1990                           Adventure|Comedy|Sci-Fi|Western     16
## 2672  1998                                     Action|Crime|Thriller     16
## 2673  1999                                                    Comedy     16
## 2674  1999                                            Comedy|Romance     16
## 2675  1988                              Comedy|Drama|Fantasy|Romance     16
## 2676  1999                                             Drama|Romance     16
## 2677  2000                                 Action|Adventure|Thriller     16
## 2678  2000                                             Drama|Romance     16
## 2679  2001                                            Comedy|Romance     16
## 2680  2001                                      Comedy|Drama|Romance     16
## 2681  2001                                                    Comedy     16
## 2682  2000                                            Romance|Sci-Fi     16
## 2683  2000                                                     Drama     16
## 2684  2001                                            Comedy|Romance     16
## 2685  2001                                             Drama|Romance     16
## 2686  2002                          Action|Adventure|Sci-Fi|Thriller     16
## 2687  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     16
## 2688  2002                     Action|Adventure|Crime|Drama|Thriller     16
## 2689  2003                                      Comedy|Drama|Romance     16
## 2690  2003                                     Action|Crime|Thriller     16
## 2691  2004                                            Comedy|Romance     16
## 2692  1995                                     Action|Crime|Thriller     17
## 2693  1995                                             Drama|Romance     17
## 2694  1995                    Adventure|Drama|Fantasy|Mystery|Sci-Fi     17
## 2695  1995                                   Mystery|Sci-Fi|Thriller     17
## 2696  1995                                               Crime|Drama     17
## 2697  1995                                          Mystery|Thriller     17
## 2698  1995                                    Crime|Mystery|Thriller     17
## 2699  1976                                      Crime|Drama|Thriller     17
## 2700  1995                           Action|Adventure|Crime|Thriller     17
## 2701  1995                                    Action|Sci-Fi|Thriller     17
## 2702  1995                                     Action|Crime|Thriller     17
## 2703  1995                                              Comedy|Drama     17
## 2704  1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller     17
## 2705  1994                                                    Comedy     17
## 2706  1994                                              Comedy|Drama     17
## 2707  1994                                               Crime|Drama     17
## 2708  1977                                   Action|Adventure|Sci-Fi     17
## 2709  1994                                     Action|Crime|Thriller     17
## 2710  1994                               Action|Crime|Drama|Thriller     17
## 2711  1994                               Comedy|Crime|Drama|Thriller     17
## 2712  1993                                                     Drama     17
## 2713  1994                                               Crime|Drama     17
## 2714  1994                                                    Comedy     17
## 2715  1994                                  Comedy|Drama|Romance|War     17
## 2716  1994                                   Action|Romance|Thriller     17
## 2717  1993                                               Crime|Drama     17
## 2718  1993                          Action|Adventure|Sci-Fi|Thriller     17
## 2719  1994                                      Crime|Drama|Thriller     17
## 2720  1993                                            Comedy|Mystery     17
## 2721  1993                                                 Drama|War     17
## 2722  1982                                    Action|Sci-Fi|Thriller     17
## 2723  1993                                            Crime|Thriller     17
## 2724  1990                                   Adventure|Drama|Western     17
## 2725  1991                                     Crime|Horror|Thriller     17
## 2726  1996                               Comedy|Crime|Drama|Thriller     17
## 2727  1965                     Drama|Mystery|Romance|Sci-Fi|Thriller     17
## 2728  1995                                     Drama|Mystery|Western     17
## 2729  1996                         Action|Adventure|Romance|Thriller     17
## 2730  1996                                        Comedy|Crime|Drama     17
## 2731  1972                                               Crime|Drama     17
## 2732  1996                              Crime|Drama|Romance|Thriller     17
## 2733  1958                            Drama|Mystery|Romance|Thriller     17
## 2734  1954                                          Mystery|Thriller     17
## 2735  1959                 Action|Adventure|Mystery|Romance|Thriller     17
## 2736  1959                                              Comedy|Crime     17
## 2737  1942                                             Drama|Romance     17
## 2738  1941                                         Film-Noir|Mystery     17
## 2739  1950                                   Drama|Film-Noir|Romance     17
## 2740  1941                                             Drama|Mystery     17
## 2741  1968                                    Adventure|Drama|Sci-Fi     17
## 2742  1940                            Drama|Mystery|Romance|Thriller     17
## 2743  1946                                Film-Noir|Romance|Thriller     17
## 2744  1945                                  Mystery|Romance|Thriller     17
## 2745  1944                                   Crime|Film-Noir|Mystery     17
## 2746  1935                                    Drama|Mystery|Thriller     17
## 2747  1988                                     Action|Crime|Thriller     17
## 2748  1973                                             Comedy|Sci-Fi     17
## 2749  1988                                              Comedy|Crime     17
## 2750  1992                                    Crime|Mystery|Thriller     17
## 2751  1992                                    Crime|Mystery|Thriller     17
## 2752  1992                                                     Drama     17
## 2753  1951                                                     Drama     17
## 2754  1975                                  Adventure|Comedy|Fantasy     17
## 2755  1989                                              Comedy|Drama     17
## 2756  1991                                      Comedy|Drama|Romance     17
## 2757  1975                                                     Drama     17
## 2758  1985                                            Fantasy|Sci-Fi     17
## 2759  1971                               Crime|Drama|Sci-Fi|Thriller     17
## 2760  1983                                   Action|Adventure|Sci-Fi     17
## 2761  1949                                Film-Noir|Mystery|Thriller     17
## 2762  1990                                               Crime|Drama     17
## 2763  1989                               Action|Crime|Drama|Thriller     17
## 2764  1980                                     Action|Comedy|Musical     17
## 2765  1974                                               Crime|Drama     17
## 2766  1977                                            Comedy|Romance     17
## 2767  1979                                      Drama|Mystery|Sci-Fi     17
## 2768  1971                                      Comedy|Drama|Romance     17
## 2769  1957                                                     Drama     17
## 2770  1984                                    Action|Sci-Fi|Thriller     17
## 2771  1992                                     Comedy|Fantasy|Horror     17
## 2772  1979                                      Comedy|Drama|Romance     17
## 2773  1990                            Crime|Drama|Film-Noir|Thriller     17
## 2774  1989                                                     Drama     17
## 2775  1958                                  Crime|Film-Noir|Thriller     17
## 2776  1990                             Action|Crime|Romance|Thriller     17
## 2777  1963                                             Drama|Fantasy     17
## 2778  1974                          Crime|Film-Noir|Mystery|Thriller     17
## 2779  1987                                      Comedy|Horror|Sci-Fi     17
## 2780  1980                                                    Horror     17
## 2781  1978                                                 Drama|War     17
## 2782  1993                                    Comedy|Fantasy|Romance     17
## 2783  1962                                        Crime|Thriller|War     17
## 2784  1985                                   Adventure|Comedy|Sci-Fi     17
## 2785  1982                                             Drama|Musical     17
## 2786  1963                                           Horror|Thriller     17
## 2787  1922                                                    Horror     17
## 2788  1992                          Action|Comedy|Crime|Drama|Sci-Fi     17
## 2789  1996                                       Crime|Drama|Romance     17
## 2790  1997             Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     17
## 2791  1997                                               Crime|Drama     17
## 2792  1997                                   Action|Adventure|Comedy     17
## 2793  1992                                             Horror|Sci-Fi     17
## 2794  1997                                      Action|Comedy|Sci-Fi     17
## 2795  1997                            Drama|Mystery|Romance|Thriller     17
## 2796  1997                          Crime|Film-Noir|Mystery|Thriller     17
## 2797  1997                                    Drama|Mystery|Thriller     17
## 2798  1997                                       Crime|Drama|Mystery     17
## 2799  1997                                    Drama|Mystery|Thriller     17
## 2800  1997                                     Drama|Sci-Fi|Thriller     17
## 2801  1997                                                     Drama     17
## 2802  1985                                    Drama|Romance|Thriller     17
## 2803  1997                                             Drama|Romance     17
## 2804  1997                                             Drama|Romance     17
## 2805  1997                                      Crime|Drama|Thriller     17
## 2806  1998                                              Comedy|Crime     17
## 2807  1998                       Adventure|Film-Noir|Sci-Fi|Thriller     17
## 2808  1997                                               Crime|Drama     17
## 2809  1997                              Crime|Drama|Mystery|Thriller     17
## 2810  1998                                    Adventure|Comedy|Drama     17
## 2811  1998                                     Drama|Sci-Fi|Thriller     17
## 2812  1998                                            Comedy|Romance     17
## 2813  1973                                            Horror|Mystery     17
## 2814  1927                                              Drama|Sci-Fi     17
## 2815  1989                                   Adventure|Comedy|Sci-Fi     17
## 2816  1990                           Adventure|Comedy|Sci-Fi|Western     17
## 2817  1984                                          Adventure|Sci-Fi     17
## 2818  1990                              Crime|Drama|Mystery|Thriller     17
## 2819  1998                                          Action|Drama|War     17
## 2820  1947                                                 Film-Noir     17
## 2821  1965                                         Drama|Romance|War     17
## 2822  1986                                    Drama|Mystery|Thriller     17
## 2823  1982                                     Comedy|Crime|Thriller     17
## 2824  1984                                              Drama|Sci-Fi     17
## 2825  1983                                                  Thriller     17
## 2826  1986                                     Crime|Horror|Thriller     17
## 2827  1968                                     Drama|Horror|Thriller     17
## 2828  1998                                    Action|Horror|Thriller     17
## 2829  1942                                          Mystery|Thriller     17
## 2830  1997                            Horror|Mystery|Sci-Fi|Thriller     17
## 2831  1998                                     Action|Crime|Thriller     17
## 2832  1997                                  Comedy|Drama|Romance|War     17
## 2833  1998                                               Crime|Drama     17
## 2834  1998                                           Action|Thriller     17
## 2835  1998                                      Comedy|Drama|Romance     17
## 2836  1986                              Drama|Horror|Sci-Fi|Thriller     17
## 2837  1986                              Crime|Drama|Mystery|Thriller     17
## 2838  1999                                           Action|Thriller     17
## 2839  1999                                              Comedy|Crime     17
## 2840  1999                                                    Comedy     17
## 2841  1988                                     Drama|Horror|Thriller     17
## 2842  1999                                    Action|Sci-Fi|Thriller     17
## 2843  1998                                    Crime|Mystery|Thriller     17
## 2844  1997                             Drama|Romance|Sci-Fi|Thriller     17
## 2845  1999                                    Action|Sci-Fi|Thriller     17
## 2846  1999                                             Comedy|Horror     17
## 2847  1975                              Comedy|Horror|Musical|Sci-Fi     17
## 2848  1999                                     Drama|Sci-Fi|Thriller     17
## 2849  1999                                       Documentary|Musical     17
## 2850  1999                                   Action|Adventure|Comedy     17
## 2851  1998                                              Action|Crime     17
## 2852  1999                                                  Thriller     17
## 2853  1999                                     Drama|Horror|Thriller     17
## 2854  1999                                    Drama|Mystery|Thriller     17
## 2855  1956                                           Crime|Film-Noir     17
## 2856  1999                                      Drama|Horror|Mystery     17
## 2857  1980                                                    Comedy     17
## 2858  1999                                             Drama|Romance     17
## 2859  1998                                              Action|Drama     17
## 2860  1990                          Action|Adventure|Sci-Fi|Thriller     17
## 2861  1986                                                    Comedy     17
## 2862  1996                                      Crime|Drama|Thriller     17
## 2863  1999                               Action|Crime|Drama|Thriller     17
## 2864  1989                                        Comedy|Crime|Drama     17
## 2865  1999                                      Comedy|Drama|Fantasy     17
## 2866  1985                                      Comedy|Horror|Sci-Fi     17
## 2867  1937                                                 Drama|War     17
## 2868  1999                                               Crime|Drama     17
## 2869  1999                                                     Drama     17
## 2870  1992                                                    Comedy     17
## 2871  1992                              Crime|Drama|Mystery|Thriller     17
## 2872  1992                             Action|Crime|Thriller|Western     17
## 2873  1999                                               Crime|Drama     17
## 2874  1991                                    Drama|Mystery|Thriller     17
## 2875  2000                                                     Drama     17
## 2876  1944                                     Crime|Drama|Film-Noir     17
## 2877  1990                                            Horror|Mystery     17
## 2878  1972                                      Drama|Mystery|Sci-Fi     17
## 2879  1976                                              Comedy|Drama     17
## 2880  2000                             Crime|Horror|Mystery|Thriller     17
## 2881  2000                                    Action|Adventure|Drama     17
## 2882  2000                              Crime|Drama|Romance|Thriller     17
## 2883  1977                                              Drama|Horror     17
## 2884  1974                                             Drama|Mystery     17
## 2885  1973                                               Crime|Drama     17
## 2886  1925                                                 Drama|War     17
## 2887  2000                                             Comedy|Horror     17
## 2888  1966                                             Drama|Mystery     17
## 2889  2000                                     Drama|Horror|Thriller     17
## 2890  2000                                                     Drama     17
## 2891  2000                                             Action|Comedy     17
## 2892  2000                                              Drama|Sci-Fi     17
## 2893  2000                                      Action|Drama|Romance     17
## 2894  2000                                    Adventure|Comedy|Crime     17
## 2895  2000                                      Crime|Drama|Thriller     17
## 2896  1987                          Crime|Film-Noir|Mystery|Thriller     17
## 2897  1986                        Action|Crime|Drama|Horror|Thriller     17
## 2898  2000                                          Mystery|Thriller     17
## 2899  2001                                               Crime|Drama     17
## 2900  2001                                      Comedy|Drama|Romance     17
## 2901  1983                                        Action|Crime|Drama     17
## 2902  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     17
## 2903  1926                                      Drama|Fantasy|Horror     17
## 2904  1977                                                    Horror     17
## 2905  1988                                            Drama|Thriller     17
## 2906  1988                             Action|Horror|Sci-Fi|Thriller     17
## 2907  1997                                     Crime|Horror|Thriller     17
## 2908  2001                                           Horror|Thriller     17
## 2909  2001                    Crime|Drama|Film-Noir|Mystery|Thriller     17
## 2910  2001                             Drama|Mystery|Sci-Fi|Thriller     17
## 2911  2001               Adventure|Animation|Children|Comedy|Fantasy     17
## 2912  2001                                Adventure|Children|Fantasy     17
## 2913  1960                                       Crime|Drama|Romance     17
## 2914  2001                                            Crime|Thriller     17
## 2915  2001                                            Comedy|Romance     17
## 2916  2001                           Mystery|Romance|Sci-Fi|Thriller     17
## 2917  2001                                         Adventure|Fantasy     17
## 2918  2001                                             Drama|Romance     17
## 2919  2001                                             Drama|Romance     17
## 2920  1953                                           Drama|Film-Noir     17
## 2921  1983                                           Sci-Fi|Thriller     17
## 2922  1970                                          Comedy|Drama|War     17
## 2923  1966                                   Mystery|Sci-Fi|Thriller     17
## 2924  2001                                          Animation|Sci-Fi     17
## 2925  1973                                     Drama|Horror|Thriller     17
## 2926  2001                                               Documentary     17
## 2927  2002                                    Action|Horror|Thriller     17
## 2928  2002                                                  Thriller     17
## 2929  2002                                            Comedy|Romance     17
## 2930  2001                                          Romance|Thriller     17
## 2931  2002                          Action|Adventure|Sci-Fi|Thriller     17
## 2932  2002                       Action|Crime|Drama|Mystery|Thriller     17
## 2933  2002                                   Action|Mystery|Thriller     17
## 2934  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     17
## 2935  2002                                               Crime|Drama     17
## 2936  2002                                    Horror|Sci-Fi|Thriller     17
## 2937  2002                                              Action|Crime     17
## 2938  2001                                            Drama|Thriller     17
## 2939  2002                                    Crime|Mystery|Thriller     17
## 2940  2002                                               Documentary     17
## 2941  2002                                   Horror|Mystery|Thriller     17
## 2942  2002                                         Drama|Fantasy|War     17
## 2943  1981                                     Action|Drama|Thriller     17
## 2944  2002                                            Crime|Thriller     17
## 2945  1981                                    Horror|Sci-Fi|Thriller     17
## 2946  1981                                      Crime|Drama|Thriller     17
## 2947  2002                                      Drama|Romance|Sci-Fi     17
## 2948  1994                                      Crime|Drama|Thriller     17
## 2949  2002                                    Action|Sci-Fi|Thriller     17
## 2950  2001                                                  Thriller     17
## 2951  2002                                         Adventure|Fantasy     17
## 2952  2002                     Action|Adventure|Crime|Drama|Thriller     17
## 2953  2003                                           Action|Thriller     17
## 2954  1982                                   Horror|Mystery|Thriller     17
## 2955  2002                                             Drama|Mystery     17
## 2956  2002                              Crime|Drama|Mystery|Thriller     17
## 2957  1998                                   Horror|Mystery|Thriller     17
## 2958  2002                                            Drama|Thriller     17
## 2959  2003                                                    Comedy     17
## 2960  2003                                   Action|Adventure|Sci-Fi     17
## 2961  2003                                            Crime|Thriller     17
## 2962  2003                             Crime|Horror|Mystery|Thriller     17
## 2963  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     17
## 2964  2003                                              Action|Crime     17
## 2965  2003                                     Action|Crime|Thriller     17
## 2966  2002                                                     Drama     17
## 2967  2002                                      Action|Horror|Sci-Fi     17
## 2968  2003                    Action|Adventure|Comedy|Crime|Thriller     17
## 2969  1976                             Drama|Horror|Mystery|Thriller     17
## 2970  2003                                    Drama|Mystery|Thriller     17
## 2971  1966                           Adventure|Comedy|Crime|Thriller     17
## 2972  1953                                                     Drama     17
## 2973  1972                                      Comedy|Drama|Fantasy     17
## 2974  2003                                        Comedy|Crime|Drama     17
## 2975  2003                                      Comedy|Drama|Romance     17
## 2976  2002                              Crime|Drama|Mystery|Thriller     17
## 2977  1983                            Fantasy|Horror|Sci-Fi|Thriller     17
## 2978  1961                                                     Drama     17
## 2979  2001                                      Drama|Fantasy|Sci-Fi     17
## 2980  1962                                                     Drama     17
## 2981  2003                                     Action|Crime|Thriller     17
## 2982  1991                                            Drama|Thriller     17
## 2983  1997                                     Drama|Horror|Thriller     17
## 2984  1983                                     Drama|Sci-Fi|Thriller     17
## 2985  1920                                      Crime|Fantasy|Horror     17
## 2986  1986                                      Comedy|Drama|Romance     17
## 2987  1991                      Comedy|Drama|Mystery|Sci-Fi|Thriller     17
## 2988  1955                                  Drama|Film-Noir|Thriller     17
## 2989  2000                              Action|Drama|Horror|Thriller     17
## 2990  1990                      Crime|Drama|Mystery|Romance|Thriller     17
## 2991  1961                                     Drama|Mystery|Romance     17
## 2992  1971                                                     Drama     17
## 2993  1972                                            Comedy|Romance     17
## 2994  2002                                    Action|Adventure|Drama     17
## 2995  1975                                   Horror|Mystery|Thriller     17
## 2996  1955                                   Horror|Mystery|Thriller     17
## 2997  1991                              Drama|Fantasy|Mystery|Sci-Fi     17
## 2998  1960                              Crime|Drama|Romance|Thriller     17
## 2999  2003                            Action|Adventure|Drama|Fantasy     17
## 3000  2003                                    Action|Sci-Fi|Thriller     17
## 3001  1950                                   Drama|Film-Noir|Mystery     17
## 3002  2004                                     Drama|Sci-Fi|Thriller     17
## 3003  2004                                      Drama|Romance|Sci-Fi     17
## 3004  2003                                    Drama|Mystery|Thriller     17
## 3005  2004                                     Action|Drama|Thriller     17
## 3006  2004                       Action|Crime|Drama|Mystery|Thriller     17
## 3007  1967                                      Crime|Drama|Thriller     17
## 3008  1953                           Action|Adventure|Drama|Thriller     17
## 3009  1946                            Crime|Drama|Film-Noir|Thriller     17
## 3010  1964                                           Adventure|Drama     17
## 3011  1974                                                  Thriller     17
## 3012  2002                                    Action|Sci-Fi|Thriller     17
## 3013  2002                                      Crime|Drama|Thriller     17
## 3014  2003                             Drama|Horror|Mystery|Thriller     17
## 3015  1975                                             Action|Sci-Fi     17
## 3016  1960                                     Drama|Mystery|Romance     17
## 3017  1931                                                   Mystery     17
## 3018  2004       Adventure|Animation|Children|Comedy|Musical|Romance     17
## 3019  2003                                 Action|Comedy|Crime|Drama     17
## 3020  1962                                            Romance|Sci-Fi     17
## 3021  1938                            Crime|Drama|Film-Noir|Thriller     17
## 3022  1962                              Comedy|Drama|Fantasy|Mystery     17
## 3023  2004                                               Documentary     17
## 3024  2004                          Action|Adventure|Sci-Fi|Thriller     17
## 3025  2004                                     Action|Crime|Thriller     17
## 3026  1972                                   Comedy|Drama|Sci-Fi|War     17
## 3027  2004                                                  Thriller     17
## 3028  2004                                    Drama|Mystery|Thriller     17
## 3029  2004                               Action|Crime|Drama|Thriller     17
## 3030  2004                                   Action|Adventure|Sci-Fi     17
## 3031  2004                                             Comedy|Horror     17
## 3032  2004                                              Drama|Sci-Fi     17
## 3033  1967                                             Comedy|Horror     17
## 3034  2004                                    Drama|Mystery|Thriller     17
## 3035  2004                                   Horror|Mystery|Thriller     17
## 3036  2004                                                     Drama     17
## 3037  2004                                            Drama|Thriller     17
## 3038  2004                                      Action|Drama|Romance     17
## 3039  2004                              Drama|Fantasy|Romance|Sci-Fi     17
## 3040  1999                     Drama|Horror|Mystery|Romance|Thriller     17
## 3041  2001                                   Horror|Mystery|Thriller     17
## 3042  2004                                 Drama|Mystery|Romance|War     17
## 3043  2003                                          Mystery|Thriller     17
## 3044  2005                             Drama|Mystery|Sci-Fi|Thriller     17
## 3045  2003                                                     Drama     17
## 3046  2004                                                 Drama|War     17
## 3047  2004                                             Action|Comedy     17
## 3048  2003                                Comedy|Crime|Drama|Mystery     17
## 3049  2005                   Action|Crime|Film-Noir|Mystery|Thriller     17
## 3050  2005                                   Adventure|Comedy|Sci-Fi     17
## 3051  2005                       Adventure|Animation|Children|Comedy     17
## 3052  2003                                           Horror|Thriller     17
## 3053  2005                          Action|Adventure|Sci-Fi|Thriller     17
## 3054  2005                                              Comedy|Drama     17
## 3055  1995                                                    Comedy     18
## 3056  1995                                     Action|Crime|Thriller     18
## 3057  1995                                            Comedy|Romance     18
## 3058  1995                                                    Action     18
## 3059  1995                                                     Drama     18
## 3060  1995                                             Drama|Romance     18
## 3061  1995                                                    Comedy     18
## 3062  1995                                             Drama|Romance     18
## 3063  1995                                   Mystery|Sci-Fi|Thriller     18
## 3064  1995                                               Crime|Drama     18
## 3065  1995                                      Comedy|Drama|Romance     18
## 3066  1995                                                     Drama     18
## 3067  1996                                             Drama|Romance     18
## 3068  1995                                    Action|Sci-Fi|Thriller     18
## 3069  1996                                            Drama|Thriller     18
## 3070  1995                                       Crime|Drama|Romance     18
## 3071  1995                                             Drama|Romance     18
## 3072  1996                                    Action|Adventure|Drama     18
## 3073  1996                                     Drama|Horror|Thriller     18
## 3074  1996                                 Action|Adventure|Thriller     18
## 3075  1996                                            Drama|Thriller     18
## 3076  1996                                             Drama|Romance     18
## 3077  1996                                                    Comedy     18
## 3078  1977                                   Action|Adventure|Sci-Fi     18
## 3079  1994                                           Action|Thriller     18
## 3080  1996                                 Action|Adventure|Thriller     18
## 3081  1996                               Comedy|Crime|Drama|Thriller     18
## 3082  1996                              Crime|Drama|Mystery|Thriller     18
## 3083  1996                                            Drama|Thriller     18
## 3084  1996                         Action|Adventure|Mystery|Thriller     18
## 3085  1996                                  Action|Adventure|Fantasy     18
## 3086  1996                                      Crime|Drama|Thriller     18
## 3087  1996                                            Comedy|Romance     18
## 3088  1996                                                    Comedy     18
## 3089  1996                                 Action|Adventure|Thriller     18
## 3090  1996                         Action|Adventure|Romance|Thriller     18
## 3091  1996                                                    Comedy     18
## 3092  1996                                    Action|Sci-Fi|Thriller     18
## 3093  1996                                              Comedy|Crime     18
## 3094  1996                                              Comedy|Drama     18
## 3095  1996                          Action|Adventure|Sci-Fi|Thriller     18
## 3096  1996                                                    Comedy     18
## 3097  1996                                     Action|Drama|Thriller     18
## 3098  1996                             Comedy|Fantasy|Romance|Sci-Fi     18
## 3099  1996                                             Drama|Romance     18
## 3100  1996                                            Drama|Thriller     18
## 3101  1996                                                    Comedy     18
## 3102  1996                                            Crime|Thriller     18
## 3103  1996                          Action|Adventure|Sci-Fi|Thriller     18
## 3104  1996                                      Comedy|Drama|Romance     18
## 3105  1996                                           Sci-Fi|Thriller     18
## 3106  1995               Adventure|Animation|Children|Comedy|Fantasy     19
## 3107  1995                                Adventure|Children|Fantasy     19
## 3108  1995                                            Comedy|Romance     19
## 3109  1995                                      Comedy|Drama|Romance     19
## 3110  1995                                     Action|Crime|Thriller     19
## 3111  1995                                            Comedy|Romance     19
## 3112  1995                                                    Action     19
## 3113  1995                                 Action|Adventure|Thriller     19
## 3114  1995                                      Comedy|Drama|Romance     19
## 3115  1995                                                     Drama     19
## 3116  1995                                               Crime|Drama     19
## 3117  1995                                     Comedy|Crime|Thriller     19
## 3118  1995                       Crime|Drama|Horror|Mystery|Thriller     19
## 3119  1995                                     Action|Crime|Thriller     19
## 3120  1995                                             Drama|Romance     19
## 3121  1995                    Adventure|Drama|Fantasy|Mystery|Sci-Fi     19
## 3122  1995                                   Mystery|Sci-Fi|Thriller     19
## 3123  1995                                            Children|Drama     19
## 3124  1995                                             Drama|Romance     19
## 3125  1995                                               Crime|Drama     19
## 3126  1995                                            Comedy|Romance     19
## 3127  1995                                        Action|Crime|Drama     19
## 3128  1995                                     Comedy|Drama|Thriller     19
## 3129  1995                                          Mystery|Thriller     19
## 3130  1995                  Animation|Children|Drama|Musical|Romance     19
## 3131  1995                                    Crime|Mystery|Thriller     19
## 3132  1995                                      Comedy|Drama|Romance     19
## 3133  1995                                                     Drama     19
## 3134  1994                                      Comedy|Drama|Romance     19
## 3135  1996                                              Comedy|Crime     19
## 3136  1996                                            Comedy|Romance     19
## 3137  1996                             Action|Comedy|Horror|Thriller     19
## 3138  1996                                             Drama|Romance     19
## 3139  1995                                           Action|Thriller     19
## 3140  1996                                      Comedy|Drama|Romance     19
## 3141  1996                                 Action|Adventure|Thriller     19
## 3142  1995                                               Crime|Drama     19
## 3143  1996                            Adventure|Comedy|Crime|Romance     19
## 3144  1995                                             Drama|Romance     19
## 3145  1995                                          Action|Drama|War     19
## 3146  1976                                      Crime|Drama|Thriller     19
## 3147  1995                             Action|Adventure|Comedy|Crime     19
## 3148  1992                                            Comedy|Romance     19
## 3149  1996                                                    Comedy     19
## 3150  1996                                                    Comedy     19
## 3151  1995                        Action|Comedy|Crime|Drama|Thriller     19
## 3152  1995                                      Adventure|Drama|IMAX     19
## 3153  1995                             Action|Adventure|Comedy|Crime     19
## 3154  1967                                                     Drama     19
## 3155  1995                                       Crime|Drama|Mystery     19
## 3156  1995                           Action|Adventure|Mystery|Sci-Fi     19
## 3157  1994                                               Documentary     19
## 3158  1995                                     Action|Crime|Thriller     19
## 3159  1995                                        Comedy|Crime|Drama     19
## 3160  1995                                    Action|Sci-Fi|Thriller     19
## 3161  1995                                                    Comedy     19
## 3162  1995                                                    Horror     19
## 3163  1995                                             Drama|Romance     19
## 3164  1995                                            Comedy|Romance     19
## 3165  1995                                              Comedy|Drama     19
## 3166  1995                                             Horror|Sci-Fi     19
## 3167  1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller     19
## 3168  1995                                             Drama|Romance     19
## 3169  1995                                               Documentary     19
## 3170  1995                                   Action|Adventure|Sci-Fi     19
## 3171  1995                                                     Drama     19
## 3172  1995                                             Drama|Romance     19
## 3173  1994                                                    Comedy     19
## 3174  1994                                            Drama|Thriller     19
## 3175  1995                                            Drama|Thriller     19
## 3176  1994                                          Adventure|Comedy     19
## 3177  1994                                              Comedy|Drama     19
## 3178  1994                                               Documentary     19
## 3179  1994                                               Crime|Drama     19
## 3180  1994                                             Drama|Romance     19
## 3181  1994                                              Drama|Horror     19
## 3182  1977                                   Action|Adventure|Sci-Fi     19
## 3183  1994                                                     Drama     19
## 3184  1995                                            Children|Drama     19
## 3185  1994                                 Drama|Romance|War|Western     19
## 3186  1993                                                     Drama     19
## 3187  1994                                            Comedy|Romance     19
## 3188  1994                                      Comedy|Drama|Romance     19
## 3189  1995                                               Crime|Drama     19
## 3190  1994                                     Action|Crime|Thriller     19
## 3191  1995                              Action|Drama|Sci-Fi|Thriller     19
## 3192  1994                               Action|Crime|Drama|Thriller     19
## 3193  1994                               Comedy|Crime|Drama|Thriller     19
## 3194  1994                                                     Drama     19
## 3195  1994                                                     Drama     19
## 3196  1993                                                     Drama     19
## 3197  1994                                              Comedy|Drama     19
## 3198  1994                                   Action|Adventure|Sci-Fi     19
## 3199  1994                                               Crime|Drama     19
## 3200  1994                                                     Drama     19
## 3201  1995                                           Horror|Thriller     19
## 3202  1994                                    Adventure|Drama|Sci-Fi     19
## 3203  1995                                             Horror|Sci-Fi     19
## 3204  1995                                                    Comedy     19
## 3205  1994                                                     Drama     19
## 3206  1993                                                     Drama     19
## 3207  1995                                            Comedy|Romance     19
## 3208  1994                                       Adventure|Drama|War     19
## 3209  1994                                                    Comedy     19
## 3210  1994                                              Comedy|Drama     19
## 3211  1993                                             Drama|Musical     19
## 3212  1994                                                    Comedy     19
## 3213  1994                               Action|Crime|Drama|Thriller     19
## 3214  1994                                    Drama|Mystery|Thriller     19
## 3215  1994                             Action|Crime|Fantasy|Thriller     19
## 3216  1994                                                     Drama     19
## 3217  1994                                  Comedy|Drama|Romance|War     19
## 3218  1994                                            Comedy|Romance     19
## 3219  1994                                      Comedy|Drama|Romance     19
## 3220  1994           Adventure|Animation|Children|Drama|Musical|IMAX     19
## 3221  1993                                                     Drama     19
## 3222  1994                             Drama|Horror|Mystery|Thriller     19
## 3223  1994                               Action|Comedy|Crime|Fantasy     19
## 3224  1994                                                     Drama     19
## 3225  1994                                              Comedy|Drama     19
## 3226  1994                                      Comedy|Drama|Romance     19
## 3227  1992                                                  Thriller     19
## 3228  1994                                           Action|Thriller     19
## 3229  1994                                   Action|Romance|Thriller     19
## 3230  1994                                    Action|Sci-Fi|Thriller     19
## 3231  1994                  Action|Adventure|Comedy|Romance|Thriller     19
## 3232  1994                             Drama|Horror|Romance|Thriller     19
## 3233  1994                                                   Western     19
## 3234  1995                                           Horror|Thriller     19
## 3235  1993                                                     Drama     19
## 3236  1994                                           Action|Thriller     19
## 3237  1993                                                     Drama     19
## 3238  1994                                                    Comedy     19
## 3239  1993                                               Crime|Drama     19
## 3240  1993                                 Action|Adventure|Thriller     19
## 3241  1993                                            Comedy|Romance     19
## 3242  1993                                                    Comedy     19
## 3243  1993                                                    Comedy     19
## 3244  1993                                                     Drama     19
## 3245  1994                                              Comedy|Drama     19
## 3246  1993                                     Drama|Mystery|Romance     19
## 3247  1993                                            Drama|Thriller     19
## 3248  1994                                      Crime|Drama|Thriller     19
## 3249  1993                                                  Thriller     19
## 3250  1993                           Action|Adventure|Crime|Thriller     19
## 3251  1993                                          Action|Drama|War     19
## 3252  1995                                            Comedy|Romance     19
## 3253  1994                                                    Comedy     19
## 3254  1993                                           Action|Thriller     19
## 3255  1993                                                     Drama     19
## 3256  1993                                     Action|Crime|Thriller     19
## 3257  1993                          Action|Adventure|Sci-Fi|Thriller     19
## 3258  1993                                            Drama|Thriller     19
## 3259  1994                                      Crime|Drama|Thriller     19
## 3260  1993                           Action|Adventure|Comedy|Fantasy     19
## 3261  1993                                                     Drama     19
## 3262  1993                                        Action|Crime|Drama     19
## 3263  1996                                 Action|Adventure|Thriller     19
## 3264  1993                                              Comedy|Drama     19
## 3265  1993                                                     Drama     19
## 3266  1994                                       Action|Drama|Sci-Fi     19
## 3267  1993                                      Crime|Drama|Thriller     19
## 3268  1993                                                     Drama     19
## 3269  1993                                             Drama|Romance     19
## 3270  1994                                    Comedy|Mystery|Romance     19
## 3271  1993                                             Drama|Romance     19
## 3272  1993                                      Action|Drama|Mystery     19
## 3273  1993                        Action|Crime|Drama|Sci-Fi|Thriller     19
## 3274  1993                                                    Comedy     19
## 3275  1992                                              Action|Drama     19
## 3276  1993                                                 Drama|War     19
## 3277  1993                                                     Drama     19
## 3278  1993                                            Children|Drama     19
## 3279  1993                                             Drama|Romance     19
## 3280  1993                                                     Drama     19
## 3281  1994                                                     Drama     19
## 3282  1982                                    Action|Sci-Fi|Thriller     19
## 3283  1994                                 Action|Adventure|Thriller     19
## 3284  1994                                            Comedy|Romance     19
## 3285  1993                        Animation|Children|Fantasy|Musical     19
## 3286  1993                                            Crime|Thriller     19
## 3287  1995                                              Comedy|Drama     19
## 3288  1994                                                     Drama     19
## 3289  1990                                           Children|Comedy     19
## 3290  1992               Adventure|Animation|Children|Comedy|Musical     19
## 3291  1991                                             Action|Sci-Fi     19
## 3292  1990                                   Adventure|Drama|Western     19
## 3293  1989                                     Action|Crime|Thriller     19
## 3294  1991                                     Crime|Horror|Thriller     19
## 3295  1937                  Animation|Children|Drama|Fantasy|Musical     19
## 3296  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     19
## 3297  1940                        Animation|Children|Fantasy|Musical     19
## 3298  1990                                            Comedy|Romance     19
## 3299  1969                                         Adventure|Western     19
## 3300  1996                               Comedy|Crime|Drama|Thriller     19
## 3301  1981                  Action|Adventure|Animation|Horror|Sci-Fi     19
## 3302  1996                                                    Comedy     19
## 3303  1996                              Crime|Drama|Mystery|Thriller     19
## 3304  1996                         Action|Adventure|Mystery|Thriller     19
## 3305  1996                                  Action|Adventure|Fantasy     19
## 3306  1996              Adventure|Animation|Children|Fantasy|Musical     19
## 3307  1996                                                  Thriller     19
## 3308  1996                                                    Comedy     19
## 3309  1968                                   Adventure|Comedy|Sci-Fi     19
## 3310  1996                                                     Drama     19
## 3311  1996                             Drama|Fantasy|Horror|Thriller     19
## 3312  1996                                 Action|Adventure|Thriller     19
## 3313  1996                         Action|Adventure|Romance|Thriller     19
## 3314  1996                                    Action|Sci-Fi|Thriller     19
## 3315  1964                                                Comedy|War     19
## 3316  1996                          Action|Adventure|Sci-Fi|Thriller     19
## 3317  1996                                           Comedy|Thriller     19
## 3318  1996                                                    Comedy     19
## 3319  1996                                     Action|Drama|Thriller     19
## 3320  1996                             Comedy|Fantasy|Romance|Sci-Fi     19
## 3321  1996                                    Comedy|Horror|Thriller     19
## 3322  1996                                     Drama|Mystery|Western     19
## 3323  1996                                             Drama|Romance     19
## 3324  1996                                            Drama|Thriller     19
## 3325  1972                                               Crime|Drama     19
## 3326  1996                                           Sci-Fi|Thriller     19
## 3327  1995                                           Horror|Thriller     19
## 3328  1940                                      Comedy|Drama|Romance     19
## 3329  1961                                             Drama|Romance     19
## 3330  1958                            Drama|Mystery|Romance|Thriller     19
## 3331  1954                                          Mystery|Thriller     19
## 3332  1959                 Action|Adventure|Mystery|Romance|Thriller     19
## 3333  1963                     Comedy|Crime|Mystery|Romance|Thriller     19
## 3334  1942                                             Drama|Romance     19
## 3335  1941                                         Film-Noir|Mystery     19
## 3336  1964                              Comedy|Drama|Musical|Romance     19
## 3337  1954                                            Comedy|Romance     19
## 3338  1953                                      Comedy|Drama|Romance     19
## 3339  1939                                            Children|Drama     19
## 3340  1939                                         Drama|Romance|War     19
## 3341  1941                                             Drama|Mystery     19
## 3342  1968                                    Adventure|Drama|Sci-Fi     19
## 3343  1940                            Drama|Mystery|Romance|Thriller     19
## 3344  1940                          Drama|Film-Noir|Mystery|Thriller     19
## 3345  1946                                Film-Noir|Romance|Thriller     19
## 3346  1945                                  Mystery|Romance|Thriller     19
## 3347  1955                            Crime|Mystery|Romance|Thriller     19
## 3348  1938                                  Action|Adventure|Romance     19
## 3349  1934                                              Comedy|Crime     19
## 3350  1940                                            Comedy|Romance     19
## 3351  1946                            Children|Drama|Fantasy|Romance     19
## 3352  1939                                                     Drama     19
## 3353  1938                                            Comedy|Romance     19
## 3354  1935                                    Drama|Mystery|Thriller     19
## 3355  1945                                                 Drama|War     19
## 3356  1968                                    Horror|Sci-Fi|Thriller     19
## 3357  1951                              Adventure|Comedy|Romance|War     19
## 3358  1955                                                     Drama     19
## 3359  1961                                   Children|Comedy|Romance     19
## 3360  1954                                    Adventure|Drama|Sci-Fi     19
## 3361  1950                Animation|Children|Fantasy|Musical|Romance     19
## 3362  1968                                Animation|Children|Musical     19
## 3363  1964                           Children|Comedy|Fantasy|Musical     19
## 3364  1941                          Animation|Children|Drama|Musical     19
## 3365  1965                                           Musical|Romance     19
## 3366  1988                                     Action|Crime|Thriller     19
## 3367  1996                                                     Drama     19
## 3368  1996                                              Comedy|Drama     19
## 3369  1996                                              Comedy|Drama     19
## 3370  1996                                                  Thriller     19
## 3371  1971                           Children|Comedy|Fantasy|Musical     19
## 3372  1973                                             Comedy|Sci-Fi     19
## 3373  1988                                              Comedy|Crime     19
## 3374  1979                                                    Comedy     19
## 3375  1972                                                     Drama     19
## 3376  1967                                               Crime|Drama     19
## 3377  1954                                    Crime|Mystery|Thriller     19
## 3378  1987                                     Drama|Musical|Romance     19
## 3379  1992                                    Crime|Mystery|Thriller     19
## 3380  1986                                                 Drama|War     19
## 3381  1989                                                    Comedy     19
## 3382  1992                                    Crime|Mystery|Thriller     19
## 3383  1991                                                     Drama     19
## 3384  1992                                    Drama|Romance|Thriller     19
## 3385  1992                                                     Drama     19
## 3386  1982                                     Children|Drama|Sci-Fi     19
## 3387  1986                                            Action|Romance     19
## 3388  1955                                                     Drama     19
## 3389  1951                                                     Drama     19
## 3390  1981                                                     Drama     19
## 3391  1991                                            Comedy|Fantasy     19
## 3392  1989                          Action|Adventure|Sci-Fi|Thriller     19
## 3393  1980                                                    Horror     19
## 3394  1981                          Action|Adventure|Sci-Fi|Thriller     19
## 3395  1980                                            Horror|Mystery     19
## 3396  1975                                  Adventure|Comedy|Fantasy     19
## 3397  1993                           Animation|Children|Comedy|Crime     19
## 3398  1979                                                 Drama|War     19
## 3399  1992                                                    Comedy     19
## 3400  1991                                      Comedy|Drama|Romance     19
## 3401  1991                                     Drama|Fantasy|Romance     19
## 3402  1957                                                 Drama|War     19
## 3403  1990                                     Crime|Drama|Film-Noir     19
## 3404  1996                                         Drama|Romance|War     19
## 3405  1989                                                     Drama     19
## 3406  1975                                                     Drama     19
## 3407  1980                                   Action|Adventure|Sci-Fi     19
## 3408  1987                   Action|Adventure|Comedy|Fantasy|Romance     19
## 3409  1981                                          Action|Adventure     19
## 3410  1985                                            Fantasy|Sci-Fi     19
## 3411  1986                            Action|Adventure|Horror|Sci-Fi     19
## 3412  1966                                  Action|Adventure|Western     19
## 3413  1957                                                     Drama     19
## 3414  1962                                       Adventure|Drama|War     19
## 3415  1971                               Crime|Drama|Sci-Fi|Thriller     19
## 3416  1962                                                     Drama     19
## 3417  1979                                          Action|Drama|War     19
## 3418  1983                                   Action|Adventure|Sci-Fi     19
## 3419  1987                                     Drama|Fantasy|Romance     19
## 3420  1949                                Film-Noir|Mystery|Thriller     19
## 3421  1990                                               Crime|Drama     19
## 3422  1979                                             Horror|Sci-Fi     19
## 3423  1993                    Action|Adventure|Comedy|Fantasy|Horror     19
## 3424  1988                                   Adventure|Drama|Romance     19
## 3425  1985                                                 Drama|War     19
## 3426  1989                               Action|Crime|Drama|Thriller     19
## 3427  1960                                              Crime|Horror     19
## 3428  1980                                     Action|Comedy|Musical     19
## 3429  1974                                               Crime|Drama     19
## 3430  1987                                                 Drama|War     19
## 3431  1984                                                     Drama     19
## 3432  1984                                               Crime|Drama     19
## 3433  1980                                                     Drama     19
## 3434  1977                                            Comedy|Romance     19
## 3435  1983                                                     Drama     19
## 3436  1981                                          Action|Drama|War     19
## 3437  1957                                                     Drama     19
## 3438  1983                                                    Comedy     19
## 3439  1984                                    Action|Sci-Fi|Thriller     19
## 3440  1989                                                 Drama|War     19
## 3441  1979                                      Comedy|Drama|Romance     19
## 3442  1989                                                     Drama     19
## 3443  1967                                      Comedy|Drama|Romance     19
## 3444  1958                                  Crime|Film-Noir|Thriller     19
## 3445  1990                             Action|Crime|Romance|Thriller     19
## 3446  1957                                       Adventure|Drama|War     19
## 3447  1974                          Crime|Film-Noir|Mystery|Thriller     19
## 3448  1951                                     Drama|Sci-Fi|Thriller     19
## 3449  1948                            Action|Adventure|Drama|Western     19
## 3450  1985                                            Comedy|Romance     19
## 3451  1980                                                    Horror     19
## 3452  1986                                           Adventure|Drama     19
## 3453  1931                                  Crime|Film-Noir|Thriller     19
## 3454  1987                              Action|Comedy|Fantasy|Horror     19
## 3455  1963                                Action|Adventure|Drama|War     19
## 3456  1978                                                 Drama|War     19
## 3457  1993                                    Comedy|Fantasy|Romance     19
## 3458  1992                                             Drama|Western     19
## 3459  1962                                        Crime|Thriller|War     19
## 3460  1990                                              Comedy|Drama     19
## 3461  1944                                   Comedy|Mystery|Thriller     19
## 3462  1985                                   Adventure|Comedy|Sci-Fi     19
## 3463  1991                                        Comedy|Crime|Drama     19
## 3464  1970                                                 Drama|War     19
## 3465  1988                         Action|Adventure|Animation|Sci-Fi     19
## 3466  1986                                  Action|Adventure|Fantasy     19
## 3467  1967                                                     Drama     19
## 3468  1974                                            Comedy|Fantasy     19
## 3469  1940                        Animation|Children|Fantasy|Musical     19
## 3470  1952                                             Drama|Western     19
## 3471  1946                                   Crime|Film-Noir|Mystery     19
## 3472  1989                                                    Comedy     19
## 3473  1980                                             Drama|Romance     19
## 3474  1959                                    Action|Adventure|Drama     19
## 3475  1984                                                    Comedy     19
## 3476  1987                                             Drama|Romance     19
## 3477  1989                                          Action|Adventure     19
## 3478  1979                                              Comedy|Drama     19
## 3479  1985                                                    Comedy     19
## 3480  1982                                             Drama|Musical     19
## 3481  1984                                                 Drama|War     19
## 3482  1989                                    Children|Drama|Fantasy     19
## 3483  1969                                            Action|Western     19
## 3484  1991                                    Adventure|Drama|Sci-Fi     19
## 3485  1989                                            Comedy|Romance     19
## 3486  1992                             Action|Horror|Sci-Fi|Thriller     19
## 3487  1981                                    Comedy|Horror|Thriller     19
## 3488  1979                             Drama|Horror|Mystery|Thriller     19
## 3489  1987                                           Horror|Thriller     19
## 3490  1963                                           Horror|Thriller     19
## 3491  1958                                             Horror|Sci-Fi     19
## 3492  1991                                           Horror|Thriller     19
## 3493  1992                           Fantasy|Horror|Romance|Thriller     19
## 3494  1992                                           Horror|Thriller     19
## 3495  1991                                                  Thriller     19
## 3496  1962                                      Crime|Drama|Thriller     19
## 3497  1976                             Drama|Fantasy|Horror|Thriller     19
## 3498  1984                                           Horror|Thriller     19
## 3499  1922                                                    Horror     19
## 3500  1976                                   Horror|Mystery|Thriller     19
## 3501  1996                                             Drama|Mystery     19
## 3502  1996                          Action|Adventure|Sci-Fi|Thriller     19
## 3503  1996                                             Drama|Romance     19
## 3504  1990                                 Action|Adventure|Thriller     19
## 3505  1979                                          Adventure|Sci-Fi     19
## 3506  1991                                     Action|Mystery|Sci-Fi     19
## 3507  1989                                             Action|Sci-Fi     19
## 3508  1982                          Action|Adventure|Sci-Fi|Thriller     19
## 3509  1984                                   Action|Adventure|Sci-Fi     19
## 3510  1986                                   Adventure|Comedy|Sci-Fi     19
## 3511  1992                                              Action|Crime     19
## 3512  1988                                     Action|Comedy|Western     19
## 3513  1978                                    Comedy|Musical|Romance     19
## 3514  1982                                    Comedy|Musical|Romance     19
## 3515  1990                                              Action|Drama     19
## 3516  1992                                     Action|Drama|Thriller     19
## 3517  1975                                             Action|Horror     19
## 3518  1978                                           Horror|Thriller     19
## 3519  1983                                             Action|Horror     19
## 3520  1996                                      Action|Comedy|Sci-Fi     19
## 3521  1996                                             Drama|Romance     19
## 3522  1987                                                    Comedy     19
## 3523  1992                          Action|Comedy|Crime|Drama|Sci-Fi     19
## 3524  1996                          Adventure|Animation|Comedy|Crime     19
## 3525  1992                                Action|Romance|War|Western     19
## 3526  1993                                            Comedy|Romance     19
## 3527  1954                                    Action|Adventure|Drama     19
## 3528  1930                                                     Drama     19
## 3529  1995               Adventure|Animation|Children|Comedy|Fantasy     20
## 3530  1995                                   Mystery|Sci-Fi|Thriller     20
## 3531  1995                                            Children|Drama     20
## 3532  1996                         Adventure|Children|Comedy|Musical     20
## 3533  1995                                          Action|Drama|War     20
## 3534  1995                                      Adventure|Drama|IMAX     20
## 3535  1995                             Action|Adventure|Comedy|Crime     20
## 3536  1995                                             Drama|Romance     20
## 3537  1994                                          Adventure|Comedy     20
## 3538  1977                                   Action|Adventure|Sci-Fi     20
## 3539  1994                               Comedy|Crime|Drama|Thriller     20
## 3540  1994                                   Action|Adventure|Sci-Fi     20
## 3541  1994                                               Crime|Drama     20
## 3542  1994                                                    Comedy     20
## 3543  1994                                  Comedy|Drama|Romance|War     20
## 3544  1994           Adventure|Animation|Children|Drama|Musical|IMAX     20
## 3545  1994                               Action|Comedy|Crime|Fantasy     20
## 3546  1994                  Action|Adventure|Comedy|Romance|Thriller     20
## 3547  1993                                                  Thriller     20
## 3548  1993                          Action|Adventure|Sci-Fi|Thriller     20
## 3549  1993                                            Comedy|Romance     20
## 3550  1993                                              Comedy|Drama     20
## 3551  1993                                                 Drama|War     20
## 3552  1992               Adventure|Animation|Children|Comedy|Musical     20
## 3553  1990                                   Adventure|Drama|Western     20
## 3554  1989                                     Action|Crime|Thriller     20
## 3555  1991                                     Crime|Horror|Thriller     20
## 3556  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     20
## 3557  1990                                            Comedy|Romance     20
## 3558  1996                               Comedy|Crime|Drama|Thriller     20
## 3559  1996                                             Comedy|Sci-Fi     20
## 3560  1996                                Adventure|Animation|Comedy     20
## 3561  1996                         Action|Adventure|Romance|Thriller     20
## 3562  1995                                 Animation|Children|Comedy     20
## 3563  1964                                                Comedy|War     20
## 3564  1996                          Action|Adventure|Sci-Fi|Thriller     20
## 3565  1972                                               Crime|Drama     20
## 3566  1954                                          Mystery|Thriller     20
## 3567  1934                                            Comedy|Romance     20
## 3568  1942                                             Drama|Romance     20
## 3569  1954                                    Adventure|Drama|Sci-Fi     20
## 3570  1982                                     Children|Drama|Sci-Fi     20
## 3571  1955                                                     Drama     20
## 3572  1975                                  Adventure|Comedy|Fantasy     20
## 3573  1993                           Animation|Children|Comedy|Crime     20
## 3574  1980                                   Action|Adventure|Sci-Fi     20
## 3575  1981                                          Action|Adventure     20
## 3576  1962                                       Adventure|Drama|War     20
## 3577  1962                                                     Drama     20
## 3578  1983                                   Action|Adventure|Sci-Fi     20
## 3579  1967                                      Comedy|Drama|Romance     20
## 3580  1944                                   Comedy|Mystery|Thriller     20
## 3581  1985                                   Adventure|Comedy|Sci-Fi     20
## 3582  1982                                                     Drama     20
## 3583  1988                                     Action|Comedy|Western     20
## 3584  1993                                            Comedy|Romance     20
## 3585  1997                                      Action|Comedy|Sci-Fi     20
## 3586  1998                                             Drama|Romance     20
## 3587  1998 Adventure|Animation|Children|Comedy|Drama|Musical|Romance     20
## 3588  1987                                                     Drama     20
## 3589  1972                                    Action|Adventure|Drama     20
## 3590  1985                           Action|Adventure|Comedy|Romance     20
## 3591  1999                                    Action|Sci-Fi|Thriller     20
## 3592  1999                                            Comedy|Romance     20
## 3593  1999                                      Drama|Horror|Mystery     20
## 3594  1999                                                     Drama     20
## 3595  1999                               Action|Crime|Drama|Thriller     20
## 3596  1999                                                     Drama     20
## 3597  1953                                                 Drama|War     20
## 3598  1951                                Action|Adventure|Drama|War     20
## 3599  2000                                       Action|Thriller|War     20
## 3600  1991                                                    Comedy     20
## 3601  2001                                         Adventure|Fantasy     20
## 3602  2002                                      Comedy|Drama|Romance     20
## 3603  2001                               Adventure|Animation|Fantasy     20
## 3604  1981                                                 Drama|War     20
## 3605  1986                                             Drama|Romance     20
## 3606  2002                                                     Drama     20
## 3607  1956                                                     Drama     20
## 3608  2003                                     Children|Comedy|Drama     20
## 3609  2003                            Action|Adventure|Drama|Fantasy     20
## 3610  1949                                            Comedy|Romance     20
## 3611  2003                                            Fantasy|Sci-Fi     20
## 3612  1969                                                     Drama     20
## 3613  1990                                          Action|Drama|War     20
## 3614  1947                                                    Comedy     20
## 3615  2004                                                     Drama     20
## 3616  1964                                                     Drama     20
## 3617  1941                                                 Drama|War     20
## 3618  1955                                        Comedy|Crime|Drama     20
## 3619  2005                       Adventure|Animation|Children|Comedy     20
## 3620  1956                                          Children|Fantasy     20
## 3621  2006                                             Drama|Romance     20
## 3622  2007                          Adventure|Comedy|Fantasy|Romance     20
## 3623  2008                                      Comedy|Drama|Romance     20
## 3624  2008                       Adventure|Animation|Children|Comedy     20
## 3625  2008                     Action|Animation|Children|Comedy|IMAX     20
## 3626  2008                                          Animation|Comedy     20
## 3627  1995                                 Action|Adventure|Thriller     21
## 3628  1995                                     Comedy|Crime|Thriller     21
## 3629  1995                                   Mystery|Sci-Fi|Thriller     21
## 3630  1995                                            Children|Drama     21
## 3631  1995                                               Crime|Drama     21
## 3632  1995                                  Action|Adventure|Fantasy     21
## 3633  1995                                          Mystery|Thriller     21
## 3634  1996                                 Action|Adventure|Thriller     21
## 3635  1995                             Action|Adventure|Comedy|Crime     21
## 3636  1995                                  Action|Drama|Romance|War     21
## 3637  1995                                           Action|Children     21
## 3638  1995                                             Horror|Sci-Fi     21
## 3639  1995                                   Action|Adventure|Sci-Fi     21
## 3640  1977                                   Action|Adventure|Sci-Fi     21
## 3641  1994                                 Drama|Romance|War|Western     21
## 3642  1994                                       Drama|Horror|Sci-Fi     21
## 3643  1994                                     Action|Crime|Thriller     21
## 3644  1994                               Comedy|Crime|Drama|Thriller     21
## 3645  1994                                   Action|Adventure|Sci-Fi     21
## 3646  1994                                    Adventure|Drama|Sci-Fi     21
## 3647  1995                                                    Comedy     21
## 3648  1994                                                    Comedy     21
## 3649  1994                                  Comedy|Drama|Romance|War     21
## 3650  1994                                   Action|Romance|Thriller     21
## 3651  1994                                    Action|Sci-Fi|Thriller     21
## 3652  1994                  Action|Adventure|Comedy|Romance|Thriller     21
## 3653  1994                                  Action|Adventure|Fantasy     21
## 3654  1993                                   Action|Adventure|Sci-Fi     21
## 3655  1993                                                  Thriller     21
## 3656  1993                                         Action|Comedy|War     21
## 3657  1993                          Action|Adventure|Sci-Fi|Thriller     21
## 3658  1993                           Action|Adventure|Comedy|Fantasy     21
## 3659  1993                                             Drama|Romance     21
## 3660  1993                                                 Drama|War     21
## 3661  1982                                    Action|Sci-Fi|Thriller     21
## 3662  1993                                   Comedy|Romance|Thriller     21
## 3663  1993                        Animation|Children|Fantasy|Musical     21
## 3664  1993                                      Action|Drama|Western     21
## 3665  1990                                           Children|Comedy     21
## 3666  1991                                             Action|Sci-Fi     21
## 3667  1990                                   Adventure|Drama|Western     21
## 3668  1989                                     Action|Crime|Thriller     21
## 3669  1991                                     Crime|Horror|Thriller     21
## 3670  1937                  Animation|Children|Drama|Fantasy|Musical     21
## 3671  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     21
## 3672  1990                                            Comedy|Romance     21
## 3673  1981                  Action|Adventure|Animation|Horror|Sci-Fi     21
## 3674  1996                         Action|Adventure|Mystery|Thriller     21
## 3675  1996                                 Action|Adventure|Thriller     21
## 3676  1964                                                Comedy|War     21
## 3677  1996                          Action|Adventure|Sci-Fi|Thriller     21
## 3678  1996                          Action|Adventure|Sci-Fi|Thriller     21
## 3679  1972                                               Crime|Drama     21
## 3680  1952                                    Comedy|Musical|Romance     21
## 3681  1959                 Action|Adventure|Mystery|Romance|Thriller     21
## 3682  1959                                              Comedy|Crime     21
## 3683  1942                                             Drama|Romance     21
## 3684  1941                                         Film-Noir|Mystery     21
## 3685  1964                              Comedy|Drama|Musical|Romance     21
## 3686  1944                                                   Musical     21
## 3687  1939                        Adventure|Children|Fantasy|Musical     21
## 3688  1939                                         Drama|Romance|War     21
## 3689  1982                                                    Comedy     21
## 3690  1941                                             Drama|Mystery     21
## 3691  1968                                    Adventure|Drama|Sci-Fi     21
## 3692  1935                                    Comedy|Musical|Romance     21
## 3693  1956                                     Drama|Romance|Western     21
## 3694  1956                                          Adventure|Comedy     21
## 3695  1946                            Children|Drama|Fantasy|Romance     21
## 3696  1939                                                     Drama     21
## 3697  1951                              Adventure|Comedy|Romance|War     21
## 3698  1957                                            Children|Drama     21
## 3699  1954                                    Adventure|Drama|Sci-Fi     21
## 3700  1950                Animation|Children|Fantasy|Musical|Romance     21
## 3701  1964                           Children|Comedy|Fantasy|Musical     21
## 3702  1971                                Adventure|Children|Musical     21
## 3703  1951              Adventure|Animation|Children|Fantasy|Musical     21
## 3704  1965                                           Musical|Romance     21
## 3705  1988                                     Action|Crime|Thriller     21
## 3706  1988                                              Comedy|Crime     21
## 3707  1979                                                    Comedy     21
## 3708  1987                                     Drama|Musical|Romance     21
## 3709  1992                                    Crime|Mystery|Thriller     21
## 3710  1986                                                 Drama|War     21
## 3711  1989                                                    Comedy     21
## 3712  1982                                     Children|Drama|Sci-Fi     21
## 3713  1955                                                     Drama     21
## 3714  1981                                                     Drama     21
## 3715  1975                                              Comedy|Crime     21
## 3716  1989                          Action|Adventure|Sci-Fi|Thriller     21
## 3717  1981                          Action|Adventure|Sci-Fi|Thriller     21
## 3718  1980                                                    Comedy     21
## 3719  1975                                  Adventure|Comedy|Fantasy     21
## 3720  1993                           Animation|Children|Comedy|Crime     21
## 3721  1989                                              Comedy|Drama     21
## 3722  1991                                      Comedy|Drama|Romance     21
## 3723  1975                                                     Drama     21
## 3724  1980                                   Action|Adventure|Sci-Fi     21
## 3725  1981                                          Action|Adventure     21
## 3726  1985                                            Fantasy|Sci-Fi     21
## 3727  1986                            Action|Adventure|Horror|Sci-Fi     21
## 3728  1957                                                     Drama     21
## 3729  1971                               Crime|Drama|Sci-Fi|Thriller     21
## 3730  1979                                          Action|Drama|War     21
## 3731  1983                                   Action|Adventure|Sci-Fi     21
## 3732  1979                                             Horror|Sci-Fi     21
## 3733  1985                                                 Drama|War     21
## 3734  1974                                               Crime|Drama     21
## 3735  1987                                                 Drama|War     21
## 3736  1989                                  Action|Drama|Romance|War     21
## 3737  1984                                                     Drama     21
## 3738  1980                                                     Drama     21
## 3739  1983                                                     Drama     21
## 3740  1973                                              Comedy|Crime     21
## 3741  1984                                    Action|Sci-Fi|Thriller     21
## 3742  1989                                                     Drama     21
## 3743  1957                                       Adventure|Drama|War     21
## 3744  1974                          Crime|Film-Noir|Mystery|Thriller     21
## 3745  1951                                     Drama|Sci-Fi|Thriller     21
## 3746  1948                            Action|Adventure|Drama|Western     21
## 3747  1933                                        Comedy|Musical|War     21
## 3748  1986                                           Adventure|Drama     21
## 3749  1978                                                 Drama|War     21
## 3750  1993                                    Comedy|Fantasy|Romance     21
## 3751  1992                                             Drama|Western     21
## 3752  1985                                   Adventure|Comedy|Sci-Fi     21
## 3753  1986                                  Action|Adventure|Fantasy     21
## 3754  1940                                          Comedy|Drama|War     21
## 3755  1940                        Animation|Children|Fantasy|Musical     21
## 3756  1952                                             Drama|Western     21
## 3757  1959                                    Action|Adventure|Drama     21
## 3758  1984                                                    Comedy     21
## 3759  1989                                          Action|Adventure     21
## 3760  1979                                              Comedy|Drama     21
## 3761  1988                                                     Drama     21
## 3762  1986                                             Drama|Romance     21
## 3763  1985                                                    Comedy     21
## 3764  1982                                             Drama|Musical     21
## 3765  1956                                              Drama|Sci-Fi     21
## 3766  1989                                    Children|Drama|Fantasy     21
## 3767  1975                                           Adventure|Drama     21
## 3768  1992                             Action|Horror|Sci-Fi|Thriller     21
## 3769  1981                                    Comedy|Horror|Thriller     21
## 3770  1979                             Drama|Horror|Mystery|Thriller     21
## 3771  1958                                             Horror|Sci-Fi     21
## 3772  1976                             Drama|Fantasy|Horror|Thriller     21
## 3773  1982                                      Drama|Fantasy|Horror     21
## 3774  1976                                   Horror|Mystery|Thriller     21
## 3775  1990                                 Action|Adventure|Thriller     21
## 3776  1979                                          Adventure|Sci-Fi     21
## 3777  1991                                     Action|Mystery|Sci-Fi     21
## 3778  1989                                             Action|Sci-Fi     21
## 3779  1982                          Action|Adventure|Sci-Fi|Thriller     21
## 3780  1984                                   Action|Adventure|Sci-Fi     21
## 3781  1986                                   Adventure|Comedy|Sci-Fi     21
## 3782  1978                                    Comedy|Musical|Romance     21
## 3783  1975                                             Action|Horror     21
## 3784  1978                                           Horror|Thriller     21
## 3785  1987                                                    Comedy     21
## 3786  1987                                              Comedy|Drama     21
## 3787  1997                                           Action|Thriller     21
## 3788  1970                                          Comedy|Drama|War     21
## 3789  1995                                   Mystery|Sci-Fi|Thriller     22
## 3790  1995                                  Action|Adventure|Fantasy     22
## 3791  1995                                          Mystery|Thriller     22
## 3792  1995                  Animation|Children|Drama|Musical|Romance     22
## 3793  1996                             Action|Comedy|Horror|Thriller     22
## 3794  1995                             Action|Adventure|Comedy|Crime     22
## 3795  1995                                        Adventure|Children     22
## 3796  1995                                    Action|Romance|Western     22
## 3797  1995                                       Action|Crime|Sci-Fi     22
## 3798  1995                                   Action|Adventure|Sci-Fi     22
## 3799  1994                                          Adventure|Comedy     22
## 3800  1994                                              Comedy|Drama     22
## 3801  1994                                              Drama|Horror     22
## 3802  1977                                   Action|Adventure|Sci-Fi     22
## 3803  1995                                                    Comedy     22
## 3804  1994                               Comedy|Crime|Drama|Thriller     22
## 3805  1994                                     Action|Drama|Thriller     22
## 3806  1994                                   Children|Comedy|Fantasy     22
## 3807  1994                                  Comedy|Drama|Romance|War     22
## 3808  1993                                   Action|Adventure|Sci-Fi     22
## 3809  1993                                                  Thriller     22
## 3810  1993                          Action|Adventure|Sci-Fi|Thriller     22
## 3811  1993                           Action|Adventure|Comedy|Fantasy     22
## 3812  1982                                    Action|Sci-Fi|Thriller     22
## 3813  1993                        Animation|Children|Fantasy|Musical     22
## 3814  1993                           Action|Adventure|Comedy|Romance     22
## 3815  1993                                            Crime|Thriller     22
## 3816  1990                                           Children|Comedy     22
## 3817  1992               Adventure|Animation|Children|Comedy|Musical     22
## 3818  1991                                             Action|Sci-Fi     22
## 3819  1989                                     Action|Crime|Thriller     22
## 3820  1991                                     Crime|Horror|Thriller     22
## 3821  1996                         Action|Adventure|Mystery|Thriller     22
## 3822  1996                                           Comedy|Thriller     22
## 3823  1996                                                    Comedy     22
## 3824  1972                                               Crime|Drama     22
## 3825  1979                                                    Comedy     22
## 3826  1992                                    Crime|Mystery|Thriller     22
## 3827  1982                                     Children|Drama|Sci-Fi     22
## 3828  1986                                            Action|Romance     22
## 3829  1993                           Animation|Children|Comedy|Crime     22
## 3830  1980                                   Action|Adventure|Sci-Fi     22
## 3831  1981                                          Action|Adventure     22
## 3832  1986                            Action|Adventure|Horror|Sci-Fi     22
## 3833  1966                                  Action|Adventure|Western     22
## 3834  1979                                          Action|Drama|War     22
## 3835  1983                                   Action|Adventure|Sci-Fi     22
## 3836  1979                                             Horror|Sci-Fi     22
## 3837  1993                    Action|Adventure|Comedy|Fantasy|Horror     22
## 3838  1984                                    Action|Sci-Fi|Thriller     22
## 3839  1987                                      Comedy|Horror|Sci-Fi     22
## 3840  1978                                                 Drama|War     22
## 3841  1985                                   Adventure|Comedy|Sci-Fi     22
## 3842  1989                                          Action|Adventure     22
## 3843  1992                             Action|Horror|Sci-Fi|Thriller     22
## 3844  1992                           Fantasy|Horror|Romance|Thriller     22
## 3845  1996                          Action|Adventure|Sci-Fi|Thriller     22
## 3846  1979                                          Adventure|Sci-Fi     22
## 3847  1991                                     Action|Mystery|Sci-Fi     22
## 3848  1982                          Action|Adventure|Sci-Fi|Thriller     22
## 3849  1984                                   Action|Adventure|Sci-Fi     22
## 3850  1986                                   Adventure|Comedy|Sci-Fi     22
## 3851  1992                                              Action|Crime     22
## 3852  1975                                             Action|Horror     22
## 3853  1996                                      Action|Comedy|Sci-Fi     22
## 3854  1997                            Action|Adventure|Comedy|Sci-Fi     22
## 3855  1997                          Action|Adventure|Sci-Fi|Thriller     22
## 3856  1997                                      Action|Comedy|Sci-Fi     22
## 3857  1997                                           Action|Thriller     22
## 3858  1997                                    Drama|Mystery|Thriller     22
## 3859  1997                                              Comedy|Drama     22
## 3860  1997                                    Drama|Mystery|Thriller     22
## 3861  1998                                       Comedy|Drama|Sci-Fi     22
## 3862  1997                                             Drama|Mystery     22
## 3863  1997                                             Drama|Romance     22
## 3864  1997                                 Action|Adventure|Thriller     22
## 3865  1998                                     Action|Crime|Thriller     22
## 3866  1997                       Comedy|Crime|Drama|Mystery|Thriller     22
## 3867  1998                                     Drama|Sci-Fi|Thriller     22
## 3868  1998                                    Adventure|Comedy|Drama     22
## 3869  1998                      Action|Crime|Mystery|Sci-Fi|Thriller     22
## 3870  1998                            Action|Romance|Sci-Fi|Thriller     22
## 3871  1998                                            Comedy|Romance     22
## 3872  1973                                            Horror|Mystery     22
## 3873  1998                                     Action|Comedy|Romance     22
## 3874  1989                                   Adventure|Comedy|Sci-Fi     22
## 3875  1990                              Crime|Drama|Mystery|Thriller     22
## 3876  1989                 Animation|Children|Comedy|Musical|Romance     22
## 3877  1984                                  Action|Adventure|Fantasy     22
## 3878  1988                                            Comedy|Fantasy     22
## 3879  1997                            Horror|Mystery|Sci-Fi|Thriller     22
## 3880  1982                             Action|Horror|Sci-Fi|Thriller     22
## 3881  1990                                     Drama|Fantasy|Romance     22
## 3882  1981                                            Comedy|Musical     22
## 3883  1998                                                   Romance     22
## 3884  1985                                 Action|Adventure|Thriller     22
## 3885  1998                                              Comedy|Drama     22
## 3886  1974                                                    Horror     22
## 3887  1999                                              Comedy|Crime     22
## 3888  1998                                     Comedy|Crime|Thriller     22
## 3889  1999                                    Action|Sci-Fi|Thriller     22
## 3890  1999                                            Crime|Thriller     22
## 3891  1990                                              Action|Crime     22
## 3892  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     22
## 3893  1975                              Comedy|Horror|Musical|Sci-Fi     22
## 3894  1999                                     Drama|Sci-Fi|Thriller     22
## 3895  1999                                   Action|Adventure|Comedy     22
## 3896  1999                                  Animation|Comedy|Musical     22
## 3897  1999                              Action|Comedy|Sci-Fi|Western     22
## 3898  1999                                     Drama|Horror|Thriller     22
## 3899  1999                                    Drama|Mystery|Thriller     22
## 3900  1984                                      Action|Comedy|Sci-Fi     22
## 3901  1989                                     Comedy|Fantasy|Sci-Fi     22
## 3902  1999                                     Action|Comedy|Fantasy     22
## 3903  1999                                      Drama|Horror|Mystery     22
## 3904  1999                                            Action|Mystery     22
## 3905  1999                                             Drama|Romance     22
## 3906  1999                               Action|Crime|Drama|Thriller     22
## 3907  1992                                           Children|Comedy     22
## 3908  1999                               Action|Crime|Drama|Thriller     22
## 3909  1987                        Action|Crime|Drama|Sci-Fi|Thriller     22
## 3910  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     22
## 3911  1989                                 Action|Adventure|Thriller     22
## 3912  1987                                             Comedy|Sci-Fi     22
## 3913  1999                                  Adventure|Comedy|Fantasy     22
## 3914  1999                            Fantasy|Horror|Mystery|Romance     22
## 3915  1999                                 Action|Adventure|Thriller     22
## 3916  1999                                               Crime|Drama     22
## 3917  1999                                    Drama|Mystery|Thriller     22
## 3918  1993                                        Animation|Children     22
## 3919  1992                                                    Comedy     22
## 3920  2000                                           Adventure|Drama     22
## 3921  2000                                    Horror|Sci-Fi|Thriller     22
## 3922  2000                                                    Sci-Fi     22
## 3923  1999                           Fantasy|Horror|Mystery|Thriller     22
## 3924  2000                                                     Drama     22
## 3925  1990                     Action|Children|Comedy|Fantasy|Sci-Fi     22
## 3926  1987                                    Action|Sci-Fi|Thriller     22
## 3927  2000                             Crime|Horror|Mystery|Thriller     22
## 3928  2000                                    Action|Adventure|Drama     22
## 3929  2000                                 Action|Adventure|Thriller     22
## 3930  1990                                    Action|Sci-Fi|Thriller     22
## 3931  2000                                 Animation|Children|Comedy     22
## 3932  2000                                   Action|Adventure|Sci-Fi     22
## 3933  1991                                                    Comedy     22
## 3934  2000                                    Horror|Sci-Fi|Thriller     22
## 3935  1988                               Action|Comedy|Crime|Romance     22
## 3936  2000                                             Action|Comedy     22
## 3937  2000                                              Drama|Sci-Fi     22
## 3938  2000                                      Action|Drama|Romance     22
## 3939  2000                                          Action|Adventure     22
## 3940  2000                                     Comedy|Crime|Thriller     22
## 3941  2000                                             Comedy|Sci-Fi     22
## 3942  2000                                    Adventure|Comedy|Crime     22
## 3943  1981                                   Fantasy|Horror|Thriller     22
## 3944  2000                                          Mystery|Thriller     22
## 3945  2001                                               Crime|Drama     22
## 3946  1983                                        Action|Crime|Drama     22
## 3947  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     22
## 3948  2001                                    Adventure|Drama|Sci-Fi     22
## 3949  2000                              Crime|Drama|Mystery|Thriller     22
## 3950  2001                             Action|Adventure|Drama|Sci-Fi     22
## 3951  2001                                             Action|Comedy     22
## 3952  2001                             Drama|Horror|Mystery|Thriller     22
## 3953  2001                                      Crime|Drama|Thriller     22
## 3954  2001               Adventure|Animation|Children|Comedy|Fantasy     22
## 3955  2001                                Adventure|Children|Fantasy     22
## 3956  2001                                            Crime|Thriller     22
## 3957  2001                           Mystery|Romance|Sci-Fi|Thriller     22
## 3958  2001                                         Adventure|Fantasy     22
## 3959  2001                                          Action|Drama|War     22
## 3960  2001                                   Action|Mystery|Thriller     22
## 3961  2002                             Action|Horror|Sci-Fi|Thriller     22
## 3962  2002                                                  Thriller     22
## 3963  2002                          Action|Adventure|Sci-Fi|Thriller     22
## 3964  2002                                            Drama|Thriller     22
## 3965  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     22
## 3966  2002                                      Action|Comedy|Sci-Fi     22
## 3967  2002                                               Crime|Drama     22
## 3968  2002                                    Crime|Mystery|Thriller     22
## 3969  2002                                   Horror|Mystery|Thriller     22
## 3970  2002                                         Adventure|Fantasy     22
## 3971  2002                                 Action|Adventure|Thriller     22
## 3972  2002                                    Action|Sci-Fi|Thriller     22
## 3973  2002                                         Adventure|Fantasy     22
## 3974  2002                                               Crime|Drama     22
## 3975  2002                                        Comedy|Crime|Drama     22
## 3976  2003                          Action|Adventure|Sci-Fi|Thriller     22
## 3977  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     22
## 3978  2003                              Comedy|Drama|Fantasy|Romance     22
## 3979  2002                                      Action|Horror|Sci-Fi     22
## 3980  2003                           Action|Adventure|Comedy|Fantasy     22
## 3981  2003                                     Action|Fantasy|Sci-Fi     22
## 3982  2003                                     Action|Fantasy|Horror     22
## 3983  2003                                     Action|Crime|Thriller     22
## 3984  1969                                       Action|Comedy|Crime     22
## 3985  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     22
## 3986  2003                                Action|Adventure|Drama|War     22
## 3987  2003                                     Drama|Fantasy|Romance     22
## 3988  2003                            Action|Adventure|Drama|Fantasy     22
## 3989  2004                              Action|Drama|Horror|Thriller     22
## 3990  2004                           Action|Adventure|Fantasy|Horror     22
## 3991  2004                                     Action|Drama|Thriller     22
## 3992  2004                           Action|Adventure|Fantasy|Horror     22
## 3993  1973                                              Action|Crime     22
## 3994  2004       Adventure|Animation|Children|Comedy|Musical|Romance     22
## 3995  2004                                    Adventure|Fantasy|IMAX     22
## 3996  2004                              Action|Adventure|Sci-Fi|IMAX     22
## 3997  2004                               Action|Crime|Drama|Thriller     22
## 3998  2004                                   Horror|Mystery|Thriller     22
## 3999  2004                                    Drama|Mystery|Thriller     22
## 4000  2004                                   Horror|Mystery|Thriller     22
## 4001  2004                Action|Adventure|Animation|Children|Comedy     22
## 4002  2005                    Adventure|Children|Comedy|Fantasy|IMAX     22
## 4003  2004                           Action|Animation|Fantasy|Sci-Fi     22
## 4004  2005                            Action|Fantasy|Horror|Thriller     22
## 4005  2005                   Action|Crime|Film-Noir|Mystery|Thriller     22
## 4006  2005                                   Action|Adventure|Sci-Fi     22
## 4007  2005                                         Action|Crime|IMAX     22
## 4008  2005                  Animation|Comedy|Fantasy|Musical|Romance     22
## 4009  1995               Adventure|Animation|Children|Comedy|Fantasy     23
## 4010  1995                                     Action|Crime|Thriller     23
## 4011  1995                                      Comedy|Drama|Romance     23
## 4012  1995                                               Crime|Drama     23
## 4013  1995                                                    Comedy     23
## 4014  1995                        Action|Comedy|Crime|Drama|Thriller     23
## 4015  1995                                              Drama|Sci-Fi     23
## 4016  1995                                   Mystery|Sci-Fi|Thriller     23
## 4017  1995                                            Children|Drama     23
## 4018  1995                                          Mystery|Thriller     23
## 4019  1995                                    Crime|Mystery|Thriller     23
## 4020  1994                                      Comedy|Drama|Romance     23
## 4021  1995                                                     Drama     23
## 4022  1995                                           Action|Thriller     23
## 4023  1996                                                    Comedy     23
## 4024  1995                                          Action|Drama|War     23
## 4025  1976                                      Crime|Drama|Thriller     23
## 4026  1995                                      Adventure|Drama|IMAX     23
## 4027  1995                             Action|Adventure|Comedy|Crime     23
## 4028  1967                                                     Drama     23
## 4029  1995                                    Action|Sci-Fi|Thriller     23
## 4030  1995                                     Action|Crime|Thriller     23
## 4031  1995                                      Comedy|Drama|Romance     23
## 4032  1994                                              Comedy|Drama     23
## 4033  1995                                     Action|Comedy|Romance     23
## 4034  1994                                               Documentary     23
## 4035  1994                                               Crime|Drama     23
## 4036  1994                                            Comedy|Romance     23
## 4037  1994                                              Drama|Horror     23
## 4038  1977                                   Action|Adventure|Sci-Fi     23
## 4039  1995                                            Children|Drama     23
## 4040  1992                                     Drama|Fantasy|Romance     23
## 4041  1995                              Action|Drama|Sci-Fi|Thriller     23
## 4042  1994                               Action|Crime|Drama|Thriller     23
## 4043  1994                               Comedy|Crime|Drama|Thriller     23
## 4044  1994                                                     Drama     23
## 4045  1994                                                     Drama     23
## 4046  1993                                                     Drama     23
## 4047  1994                                   Action|Adventure|Sci-Fi     23
## 4048  1994                                               Crime|Drama     23
## 4049  1994                                     Comedy|Drama|Thriller     23
## 4050  1993                                                     Drama     23
## 4051  1994                                                    Comedy     23
## 4052  1994                                              Comedy|Drama     23
## 4053  1994                                  Comedy|Drama|Romance|War     23
## 4054  1994                  Action|Adventure|Comedy|Romance|Thriller     23
## 4055  1994                                             Drama|Romance     23
## 4056  1993                                               Crime|Drama     23
## 4057  1993                                   Action|Adventure|Sci-Fi     23
## 4058  1993                                                  Thriller     23
## 4059  1993                                          Action|Drama|War     23
## 4060  1994                                                    Comedy     23
## 4061  1993                          Action|Adventure|Sci-Fi|Thriller     23
## 4062  1993                           Action|Adventure|Comedy|Fantasy     23
## 4063  1993                                            Comedy|Mystery     23
## 4064  1993                                            Comedy|Romance     23
## 4065  1993                                                     Drama     23
## 4066  1993                                             Drama|Romance     23
## 4067  1993                                                 Drama|War     23
## 4068  1994                                       Comedy|Crime|Horror     23
## 4069  1993                                                     Drama     23
## 4070  1993                                      Comedy|Drama|Romance     23
## 4071  1982                                    Action|Sci-Fi|Thriller     23
## 4072  1990                                           Children|Comedy     23
## 4073  1992               Adventure|Animation|Children|Comedy|Musical     23
## 4074  1991                                             Action|Sci-Fi     23
## 4075  1990                                   Adventure|Drama|Western     23
## 4076  1989                                     Action|Crime|Thriller     23
## 4077  1991                                     Crime|Horror|Thriller     23
## 4078  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     23
## 4079  1990                                            Comedy|Romance     23
## 4080  1996                                             Drama|Romance     23
## 4081  1996                               Comedy|Crime|Drama|Thriller     23
## 4082  1996                         Action|Adventure|Mystery|Thriller     23
## 4083  1996                                  Action|Adventure|Fantasy     23
## 4084  1955                                                     Drama     23
## 4085  1959                                                     Drama     23
## 4086  1995                                 Animation|Children|Comedy     23
## 4087  1964                                                Comedy|War     23
## 4088  1996                                        Comedy|Crime|Drama     23
## 4089  1996                          Action|Adventure|Sci-Fi|Thriller     23
## 4090  1996                             Comedy|Fantasy|Romance|Sci-Fi     23
## 4091  1996                                             Drama|Romance     23
## 4092  1996                                            Drama|Thriller     23
## 4093  1959                                                    Horror     23
## 4094  1972                                               Crime|Drama     23
## 4095  1940                                      Comedy|Drama|Romance     23
## 4096  1952                                    Comedy|Musical|Romance     23
## 4097  1951                                           Musical|Romance     23
## 4098  1958                            Drama|Mystery|Romance|Thriller     23
## 4099  1954                                          Mystery|Thriller     23
## 4100  1934                                            Comedy|Romance     23
## 4101  1959                 Action|Adventure|Mystery|Romance|Thriller     23
## 4102  1960                                      Comedy|Drama|Romance     23
## 4103  1959                                              Comedy|Crime     23
## 4104  1963                     Comedy|Crime|Mystery|Romance|Thriller     23
## 4105  1942                                             Drama|Romance     23
## 4106  1941                                         Film-Noir|Mystery     23
## 4107  1964                              Comedy|Drama|Musical|Romance     23
## 4108  1939                                         Drama|Romance|War     23
## 4109  1950                                   Drama|Film-Noir|Romance     23
## 4110  1941                                             Drama|Mystery     23
## 4111  1968                                    Adventure|Drama|Sci-Fi     23
## 4112  1950                                                     Drama     23
## 4113  1940                            Drama|Mystery|Romance|Thriller     23
## 4114  1946                                Film-Noir|Romance|Thriller     23
## 4115  1945                                  Mystery|Romance|Thriller     23
## 4116  1955                            Crime|Mystery|Romance|Thriller     23
## 4117  1944                                   Crime|Film-Noir|Mystery     23
## 4118  1956                                     Drama|Romance|Western     23
## 4119  1955                                                     Drama     23
## 4120  1956                                          Adventure|Comedy     23
## 4121  1946                            Children|Drama|Fantasy|Romance     23
## 4122  1939                                                     Drama     23
## 4123  1938                                            Comedy|Romance     23
## 4124  1935                                    Drama|Mystery|Thriller     23
## 4125  1951                              Adventure|Comedy|Romance|War     23
## 4126  1958                                                     Drama     23
## 4127  1965                                           Musical|Romance     23
## 4128  1988                                     Action|Crime|Thriller     23
## 4129  1996                                                     Drama     23
## 4130  1996                                             Drama|Romance     23
## 4131  1996                                                  Thriller     23
## 4132  1973                                             Comedy|Sci-Fi     23
## 4133  1971                                                Comedy|War     23
## 4134  1979                                                    Comedy     23
## 4135  1967                                               Crime|Drama     23
## 4136  1992                                    Crime|Mystery|Thriller     23
## 4137  1986                                                 Drama|War     23
## 4138  1982                                                     Drama     23
## 4139  1982                                     Children|Drama|Sci-Fi     23
## 4140  1986                                            Action|Romance     23
## 4141  1955                                                     Drama     23
## 4142  1951                                                     Drama     23
## 4143  1975                                  Adventure|Comedy|Fantasy     23
## 4144  1989                                                     Drama     23
## 4145  1991                                      Comedy|Drama|Romance     23
## 4146  1991                                     Drama|Fantasy|Romance     23
## 4147  1957                                                 Drama|War     23
## 4148  1996                                         Drama|Romance|War     23
## 4149  1989                                                     Drama     23
## 4150  1992                                            Comedy|Romance     23
## 4151  1975                                                     Drama     23
## 4152  1980                                   Action|Adventure|Sci-Fi     23
## 4153  1987                   Action|Adventure|Comedy|Fantasy|Romance     23
## 4154  1981                                          Action|Adventure     23
## 4155  1985                                            Fantasy|Sci-Fi     23
## 4156  1966                                  Action|Adventure|Western     23
## 4157  1987                                                    Comedy     23
## 4158  1957                                                     Drama     23
## 4159  1962                                       Adventure|Drama|War     23
## 4160  1971                               Crime|Drama|Sci-Fi|Thriller     23
## 4161  1962                                                     Drama     23
## 4162  1979                                          Action|Drama|War     23
## 4163  1983                                   Action|Adventure|Sci-Fi     23
## 4164  1987                                     Drama|Fantasy|Romance     23
## 4165  1949                                Film-Noir|Mystery|Thriller     23
## 4166  1990                                               Crime|Drama     23
## 4167  1985                                                 Drama|War     23
## 4168  1989                               Action|Crime|Drama|Thriller     23
## 4169  1960                                              Crime|Horror     23
## 4170  1974                                               Crime|Drama     23
## 4171  1987                                                 Drama|War     23
## 4172  1984                                                     Drama     23
## 4173  1984                                               Crime|Drama     23
## 4174  1980                                                     Drama     23
## 4175  1977                                            Comedy|Romance     23
## 4176  1983                                                     Drama     23
## 4177  1979                                      Drama|Mystery|Sci-Fi     23
## 4178  1981                                          Action|Drama|War     23
## 4179  1973                                              Comedy|Crime     23
## 4180  1971                                      Comedy|Drama|Romance     23
## 4181  1957                                                     Drama     23
## 4182  1984                                    Action|Sci-Fi|Thriller     23
## 4183  1992                                     Comedy|Fantasy|Horror     23
## 4184  1990                                              Comedy|Drama     23
## 4185  1979                                      Comedy|Drama|Romance     23
## 4186  1989                                                     Drama     23
## 4187  1967                                      Comedy|Drama|Romance     23
## 4188  1958                                  Crime|Film-Noir|Thriller     23
## 4189  1957                                       Adventure|Drama|War     23
## 4190  1963                                             Drama|Fantasy     23
## 4191  1974                          Crime|Film-Noir|Mystery|Thriller     23
## 4192  1948                            Action|Adventure|Drama|Western     23
## 4193  1933                                        Comedy|Musical|War     23
## 4194  1980                                                    Horror     23
## 4195  1931                                  Crime|Film-Noir|Thriller     23
## 4196  1963                                Action|Adventure|Drama|War     23
## 4197  1978                                                 Drama|War     23
## 4198  1993                                    Comedy|Fantasy|Romance     23
## 4199  1992                                             Drama|Western     23
## 4200  1962                                        Crime|Thriller|War     23
## 4201  1944                                   Comedy|Mystery|Thriller     23
## 4202  1985                                   Adventure|Comedy|Sci-Fi     23
## 4203  1970                                                 Drama|War     23
## 4204  1990                                      Comedy|Drama|Romance     23
## 4205  1991                                                     Drama     23
## 4206  1940                                          Comedy|Drama|War     23
## 4207  1946                                   Crime|Film-Noir|Mystery     23
## 4208  1959                                    Action|Adventure|Drama     23
## 4209  1984                                                    Comedy     23
## 4210  1989                                          Action|Adventure     23
## 4211  1982                                                     Drama     23
## 4212  1969                                            Action|Western     23
## 4213  1984                                             Drama|Romance     23
## 4214  1989                                            Comedy|Romance     23
## 4215  1963                                           Horror|Thriller     23
## 4216  1991                                                  Thriller     23
## 4217  1922                                                    Horror     23
## 4218  1996                                             Drama|Mystery     23
## 4219  1996                          Action|Adventure|Sci-Fi|Thriller     23
## 4220  1992                                              Action|Crime     23
## 4221  1978                                    Comedy|Musical|Romance     23
## 4222  1975                                             Action|Horror     23
## 4223  1996                                      Action|Comedy|Sci-Fi     23
## 4224  1996                                             Drama|Romance     23
## 4225  1987                                                    Comedy     23
## 4226  1992                                Action|Romance|War|Western     23
## 4227  1996                                       Crime|Drama|Romance     23
## 4228  1997                                           Action|Thriller     23
## 4229  1997             Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     23
## 4230  1997                                 Action|Adventure|Thriller     23
## 4231  1997                                      Comedy|Crime|Romance     23
## 4232  1997                                     Action|Drama|Thriller     23
## 4233  1997                            Action|Adventure|Comedy|Sci-Fi     23
## 4234  1997                          Action|Adventure|Sci-Fi|Thriller     23
## 4235  1997                                 Action|Adventure|Thriller     23
## 4236  1997                                   Action|Romance|Thriller     23
## 4237  1997                         Action|Adventure|Fantasy|Thriller     23
## 4238  1997                                      Action|Comedy|Sci-Fi     23
## 4239  1997                                              Drama|Sci-Fi     23
## 4240  1997                                           Action|Thriller     23
## 4241  1997                          Crime|Film-Noir|Mystery|Thriller     23
## 4242  1997                                    Drama|Mystery|Thriller     23
## 4243  1997                                                     Drama     23
## 4244  1998                                       Comedy|Drama|Sci-Fi     23
## 4245  1997                                             Drama|Mystery     23
## 4246  1997                                             Drama|Romance     23
## 4247  1997                                             Drama|Romance     23
## 4248  1997                                 Action|Adventure|Thriller     23
## 4249  1998                                              Comedy|Crime     23
## 4250  1998                                             Drama|Romance     23
## 4251  1998                       Adventure|Film-Noir|Sci-Fi|Thriller     23
## 4252  1998                                     Action|Crime|Thriller     23
## 4253  1998                                          Documentary|IMAX     23
## 4254  1998                                     Drama|Fantasy|Romance     23
## 4255  1997                                                     Drama     23
## 4256  1998                                   Crime|Drama|Romance|War     23
## 4257  1998                                     Drama|Sci-Fi|Thriller     23
## 4258  1997                                              Comedy|Drama     23
## 4259  1998 Adventure|Animation|Children|Comedy|Drama|Musical|Romance     23
## 4260  1998                            Action|Romance|Sci-Fi|Thriller     23
## 4261  1930                                          Action|Drama|War     23
## 4262  1935                                           Adventure|Drama     23
## 4263  1936                                             Drama|Musical     23
## 4264  1941                                     Drama|Musical|Romance     23
## 4265  1948                                                     Drama     23
## 4266  1953                                         Drama|Romance|War     23
## 4267  1954                                               Crime|Drama     23
## 4268  1955                                             Drama|Romance     23
## 4269  1961                                     Drama|Musical|Romance     23
## 4270  1966                                                     Drama     23
## 4271  1967                                             Drama|Mystery     23
## 4272  1968                                             Drama|Musical     23
## 4273  1969                                                     Drama     23
## 4274  1971                                     Action|Crime|Thriller     23
## 4275  1976                                                     Drama     23
## 4276  1979                                                     Drama     23
## 4277  1980                                                     Drama     23
## 4278  1981                                                     Drama     23
## 4279  1983                                              Comedy|Drama     23
## 4280  1985                                             Drama|Romance     23
## 4281  1987                                                     Drama     23
## 4282  1988                                                     Drama     23
## 4283  1989                                                     Drama     23
## 4284  1973                                            Horror|Mystery     23
## 4285  1992                                 Action|Comedy|Crime|Drama     23
## 4286  1927                                              Drama|Sci-Fi     23
## 4287  1989                                   Adventure|Comedy|Sci-Fi     23
## 4288  1990                           Adventure|Comedy|Sci-Fi|Western     23
## 4289  1954                                    Action|Adventure|Drama     23
## 4290  1988                                                     Drama     23
## 4291  1990                              Crime|Drama|Mystery|Thriller     23
## 4292  1998                                              Comedy|Crime     23
## 4293  1998                                          Action|Drama|War     23
## 4294  1965                                         Drama|Romance|War     23
## 4295  1982                                     Drama|Fantasy|Mystery     23
## 4296  1984                                  Action|Adventure|Fantasy     23
## 4297  1998                             Action|Crime|Mystery|Thriller     23
## 4298  1966                                                     Drama     23
## 4299  1985                                 Adventure|Fantasy|Romance     23
## 4300  1988                                            Comedy|Fantasy     23
## 4301  1948                                      Crime|Drama|Thriller     23
## 4302  1972                                                  Thriller     23
## 4303  1964                            Drama|Mystery|Romance|Thriller     23
## 4304  1956                          Adventure|Drama|Mystery|Thriller     23
## 4305  1951                            Crime|Drama|Film-Noir|Thriller     23
## 4306  1987                                        Action|Crime|Drama     23
## 4307  1943                                      Crime|Drama|Thriller     23
## 4308  1941                                            Comedy|Romance     23
## 4309  1998                                                     Drama     23
## 4310  1989                                      Comedy|Drama|Romance     23
## 4311  1998                              Action|Comedy|Crime|Thriller     23
## 4312  1998                                     Action|Crime|Thriller     23
## 4313  1992                                        Comedy|Crime|Drama     23
## 4314  1990                                     Drama|Fantasy|Romance     23
## 4315  1980                                                     Drama     23
## 4316  1998                                      Comedy|Drama|Fantasy     23
## 4317  1997                                  Comedy|Drama|Romance|War     23
## 4318  1998                                               Crime|Drama     23
## 4319  1998                                                     Drama     23
## 4320  1998                                           Action|Thriller     23
## 4321  1998                                                     Drama     23
## 4322  1957                                                     Drama     23
## 4323  1998                                           Action|Thriller     23
## 4324  1998                                                     Drama     23
## 4325  1998                                                     Drama     23
## 4326  1972                                                    Comedy     23
## 4327  1998                                         Animation|Musical     23
## 4328  1998                                      Comedy|Drama|Romance     23
## 4329  1984                           Action|Adventure|Comedy|Romance     23
## 4330  1998                                            Comedy|Romance     23
## 4331  1986                              Crime|Drama|Mystery|Thriller     23
## 4332  1986                                                     Drama     23
## 4333  1999                                                     Drama     23
## 4334  1999                                              Comedy|Crime     23
## 4335  1999                                                    Comedy     23
## 4336  1998                                     Comedy|Crime|Thriller     23
## 4337  1999                                    Action|Sci-Fi|Thriller     23
## 4338  1998                                                     Drama     23
## 4339  1999                                              Comedy|Crime     23
## 4340  1999                                                    Comedy     23
## 4341  1999                                    Action|Sci-Fi|Thriller     23
## 4342  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     23
## 4343  1999                                   Action|Adventure|Sci-Fi     23
## 4344  1978                                   Action|Adventure|Sci-Fi     23
## 4345  1931                                                    Horror     23
## 4346  1931                                       Drama|Horror|Sci-Fi     23
## 4347  1975                              Comedy|Horror|Musical|Sci-Fi     23
## 4348  1998                                              Action|Crime     23
## 4349  1990                                             Comedy|Horror     23
## 4350  1999                                                     Drama     23
## 4351  1999                                    Drama|Mystery|Thriller     23
## 4352  1984                                      Action|Comedy|Sci-Fi     23
## 4353  1999                                            Comedy|Romance     23
## 4354  1999                                            Comedy|Romance     23
## 4355  1956                                           Crime|Film-Noir     23
## 4356  1960                                  Action|Drama|Romance|War     23
## 4357  1962                                             Drama|Romance     23
## 4358  1975                                         Drama|Romance|War     23
## 4359  1959                                               Crime|Drama     23
## 4360  1985                                                     Drama     23
## 4361  1986                                     Comedy|Horror|Musical     23
## 4362  1999                                      Drama|Horror|Mystery     23
## 4363  1999                                            Comedy|Romance     23
## 4364  1999                                             Drama|Romance     23
## 4365  1972                                  Adventure|Drama|Thriller     23
## 4366  1999                         Action|Adventure|Comedy|Drama|War     23
## 4367  1962                                    Action|Adventure|Drama     23
## 4368  1999                                                     Drama     23
## 4369  1986                                                    Comedy     23
## 4370  1978                                                     Drama     23
## 4371  1964                                 Action|Adventure|Thriller     23
## 4372  1996                                      Crime|Drama|Thriller     23
## 4373  1992                                           Children|Comedy     23
## 4374  1999                               Action|Crime|Drama|Thriller     23
## 4375  1982                                           Adventure|Drama     23
## 4376  1999                                                     Drama     23
## 4377  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     23
## 4378  1999                                      Comedy|Drama|Fantasy     23
## 4379  1999                                            Drama|Thriller     23
## 4380  1989                                               Crime|Drama     23
## 4381  1993                                              Action|Drama     23
## 4382  1999                                  Adventure|Comedy|Fantasy     23
## 4383  1999                                                 Drama|War     23
## 4384  1988                                              Comedy|Drama     23
## 4385  1999                            Fantasy|Horror|Mystery|Romance     23
## 4386  1999                                 Action|Adventure|Thriller     23
## 4387  1999                                                     Drama     23
## 4388  1950                                            Comedy|Fantasy     23
## 4389  1948                                                     Drama     23
## 4390  1940                                                     Drama     23
## 4391  1992                                                     Drama     23
## 4392  1999               Adventure|Animation|Children|Comedy|Fantasy     23
## 4393  1999                                               Crime|Drama     23
## 4394  1971                                                     Drama     23
## 4395  1999                                             Drama|Romance     23
## 4396  1999                           Animation|Children|Musical|IMAX     23
## 4397  1999                                                     Drama     23
## 4398  1969                                           Adventure|Drama     23
## 4399  1999                                    Drama|Mystery|Thriller     23
## 4400  1970                                                     Drama     23
## 4401  1964                                                     Drama     23
## 4402  1992                                                     Drama     23
## 4403  1993                                                    Comedy     23
## 4404  1992                                                     Drama     23
## 4405  1992                             Action|Crime|Thriller|Western     23
## 4406  1931                                      Comedy|Drama|Romance     23
## 4407  1921                                              Comedy|Drama     23
## 4408  2000                                              Comedy|Drama     23
## 4409  1956                                             Drama|Western     23
## 4410  1976                                                     Drama     23
## 4411  1991                                    Drama|Mystery|Thriller     23
## 4412  1958                                              Action|Drama     23
## 4413  2000                                                     Drama     23
## 4414  1975                                                     Drama     23
## 4415  1989                                                     Drama     23
## 4416  1944                                     Crime|Drama|Film-Noir     23
## 4417  1987                                          Comedy|Drama|War     23
## 4418  1936                                      Comedy|Drama|Romance     23
## 4419  1961                                                     Drama     23
## 4420  1977                                    Adventure|Drama|Sci-Fi     23
## 4421  1951                                             Drama|Romance     23
## 4422  2000                                      Comedy|Drama|Romance     23
## 4423  1991                                  Adventure|Comedy|Fantasy     23
## 4424  1978                                                     Drama     23
## 4425  1972                                      Drama|Mystery|Sci-Fi     23
## 4426  1976                                              Comedy|Drama     23
## 4427  2000                                            Drama|Thriller     23
## 4428  2000                             Crime|Horror|Mystery|Thriller     23
## 4429  1962                                     Drama|Horror|Thriller     23
## 4430  1952                                      Comedy|Drama|Romance     23
## 4431  1998                                              Comedy|Drama     23
## 4432  2000                                    Action|Adventure|Drama     23
## 4433  2000                                              Comedy|Crime     23
## 4434  2000                                 Action|Adventure|Thriller     23
## 4435  1925                                  Adventure|Comedy|Romance     23
## 4436  1968                                             Drama|Romance     23
## 4437  1974                                            Comedy|Western     23
## 4438  1965                             Action|Drama|Thriller|Western     23
## 4439  1974                                             Drama|Mystery     23
## 4440  1951                                                     Drama     23
## 4441  1973                                      Crime|Drama|Thriller     23
## 4442  2000                                 Animation|Children|Comedy     23
## 4443  2000                                          Action|Drama|War     23
## 4444  1966                                             Drama|Mystery     23
## 4445  1959                                             Drama|Mystery     23
## 4446  1989                                                     Drama     23
## 4447  1953                                             Drama|Western     23
## 4448  2000                                                     Drama     23
## 4449  2000                                             Drama|Musical     23
## 4450  2000                                                     Drama     23
## 4451  2000                                             Drama|Romance     23
## 4452  1999                                               Documentary     23
## 4453  2000                                         Drama|Romance|War     23
## 4454  2000                                              Drama|Sci-Fi     23
## 4455  2000                                      Action|Drama|Romance     23
## 4456  1987                                                     Drama     23
## 4457  1989                                                 Drama|War     23
## 4458  2000                                     Comedy|Crime|Thriller     23
## 4459  2000                                             Drama|Romance     23
## 4460  2000                                                     Drama     23
## 4461  2000                                    Adventure|Comedy|Crime     23
## 4462  2000                                      Crime|Drama|Thriller     23
## 4463  1987                          Crime|Film-Noir|Mystery|Thriller     23
## 4464  1987                                Action|Adventure|Drama|War     23
## 4465  2001                                           Horror|Thriller     23
## 4466  2001                                                  Thriller     23
## 4467  2001                                                 Drama|War     23
## 4468  2001                                                    Comedy     23
## 4469  2000                                          Mystery|Thriller     23
## 4470  2000                                            Drama|Thriller     23
## 4471  2001                                                    Comedy     23
## 4472  1934                                               Documentary     23
## 4473  1969                                             Drama|Fantasy     23
## 4474  1987                                                     Drama     23
## 4475  2001                                     Drama|Musical|Romance     23
## 4476  2001                                  Action|Drama|Romance|War     23
## 4477  1999                                           Adventure|Drama     23
## 4478  2001                                             Comedy|Sci-Fi     23
## 4479  2001                                        Action|Crime|Drama     23
## 4480  1955                                                    Comedy     23
## 4481  2001                                    Adventure|Drama|Sci-Fi     23
## 4482  2000                                               Crime|Drama     23
## 4483  1957                                           Drama|Film-Noir     23
## 4484  2001                                            Comedy|Romance     23
## 4485  1994                                          Documentary|IMAX     23
## 4486  1989                                     Drama|Fantasy|Romance     23
## 4487  1989                                   Adventure|Comedy|Sci-Fi     23
## 4488  2001                                              Comedy|Drama     23
## 4489  2001                             Drama|Horror|Mystery|Thriller     23
## 4490  2001                                                    Comedy     23
## 4491  2001                                            Comedy|Romance     23
## 4492  2001                    Crime|Drama|Film-Noir|Mystery|Thriller     23
## 4493  1971                                             Drama|Musical     23
## 4494  2001                             Crime|Horror|Mystery|Thriller     23
## 4495  2001                             Drama|Mystery|Sci-Fi|Thriller     23
## 4496  2001                                               Crime|Drama     23
## 4497  2001               Adventure|Animation|Children|Comedy|Fantasy     23
## 4498  2001                                Adventure|Children|Fantasy     23
## 4499  2001                               Action|Crime|Drama|Thriller     23
## 4500  1960                                       Crime|Drama|Romance     23
## 4501  2001                                            Crime|Thriller     23
## 4502  2001                                                 Drama|War     23
## 4503  2001                                            Comedy|Romance     23
## 4504  2001                           Mystery|Romance|Sci-Fi|Thriller     23
## 4505  2001                                                     Drama     23
## 4506  2001                                    Drama|Mystery|Thriller     23
## 4507  2001                                              Comedy|Drama     23
## 4508  2001                                         Adventure|Fantasy     23
## 4509  2001                                             Drama|Romance     23
## 4510  2001                                      Comedy|Drama|Mystery     23
## 4511  2001                                                     Drama     23
## 4512  2001                                             Drama|Romance     23
## 4513  1970                                          Comedy|Drama|War     23
## 4514  2001                                                     Drama     23
## 4515  1994                                                    Comedy     23
## 4516  1952                                                     Drama     23
## 4517  2001                                            Comedy|Romance     23
## 4518  1957                                                     Drama     23
## 4519  1942                                             Drama|Romance     23
## 4520  2001                                            Comedy|Romance     23
## 4521  2001                                             Drama|Romance     23
## 4522  2002                                                  Thriller     23
## 4523  1950                                       Crime|Drama|Mystery     23
## 4524  2002                                            Comedy|Romance     23
## 4525  1945                                                 Drama|War     23
## 4526  2002                                              Comedy|Drama     23
## 4527  2002                          Action|Adventure|Sci-Fi|Thriller     23
## 4528  1985                                             Drama|Romance     23
## 4529  1957                                         Drama|Romance|War     23
## 4530  2002                                      Comedy|Drama|Romance     23
## 4531  2002                              Action|Adventure|Sci-Fi|IMAX     23
## 4532  1978                                               Documentary     23
## 4533  2002                       Action|Crime|Drama|Mystery|Thriller     23
## 4534  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     23
## 4535  2002                                           Adventure|Drama     23
## 4536  2002                                  Action|Adventure|Fantasy     23
## 4537  2002                                               Crime|Drama     23
## 4538  1952                                            Comedy|Romance     23
## 4539  1979                                                    Horror     23
## 4540  2002                                    Horror|Sci-Fi|Thriller     23
## 4541  1931                                             Drama|Romance     23
## 4542  2001                               Adventure|Animation|Fantasy     23
## 4543  2002                                                     Drama     23
## 4544  2002                                               Documentary     23
## 4545  2002                                      Comedy|Drama|Romance     23
## 4546  2002                                   Horror|Mystery|Thriller     23
## 4547  2001                                                     Drama     23
## 4548  2002                                                     Drama     23
## 4549  2002                                         Adventure|Fantasy     23
## 4550  2002                                             Drama|Romance     23
## 4551  2002                                      Drama|Romance|Sci-Fi     23
## 4552  2002                  Adventure|Animation|Children|Sci-Fi|IMAX     23
## 4553  2002                                      Comedy|Drama|Romance     23
## 4554  1982                                                    Comedy     23
## 4555  2001                                                  Thriller     23
## 4556  2002                                         Adventure|Fantasy     23
## 4557  2002                                               Crime|Drama     23
## 4558  2002                                               Crime|Drama     23
## 4559  1988                          Animation|Children|Drama|Fantasy     23
## 4560  2002                                               Crime|Drama     23
## 4561  2002                                Comedy|Crime|Drama|Musical     23
## 4562  2002                                             Drama|Romance     23
## 4563  2002                                                 Drama|War     23
## 4564  1983                                              Comedy|Drama     23
## 4565  2002                                                     Drama     23
## 4566  2002                     Action|Adventure|Crime|Drama|Thriller     23
## 4567  2002                                           Adventure|Drama     23
## 4568  2002                                             Drama|Mystery     23
## 4569  2002                              Crime|Drama|Mystery|Thriller     23
## 4570  2002                                      Comedy|Drama|Romance     23
## 4571  1990                                                 Drama|War     23
## 4572  2002                                            Drama|Thriller     23
## 4573  2003                             Crime|Horror|Mystery|Thriller     23
## 4574  2003                          Action|Adventure|Sci-Fi|Thriller     23
## 4575  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     23
## 4576  2003                       Adventure|Animation|Children|Comedy     23
## 4577  1952                                            Comedy|Romance     23
## 4578  1987                                              Comedy|Drama     23
## 4579  1991                                            Drama|Thriller     23
## 4580  2003                                   Action|Adventure|Sci-Fi     23
## 4581  2003                           Action|Adventure|Comedy|Fantasy     23
## 4582  2002                                      Crime|Drama|Thriller     23
## 4583  2002                                                     Drama     23
## 4584  1961                                                     Drama     23
## 4585  1952                                                     Drama     23
## 4586  2003                                              Comedy|Drama     23
## 4587  2000                                                     Drama     23
## 4588  1953                                                     Drama     23
## 4589  1972                                      Comedy|Drama|Fantasy     23
## 4590  1952                                                     Drama     23
## 4591  2003                                        Comedy|Crime|Drama     23
## 4592  2003                           Action|Adventure|Crime|Thriller     23
## 4593  2003                                      Comedy|Drama|Romance     23
## 4594  1939                                              Comedy|Drama     23
## 4595  1976                                            Drama|Thriller     23
## 4596  1991                                               Crime|Drama     23
## 4597  1983                                                    Comedy     23
## 4598  2003                                              Comedy|Drama     23
## 4599  2003                                       Crime|Drama|Mystery     23
## 4600  2003                                            Comedy|Romance     23
## 4601  2003                                     Action|Crime|Thriller     23
## 4602  2003                                              Comedy|Drama     23
## 4603  2003                                                     Drama     23
## 4604  1957                                                     Drama     23
## 4605  2003                                               Crime|Drama     23
## 4606  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     23
## 4607  1991                                                    Comedy     23
## 4608  2003                                       Adventure|Drama|War     23
## 4609  2003                      Crime|Drama|Mystery|Romance|Thriller     23
## 4610  2003                        Comedy|Crime|Drama|Mystery|Romance     23
## 4611  1997                                     Drama|Horror|Thriller     23
## 4612  1955                                                     Drama     23
## 4613  1952                                                 Drama|War     23
## 4614  1928                                                     Drama     23
## 4615  1920                                      Crime|Fantasy|Horror     23
## 4616  1986                                      Comedy|Drama|Romance     23
## 4617  1990                              Action|Comedy|Crime|Thriller     23
## 4618  1972                                             Drama|Romance     23
## 4619  1955                                  Drama|Film-Noir|Thriller     23
## 4620  2000                                             Drama|Romance     23
## 4621  1986                                             Drama|Romance     23
## 4622  1972                                           Adventure|Drama     23
## 4623  1948                                  Action|Adventure|Western     23
## 4624  1939                              Action|Drama|Romance|Western     23
## 4625  1959                                             Drama|Romance     23
## 4626  2002                                    Action|Adventure|Drama     23
## 4627  1979                                                Comedy|War     23
## 4628  1935                                    Comedy|Musical|Romance     23
## 4629  1968                                      Comedy|Drama|Romance     23
## 4630  2002                                             Drama|Romance     23
## 4631  2003                                     Drama|Fantasy|Romance     23
## 4632  2003                            Action|Adventure|Drama|Fantasy     23
## 4633  2003                                               Crime|Drama     23
## 4634  2003                                           Children|Comedy     23
## 4635  2003                                         Drama|Romance|War     23
## 4636  1954                                                     Drama     23
## 4637  2003                                                     Drama     23
## 4638  2003                                              Comedy|Drama     23
## 4639  2004                                          Mystery|Thriller     23
## 4640  2004                                      Drama|Romance|Sci-Fi     23
## 4641  2003                                    Drama|Mystery|Thriller     23
## 4642  1985                                           Comedy|Thriller     23
## 4643  2004                                     Action|Drama|Thriller     23
## 4644  2004                                Action|Adventure|Drama|War     23
## 4645  1967                          Action|Adventure|Sci-Fi|Thriller     23
## 4646  1967                                      Crime|Drama|Thriller     23
## 4647  1942                             Drama|Horror|Romance|Thriller     23
## 4648  1965                                               Crime|Drama     23
## 4649  1983                                                     Drama     23
## 4650  1957                                 Action|Drama|Thriller|War     23
## 4651  1964                                           Adventure|Drama     23
## 4652  1953                                             Drama|Romance     23
## 4653  2002                             Drama|Horror|Mystery|Thriller     23
## 4654  1973                                               Crime|Drama     23
## 4655  1927                                             Drama|Romance     23
## 4656  1960                                                     Drama     23
## 4657  1960                                     Drama|Mystery|Romance     23
## 4658  1961                                              Comedy|Drama     23
## 4659  1947                                                     Drama     23
## 4660  2004                                    Adventure|Fantasy|IMAX     23
## 4661  2004                                                    Comedy     23
## 4662  2004                                  Comedy|Documentary|Drama     23
## 4663  1932                                        Crime|Drama|Horror     23
## 4664  2004                                      Comedy|Drama|Romance     23
## 4665  2004                              Action|Adventure|Sci-Fi|IMAX     23
## 4666  1988                                               Crime|Drama     23
## 4667  2004                                           Adventure|Drama     23
## 4668  2004                                                    Comedy     23
## 4669  2004                                      Comedy|Drama|Romance     23
## 4670  2004                                      Crime|Drama|Thriller     23
## 4671  2004                                                     Drama     23
## 4672  2004                                                     Drama     23
## 4673  2004                                                     Drama     23
## 4674  2004                                            Drama|Thriller     23
## 4675  2004                              Action|Comedy|Crime|Thriller     23
## 4676  1924                                                     Drama     23
## 4677  1928                                            Comedy|Romance     23
## 4678  1934                                      Comedy|Drama|Romance     23
## 4679  1959                                               Crime|Drama     23
## 4680  1966                                                 Drama|War     23
## 4681  1971                                   Action|Mystery|Thriller     23
## 4682  1991                                               Documentary     23
## 4683  2004                              Drama|Fantasy|Romance|Sci-Fi     23
## 4684  1999                     Drama|Horror|Mystery|Romance|Thriller     23
## 4685  2004                                 Drama|Mystery|Romance|War     23
## 4686  2004                                                     Drama     23
## 4687  2004                                                     Drama     23
## 4688  2004                                                 Drama|War     23
## 4689  2005                    Adventure|Children|Comedy|Fantasy|IMAX     23
## 4690  2004                                                     Drama     23
## 4691  2004                                                     Drama     23
## 4692  2003                                        Action|Crime|Drama     23
## 4693  2004                       Adventure|Animation|Fantasy|Romance     23
## 4694  2005                   Action|Crime|Film-Noir|Mystery|Thriller     23
## 4695  1962                                                 Drama|War     23
## 4696  2005                                  Action|Drama|Romance|War     23
## 4697  2004                                               Crime|Drama     23
## 4698  2005                                   Action|Adventure|Sci-Fi     23
## 4699  2005                                         Action|Crime|IMAX     23
## 4700  2004                                Comedy|Crime|Drama|Romance     23
## 4701  2005                          Action|Adventure|Sci-Fi|Thriller     23
## 4702  2005                                     Drama|Horror|Thriller     23
## 4703  2005                                                     Drama     23
## 4704  2005                                              Comedy|Drama     23
## 4705  2005                                            Drama|Thriller     23
## 4706  2005                           Action|Crime|Drama|Thriller|War     23
## 4707  2005                                              Comedy|Drama     23
## 4708  2005                               Action|Crime|Drama|Thriller     23
## 4709  2005                                                     Drama     23
## 4710  2005                                               Crime|Drama     23
## 4711  2005                       Adventure|Animation|Children|Comedy     23
## 4712  2005                                             Drama|Romance     23
## 4713  2005                                      Comedy|Drama|Romance     23
## 4714  2005                                               Crime|Drama     23
## 4715  2005                                                     Drama     23
## 4716  2005                                          Action|Drama|War     23
## 4717  2005                                            Drama|Thriller     23
## 4718  2005                                             Drama|Romance     23
## 4719  2005                           Adventure|Fantasy|Thriller|IMAX     23
## 4720  2005                                     Drama|Musical|Romance     23
## 4721  2005                                       Crime|Drama|Romance     23
## 4722  2005                   Action|Adventure|Drama|Fantasy|Thriller     23
## 4723  2005                                             Drama|Romance     23
## 4724  2006                                     Adventure|Crime|Drama     23
## 4725  2005                               Action|Crime|Drama|Thriller     23
## 4726  2005                                    Adventure|Comedy|Drama     23
## 4727  2005                                   Adventure|Drama|Romance     23
## 4728  2005                                 Animation|Children|Comedy     23
## 4729  2006                               Action|Sci-Fi|Thriller|IMAX     23
## 4730  2005                                               Crime|Drama     23
## 4731  2006                                 Action|Adventure|Thriller     23
## 4732  2006                                    Drama|Mystery|Thriller     23
## 4733  2006                                  Action|Adventure|Fantasy     23
## 4734  2006                                                    Comedy     23
## 4735  1995                                     Action|Crime|Thriller     24
## 4736  1995                                               Crime|Drama     24
## 4737  1995                                       Crime|Drama|Romance     24
## 4738  1996                                 Action|Adventure|Thriller     24
## 4739  1995                                      Adventure|Drama|IMAX     24
## 4740  1995                                     Action|Crime|Thriller     24
## 4741  1994                               Comedy|Crime|Drama|Thriller     24
## 4742  1994                                   Action|Adventure|Sci-Fi     24
## 4743  1994                                  Comedy|Drama|Romance|War     24
## 4744  1994                  Action|Adventure|Comedy|Romance|Thriller     24
## 4745  1993                                                  Thriller     24
## 4746  1992               Adventure|Animation|Children|Comedy|Musical     24
## 4747  1990                                   Adventure|Drama|Western     24
## 4748  1989                                     Action|Crime|Thriller     24
## 4749  1981                  Action|Adventure|Animation|Horror|Sci-Fi     24
## 4750  1996                         Action|Adventure|Mystery|Thriller     24
## 4751  1996                         Action|Adventure|Romance|Thriller     24
## 4752  1996                          Action|Adventure|Sci-Fi|Thriller     24
## 4753  1996                                     Action|Drama|Thriller     24
## 4754  1996                               Comedy|Crime|Drama|Thriller     24
## 4755  1979                                                 Drama|War     24
## 4756  1995                                            Comedy|Romance     25
## 4757  1995                                   Mystery|Sci-Fi|Thriller     25
## 4758  1995                               Action|Crime|Drama|Thriller     25
## 4759  1996                                                    Comedy     25
## 4760  1977                                   Action|Adventure|Sci-Fi     25
## 4761  1996                                 Action|Adventure|Thriller     25
## 4762  1996                               Comedy|Crime|Drama|Thriller     25
## 4763  1996                                  Action|Adventure|Fantasy     25
## 4764  1996                                                    Comedy     25
## 4765  1996                                      Crime|Drama|Thriller     25
## 4766  1996                                        Comedy|Crime|Drama     25
## 4767  1996                          Action|Adventure|Sci-Fi|Thriller     25
## 4768  1996                                           Comedy|Thriller     25
## 4769  1996                                     Action|Drama|Thriller     25
## 4770  1996                             Comedy|Fantasy|Romance|Sci-Fi     25
## 4771  1996                                             Drama|Romance     25
## 4772  1996                                            Crime|Thriller     25
## 4773  1996                                             Comedy|Horror     25
## 4774  1971                           Children|Comedy|Fantasy|Musical     25
## 4775  1996                                             Drama|Mystery     25
## 4776  1996                          Action|Adventure|Sci-Fi|Thriller     25
## 4777  1996                                                     Drama     25
## 4778  1996                                      Action|Comedy|Sci-Fi     25
## 4779  1996                          Adventure|Animation|Comedy|Crime     25
## 4780  1996                              Comedy|Drama|Fantasy|Romance     25
## 4781  1996                                            Drama|Thriller     25
## 4782  1995               Adventure|Animation|Children|Comedy|Fantasy     26
## 4783  1995                                   Mystery|Sci-Fi|Thriller     26
## 4784  1995                                          Mystery|Thriller     26
## 4785  1995                                    Crime|Mystery|Thriller     26
## 4786  1996                                              Comedy|Crime     26
## 4787  1995                                                    Comedy     26
## 4788  1995                             Action|Adventure|Comedy|Crime     26
## 4789  1995                                     Action|Crime|Thriller     26
## 4790  1977                                   Action|Adventure|Sci-Fi     26
## 4791  1994                               Comedy|Crime|Drama|Thriller     26
## 4792  1994                                   Action|Adventure|Sci-Fi     26
## 4793  1994                                               Crime|Drama     26
## 4794  1994                                                    Comedy     26
## 4795  1994                                  Comedy|Drama|Romance|War     26
## 4796  1994                               Action|Comedy|Crime|Fantasy     26
## 4797  1994                                   Action|Romance|Thriller     26
## 4798  1994                  Action|Adventure|Comedy|Romance|Thriller     26
## 4799  1993                                                  Thriller     26
## 4800  1993                          Action|Adventure|Sci-Fi|Thriller     26
## 4801  1993                                              Comedy|Drama     26
## 4802  1993                                            Crime|Thriller     26
## 4803  1991                                             Action|Sci-Fi     26
## 4804  1991                                     Crime|Horror|Thriller     26
## 4805  1996                               Comedy|Crime|Drama|Thriller     26
## 4806  1996                         Action|Adventure|Mystery|Thriller     26
## 4807  1996                                Adventure|Animation|Comedy     26
## 4808  1996                                 Action|Adventure|Thriller     26
## 4809  1996                                        Comedy|Crime|Drama     26
## 4810  1996                          Action|Adventure|Sci-Fi|Thriller     26
## 4811  1972                                               Crime|Drama     26
## 4812  1988                                     Action|Crime|Thriller     26
## 4813  1992                                    Crime|Mystery|Thriller     26
## 4814  1980                                   Action|Adventure|Sci-Fi     26
## 4815  1981                                          Action|Adventure     26
## 4816  1983                                   Action|Adventure|Sci-Fi     26
## 4817  1996                          Adventure|Animation|Comedy|Crime     26
## 4818  1997                            Action|Adventure|Comedy|Sci-Fi     26
## 4819  1997                                      Action|Comedy|Sci-Fi     26
## 4820  1997                                     Drama|Sci-Fi|Thriller     26
## 4821  1997                                           Action|Thriller     26
## 4822  1998                                              Comedy|Crime     26
## 4823  1998                                                    Comedy     26
## 4824  1998                                   Action|Adventure|Sci-Fi     26
## 4825  1998                                    Adventure|Comedy|Drama     26
## 4826  1998                                          Action|Drama|War     26
## 4827  1998                                               Crime|Drama     26
## 4828  1998                       Adventure|Animation|Children|Comedy     26
## 4829  1998                                     Comedy|Crime|Thriller     26
## 4830  1999                                    Action|Sci-Fi|Thriller     26
## 4831  1998                                              Action|Crime     26
## 4832  1999                                             Drama|Romance     26
## 4833  1999                               Action|Crime|Drama|Thriller     26
## 4834  1991                              Comedy|Drama|Fantasy|Romance     26
## 4835  1999               Adventure|Animation|Children|Comedy|Fantasy     26
## 4836  1999                                               Crime|Drama     26
## 4837  2000                               Action|Crime|Drama|Thriller     26
## 4838  2000                                      Comedy|Drama|Romance     26
## 4839  2000                                    Action|Adventure|Drama     26
## 4840  2000                                     Action|Crime|Thriller     26
## 4841  2000                                     Comedy|Crime|Thriller     26
## 4842  2000                                                     Drama     26
## 4843  2000                                    Adventure|Comedy|Crime     26
## 4844  2001                                             Action|Comedy     26
## 4845  2000                                          Mystery|Thriller     26
## 4846  1983                                        Action|Crime|Drama     26
## 4847  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     26
## 4848  2001                                      Crime|Drama|Thriller     26
## 4849  2001                                      Comedy|Crime|Romance     26
## 4850  2001                             Crime|Horror|Mystery|Thriller     26
## 4851  2001                                            Crime|Thriller     26
## 4852  2001                                            Comedy|Romance     26
## 4853  2001                                              Comedy|Drama     26
## 4854  2001                                             Drama|Romance     26
## 4855  2001                                          Action|Drama|War     26
## 4856  2001                                      Comedy|Crime|Mystery     26
## 4857  2002                       Adventure|Animation|Children|Comedy     26
## 4858  2002                                   Action|Mystery|Thriller     26
## 4859  2001                                            Drama|Thriller     26
## 4860  2002                                      Comedy|Drama|Romance     26
## 4861  2002                                    Action|Sci-Fi|Thriller     26
## 4862  2002                                         Adventure|Fantasy     26
## 4863  2002                                               Crime|Drama     26
## 4864  2002                                               Crime|Drama     26
## 4865  2002                     Action|Adventure|Crime|Drama|Thriller     26
## 4866  2003                          Action|Adventure|Sci-Fi|Thriller     26
## 4867  2003                           Action|Adventure|Comedy|Fantasy     26
## 4868  2003                                        Comedy|Crime|Drama     26
## 4869  2003                                              Comedy|Drama     26
## 4870  2003                                       Crime|Drama|Mystery     26
## 4871  2003                                     Action|Crime|Thriller     26
## 4872  2003                                              Comedy|Drama     26
## 4873  2004                                      Drama|Romance|Sci-Fi     26
## 4874  2004                                     Action|Drama|Thriller     26
## 4875  2004                       Action|Crime|Drama|Mystery|Thriller     26
## 4876  2004                                    Adventure|Fantasy|IMAX     26
## 4877  2004                                     Action|Crime|Thriller     26
## 4878  2004                                      Comedy|Drama|Romance     26
## 4879  2004                               Action|Crime|Drama|Thriller     26
## 4880  2004                                             Comedy|Horror     26
## 4881  2004                Action|Adventure|Animation|Children|Comedy     26
## 4882  2001                                     Action|Drama|Thriller     26
## 4883  2004                                      Crime|Drama|Thriller     26
## 4884  2004                                  Adventure|Comedy|Fantasy     26
## 4885  2004                                                 Drama|War     26
## 4886  2004                                             Action|Comedy     26
## 4887  2005                   Action|Crime|Film-Noir|Mystery|Thriller     26
## 4888  2005                                         Action|Crime|IMAX     26
## 4889  2005                                              Comedy|Drama     26
## 4890  2005                           Action|Crime|Drama|Thriller|War     26
## 4891  2005                                               Crime|Drama     26
## 4892  2005                                               Crime|Drama     26
## 4893  2005                       Adventure|Animation|Children|Comedy     26
## 4894  2005                             Comedy|Crime|Mystery|Thriller     26
## 4895  2005                               Action|Crime|Drama|Thriller     26
## 4896  2006                               Action|Sci-Fi|Thriller|IMAX     26
## 4897  2006                                              Comedy|Drama     26
## 4898  2006                                      Crime|Drama|Thriller     26
## 4899  2006                                       Crime|Drama|Mystery     26
## 4900  2006                              Comedy|Drama|Fantasy|Romance     26
## 4901  2006                             Drama|Fantasy|Mystery|Romance     26
## 4902  2006                                      Crime|Drama|Thriller     26
## 4903  2006                    Action|Adventure|Drama|Sci-Fi|Thriller     26
## 4904  2006                             Drama|Mystery|Sci-Fi|Thriller     26
## 4905  2006                                 Action|Adventure|Thriller     26
## 4906  2006                                    Action|Sci-Fi|Thriller     26
## 4907  2006                 Action|Adventure|Crime|Drama|Thriller|War     26
## 4908  2006                                               Documentary     26
## 4909  2007                                  Animation|Children|Drama     26
## 4910  2007                               Action|Comedy|Crime|Mystery     26
## 4911  2007                                   Action|Fantasy|War|IMAX     26
## 4912  2007                              Crime|Drama|Mystery|Thriller     26
## 4913  2006                                                     Drama     26
## 4914  2007                                      Crime|Drama|Thriller     26
## 4915  2007                           Action|Adventure|Crime|Thriller     26
## 4916  2007                                     Action|Crime|Thriller     26
## 4917  2007                                                    Comedy     26
## 4918  2007                                      Crime|Drama|Thriller     26
## 4919  2006                  Action|Adventure|Animation|Crime|Fantasy     26
## 4920  2007                                    Action|Adventure|Drama     26
## 4921  2007                                            Drama|Thriller     26
## 4922  2007                                              Comedy|Drama     26
## 4923  2007                                      Crime|Drama|Thriller     26
## 4924  2007                                               Crime|Drama     26
## 4925  2007                                             Drama|Western     26
## 4926  2008                               Comedy|Crime|Drama|Thriller     26
## 4927  2008                                   Action|Crime|Drama|IMAX     26
## 4928  2008                                   Action|Adventure|Sci-Fi     26
## 4929  2008                               Action|Crime|Drama|Thriller     26
## 4930  2006                                   Adventure|Drama|Fantasy     26
## 4931  2008                     Action|Animation|Children|Comedy|IMAX     26
## 4932  2008               Adventure|Animation|Children|Romance|Sci-Fi     26
## 4933  2009                 Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     26
## 4934  2008                                       Action|Comedy|Crime     26
## 4935  2008                                        Comedy|Crime|Drama     26
## 4936  2008                                              Action|Crime     26
## 4937  2008                                       Crime|Drama|Romance     26
## 4938  2008                                          Action|Drama|War     26
## 4939  2009                                                    Comedy     26
## 4940  2009                                          Action|Drama|War     26
## 4941  2009                              Action|Adventure|Sci-Fi|IMAX     26
## 4942  2009                        Adventure|Animation|Children|Drama     26
## 4943  2009                                              Comedy|Crime     26
## 4944  2007                                   Action|Animation|Sci-Fi     26
## 4945  2009                                              Comedy|Drama     26
## 4946  2009                              Action|Adventure|Sci-Fi|IMAX     26
## 4947  2009                             Action|Crime|Mystery|Thriller     26
## 4948  2009                                                    Comedy     26
## 4949  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     26
## 4950  2010                                      Crime|Drama|Thriller     26
## 4951  2010                                                   Western     26
## 4952  2011            Action|Adventure|Comedy|Crime|Mystery|Thriller     26
## 4953  2011                                              Comedy|Drama     26
## 4954  1995                                    Crime|Mystery|Thriller     27
## 4955  1995                                                 Drama|War     27
## 4956  1976                                      Crime|Drama|Thriller     27
## 4957  1994                               Comedy|Crime|Drama|Thriller     27
## 4958  1993                                                 Drama|War     27
## 4959  1991                                     Crime|Horror|Thriller     27
## 4960  1990                                               Crime|Drama     27
## 4961  1991                                                  Thriller     27
## 4962  1997                                              Drama|Sci-Fi     27
## 4963  1990                                 Action|Adventure|Thriller     27
## 4964  1997                                      Comedy|Drama|Romance     27
## 4965  1997                                             Drama|Romance     27
## 4966  1997                                             Drama|Romance     27
## 4967  1998                                                  Thriller     27
## 4968  1998                                                    Comedy     27
## 4969  1998                                      Crime|Drama|Thriller     27
## 4970  1998                                      Comedy|Drama|Romance     27
## 4971  1999                                                     Drama     27
## 4972  1999                                              Comedy|Crime     27
## 4973  1999                                     Drama|Horror|Thriller     27
## 4974  1999                                    Drama|Mystery|Thriller     27
## 4975  1999                                      Drama|Horror|Mystery     27
## 4976  1999                                             Drama|Romance     27
## 4977  1995                                     Comedy|Crime|Thriller     28
## 4978  1994                                      Comedy|Drama|Romance     28
## 4979  1995                                          Action|Drama|War     28
## 4980  1994                                              Comedy|Drama     28
## 4981  1940                                      Comedy|Drama|Romance     28
## 4982  1952                                    Comedy|Musical|Romance     28
## 4983  1961                                             Drama|Romance     28
## 4984  1958                            Drama|Mystery|Romance|Thriller     28
## 4985  1954                                          Mystery|Thriller     28
## 4986  1959                 Action|Adventure|Mystery|Romance|Thriller     28
## 4987  1960                                      Comedy|Drama|Romance     28
## 4988  1941                                         Film-Noir|Mystery     28
## 4989  1939                                         Drama|Romance|War     28
## 4990  1968                                    Adventure|Drama|Sci-Fi     28
## 4991  1950                                                     Drama     28
## 4992  1955                            Crime|Mystery|Romance|Thriller     28
## 4993  1946                            Children|Drama|Fantasy|Romance     28
## 4994  1996                                             Drama|Romance     28
## 4995  1988                                              Comedy|Crime     28
## 4996  1992                                    Drama|Romance|Thriller     28
## 4997  1957                                                     Drama     28
## 4998  1971                               Crime|Drama|Sci-Fi|Thriller     28
## 4999  1960                                              Crime|Horror     28
## 5000  1984                                                     Drama     28
## 5001  1957                                       Adventure|Drama|War     28
## 5002  1974                          Crime|Film-Noir|Mystery|Thriller     28
## 5003  1962                                        Crime|Thriller|War     28
## 5004  1986                                             Drama|Romance     28
## 5005  1985                                              Comedy|Drama     28
## 5006  1996                                                     Drama     28
## 5007  1990                                 Action|Adventure|Thriller     28
## 5008  1997                          Crime|Film-Noir|Mystery|Thriller     28
## 5009  1985                                    Drama|Romance|Thriller     28
## 5010  1998                                   Action|Adventure|Sci-Fi     28
## 5011  1998                                      Comedy|Drama|Romance     28
## 5012  1954                                               Crime|Drama     28
## 5013  1980                                                     Drama     28
## 5014  1989                                                     Drama     28
## 5015  1954                                    Action|Adventure|Drama     28
## 5016  1998                                          Action|Drama|War     28
## 5017  1979                                                    Comedy     28
## 5018  1944                                                 Drama|War     28
## 5019  1990                                     Drama|Fantasy|Romance     28
## 5020  1968                                                    Comedy     28
## 5021  1997                                  Comedy|Drama|Romance|War     28
## 5022  1984                           Action|Adventure|Comedy|Romance     28
## 5023  1986                                          Adventure|Comedy     28
## 5024  1999                                    Action|Sci-Fi|Thriller     28
## 5025  1999                                              Comedy|Drama     28
## 5026  1953                                       Action|Drama|Sci-Fi     28
## 5027  1996                                        Comedy|Crime|Drama     29
## 5028  1997                                            Comedy|Romance     29
## 5029  1997                                  Action|Adventure|Fantasy     29
## 5030  1997                            Comedy|Horror|Mystery|Thriller     29
## 5031  1985                              Comedy|Drama|Fantasy|Romance     29
## 5032  1976                 Adventure|Fantasy|Romance|Sci-Fi|Thriller     29
## 5033  1998                                  Adventure|Children|Drama     29
## 5034  1974                                                    Horror     29
## 5035  1989                                                    Horror     29
## 5036  1999                                    Action|Sci-Fi|Thriller     29
## 5037  1999                                           Horror|Thriller     29
## 5038  1989                                     Comedy|Fantasy|Sci-Fi     29
## 5039  1983                                             Drama|Romance     29
## 5040  1999                                                     Drama     29
## 5041  2002                     Drama|Fantasy|Horror|Mystery|Thriller     29
## 5042  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     29
## 5043  2002                                      Action|Horror|Sci-Fi     29
## 5044  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     29
## 5045  2003                                            Drama|Thriller     29
## 5046  2007                                   Action|Fantasy|War|IMAX     29
## 5047  2008                                   Action|Crime|Drama|IMAX     29
## 5048  2010                              Action|Drama|Horror|Thriller     29
## 5049  1995               Adventure|Animation|Children|Comedy|Fantasy     30
## 5050  1995                                Adventure|Children|Fantasy     30
## 5051  1995                                     Action|Crime|Thriller     30
## 5052  1995                                        Adventure|Children     30
## 5053  1995                                      Comedy|Drama|Romance     30
## 5054  1995                                                     Drama     30
## 5055  1995                                               Crime|Drama     30
## 5056  1995                                                    Comedy     30
## 5057  1995                                     Comedy|Crime|Thriller     30
## 5058  1995                                     Action|Crime|Thriller     30
## 5059  1995                                             Drama|Romance     30
## 5060  1995                                   Mystery|Sci-Fi|Thriller     30
## 5061  1995                                            Children|Drama     30
## 5062  1995                                        Action|Crime|Drama     30
## 5063  1995                                     Comedy|Drama|Thriller     30
## 5064  1995                                          Mystery|Thriller     30
## 5065  1995                                    Crime|Mystery|Thriller     30
## 5066  1995                                      Comedy|Drama|Romance     30
## 5067  1995                                Adventure|Children|Fantasy     30
## 5068  1996                             Action|Comedy|Horror|Thriller     30
## 5069  1995                               Action|Crime|Drama|Thriller     30
## 5070  1996                                            Drama|Thriller     30
## 5071  1995                                          Action|Drama|War     30
## 5072  1976                                      Crime|Drama|Thriller     30
## 5073  1996                                            Comedy|Romance     30
## 5074  1996                                                    Comedy     30
## 5075  1995                                      Adventure|Drama|IMAX     30
## 5076  1995                                        Adventure|Children     30
## 5077  1995                                        Drama|Thriller|War     30
## 5078  1994                                               Documentary     30
## 5079  1995                                     Action|Crime|Thriller     30
## 5080  1995                           Action|Adventure|Crime|Thriller     30
## 5081  1995                                             Horror|Sci-Fi     30
## 5082  1995                                                    Comedy     30
## 5083  1995                                   Action|Adventure|Sci-Fi     30
## 5084  1995                                                     Drama     30
## 5085  1995                                      Comedy|Drama|Romance     30
## 5086  1994                                           Action|Thriller     30
## 5087  1995                                                    Comedy     30
## 5088  1994                                              Comedy|Drama     30
## 5089  1994                                              Drama|Horror     30
## 5090  1995                                                     Drama     30
## 5091  1977                                   Action|Adventure|Sci-Fi     30
## 5092  1994                                                     Drama     30
## 5093  1994                                              Comedy|Drama     30
## 5094  1994                                      Comedy|Drama|Romance     30
## 5095  1994                                                     Drama     30
## 5096  1994                                     Action|Crime|Thriller     30
## 5097  1994                               Comedy|Crime|Drama|Thriller     30
## 5098  1994                                                     Drama     30
## 5099  1994                                      Comedy|Drama|Fantasy     30
## 5100  1994                                               Crime|Drama     30
## 5101  1993                                                     Drama     30
## 5102  1994                                                    Comedy     30
## 5103  1994                                                    Comedy     30
## 5104  1994                               Action|Crime|Drama|Thriller     30
## 5105  1994                                    Drama|Mystery|Thriller     30
## 5106  1994                                  Comedy|Drama|Romance|War     30
## 5107  1994                                            Comedy|Romance     30
## 5108  1994           Adventure|Animation|Children|Drama|Musical|IMAX     30
## 5109  1994                                  Adventure|Comedy|Western     30
## 5110  1994                                                     Drama     30
## 5111  1994                                              Comedy|Drama     30
## 5112  1994                                   Action|Romance|Thriller     30
## 5113  1994                  Action|Adventure|Comedy|Romance|Thriller     30
## 5114  1994                             Drama|Horror|Romance|Thriller     30
## 5115  1993                                   Children|Comedy|Fantasy     30
## 5116  1993                                                     Drama     30
## 5117  1994                                                    Comedy     30
## 5118  1993                                                    Comedy     30
## 5119  1994                                                     Drama     30
## 5120  1994                                             Drama|Romance     30
## 5121  1993                                    Horror|Sci-Fi|Thriller     30
## 5122  1993                                                     Drama     30
## 5123  1994                                  Adventure|Comedy|Western     30
## 5124  1993                                 Action|Adventure|Thriller     30
## 5125  1993                                            Comedy|Romance     30
## 5126  1993                                                    Comedy     30
## 5127  1993                                     Drama|Mystery|Romance     30
## 5128  1993                                            Drama|Thriller     30
## 5129  1993                                                  Thriller     30
## 5130  1994             Action|Adventure|Crime|Drama|Romance|Thriller     30
## 5131  1993                                      Crime|Drama|Thriller     30
## 5132  1994                                                    Comedy     30
## 5133  1994                                              Comedy|Drama     30
## 5134  1993                                           Action|Thriller     30
## 5135  1993                                             Drama|Musical     30
## 5136  1993                          Action|Adventure|Sci-Fi|Thriller     30
## 5137  1993                           Action|Adventure|Comedy|Fantasy     30
## 5138  1993                                            Comedy|Mystery     30
## 5139  1993                                              Comedy|Drama     30
## 5140  1993                                      Crime|Drama|Thriller     30
## 5141  1993                                                     Drama     30
## 5142  1993                                             Drama|Romance     30
## 5143  1993                                             Drama|Romance     30
## 5144  1993                                      Action|Drama|Mystery     30
## 5145  1994                                                    Comedy     30
## 5146  1993                                                     Drama     30
## 5147  1993                                                 Drama|War     30
## 5148  1993                                            Children|Drama     30
## 5149  1994                                       Comedy|Crime|Horror     30
## 5150  1993                                             Drama|Romance     30
## 5151  1993                                                     Drama     30
## 5152  1993                                                     Drama     30
## 5153  1993                                      Comedy|Drama|Romance     30
## 5154  1993                                                  Thriller     30
## 5155  1982                                    Action|Sci-Fi|Thriller     30
## 5156  1993                                      Action|Drama|Western     30
## 5157  1993                                            Crime|Thriller     30
## 5158  1993                                               Documentary     30
## 5159  1995                                               Documentary     30
## 5160  1990                                           Children|Comedy     30
## 5161  1990                     Comedy|Drama|Fantasy|Romance|Thriller     30
## 5162  1992               Adventure|Animation|Children|Comedy|Musical     30
## 5163  1991                                             Action|Sci-Fi     30
## 5164  1990                                   Adventure|Drama|Western     30
## 5165  1989                                     Action|Crime|Thriller     30
## 5166  1991                                     Crime|Horror|Thriller     30
## 5167  1937                  Animation|Children|Drama|Fantasy|Musical     30
## 5168  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     30
## 5169  1940                        Animation|Children|Fantasy|Musical     30
## 5170  1990                                            Comedy|Romance     30
## 5171  1996                               Comedy|Crime|Drama|Thriller     30
## 5172  1996                              Crime|Drama|Mystery|Thriller     30
## 5173  1996                                            Drama|Thriller     30
## 5174  1996                                    Action|Crime|Drama|War     30
## 5175  1996              Adventure|Animation|Children|Fantasy|Musical     30
## 5176  1996                                      Crime|Drama|Thriller     30
## 5177  1996                                 Action|Adventure|Thriller     30
## 5178  1996                         Action|Adventure|Romance|Thriller     30
## 5179  1964                                                Comedy|War     30
## 5180  1996                                              Comedy|Crime     30
## 5181  1996                                              Comedy|Drama     30
## 5182  1995                                              Comedy|Drama     30
## 5183  1996                          Action|Adventure|Sci-Fi|Thriller     30
## 5184  1996                                            Drama|Thriller     30
## 5185  1996                                     Drama|Mystery|Western     30
## 5186  1996                                            Drama|Thriller     30
## 5187  1996                                               Crime|Drama     30
## 5188  1996                                            Crime|Thriller     30
## 5189  1972                                               Crime|Drama     30
## 5190  1996                              Crime|Drama|Musical|Thriller     30
## 5191  1940                                      Comedy|Drama|Romance     30
## 5192  1952                                    Comedy|Musical|Romance     30
## 5193  1958                            Drama|Mystery|Romance|Thriller     30
## 5194  1954                                          Mystery|Thriller     30
## 5195  1959                 Action|Adventure|Mystery|Romance|Thriller     30
## 5196  1942                                             Drama|Romance     30
## 5197  1941                                         Film-Noir|Mystery     30
## 5198  1964                              Comedy|Drama|Musical|Romance     30
## 5199  1939                        Adventure|Children|Fantasy|Musical     30
## 5200  1939                                         Drama|Romance|War     30
## 5201  1982                                                    Comedy     30
## 5202  1950                                   Drama|Film-Noir|Romance     30
## 5203  1941                                             Drama|Mystery     30
## 5204  1968                                    Adventure|Drama|Sci-Fi     30
## 5205  1940                            Drama|Mystery|Romance|Thriller     30
## 5206  1936                                            Comedy|Romance     30
## 5207  1934                                              Comedy|Crime     30
## 5208  1946                            Children|Drama|Fantasy|Romance     30
## 5209  1939                                                     Drama     30
## 5210  1951                              Adventure|Comedy|Romance|War     30
## 5211  1958                                                     Drama     30
## 5212  1996                               Action|Crime|Drama|Thriller     30
## 5213  1996                                                     Drama     30
## 5214  1969                                           Children|Comedy     30
## 5215  1957                                            Children|Drama     30
## 5216  1961                                   Children|Comedy|Romance     30
## 5217  1960                                        Adventure|Children     30
## 5218  1965                                   Children|Comedy|Mystery     30
## 5219  1963                        Animation|Children|Fantasy|Musical     30
## 5220  1991                                           Adventure|Drama     30
## 5221  1964                           Children|Comedy|Fantasy|Musical     30
## 5222  1965                                           Musical|Romance     30
## 5223  1988                                     Action|Crime|Thriller     30
## 5224  1996                                              Comedy|Drama     30
## 5225  1996                                                  Thriller     30
## 5226  1971                           Children|Comedy|Fantasy|Musical     30
## 5227  1971                                                Comedy|War     30
## 5228  1988                                              Comedy|Crime     30
## 5229  1982                                    Comedy|Musical|Romance     30
## 5230  1972                                                     Drama     30
## 5231  1967                                               Crime|Drama     30
## 5232  1954                                    Crime|Mystery|Thriller     30
## 5233  1987                                     Drama|Musical|Romance     30
## 5234  1992                                    Crime|Mystery|Thriller     30
## 5235  1986                                                 Drama|War     30
## 5236  1989                                                    Comedy     30
## 5237  1992                                    Crime|Mystery|Thriller     30
## 5238  1991                                                     Drama     30
## 5239  1992                                    Drama|Romance|Thriller     30
## 5240  1992                                                     Drama     30
## 5241  1982                                                     Drama     30
## 5242  1982                                     Children|Drama|Sci-Fi     30
## 5243  1986                                            Action|Romance     30
## 5244  1951                                                     Drama     30
## 5245  1996                                               Crime|Drama     30
## 5246  1996                                              Comedy|Drama     30
## 5247  1981                                                     Drama     30
## 5248  1991                                            Comedy|Fantasy     30
## 5249  1981                          Action|Adventure|Sci-Fi|Thriller     30
## 5250  1980                                                    Comedy     30
## 5251  1992                                                    Comedy     30
## 5252  1990                                     Crime|Drama|Film-Noir     30
## 5253  1997                                                   Western     30
## 5254  1989                                                     Drama     30
## 5255  1988                                               Documentary     30
## 5256  1975                                                     Drama     30
## 5257  1980                                   Action|Adventure|Sci-Fi     30
## 5258  1987                   Action|Adventure|Comedy|Fantasy|Romance     30
## 5259  1981                                          Action|Adventure     30
## 5260  1986                            Action|Adventure|Horror|Sci-Fi     30
## 5261  1971                               Crime|Drama|Sci-Fi|Thriller     30
## 5262  1962                                                     Drama     30
## 5263  1979                                          Action|Drama|War     30
## 5264  1983                                   Action|Adventure|Sci-Fi     30
## 5265  1949                                Film-Noir|Mystery|Thriller     30
## 5266  1990                                               Crime|Drama     30
## 5267  1979                                             Horror|Sci-Fi     30
## 5268  1960                                              Crime|Horror     30
## 5269  1980                                     Action|Comedy|Musical     30
## 5270  1974                                               Crime|Drama     30
## 5271  1987                                                 Drama|War     30
## 5272  1984                                                     Drama     30
## 5273  1952                                             Drama|Romance     30
## 5274  1984                                               Crime|Drama     30
## 5275  1980                                                     Drama     30
## 5276  1983                                                     Drama     30
## 5277  1973                                              Comedy|Crime     30
## 5278  1971                                      Comedy|Drama|Romance     30
## 5279  1984                                    Action|Sci-Fi|Thriller     30
## 5280  1989                                                 Drama|War     30
## 5281  1979                                      Comedy|Drama|Romance     30
## 5282  1990                            Crime|Drama|Film-Noir|Thriller     30
## 5283  1989                                                     Drama     30
## 5284  1967                                      Comedy|Drama|Romance     30
## 5285  1957                                       Adventure|Drama|War     30
## 5286  1974                          Crime|Film-Noir|Mystery|Thriller     30
## 5287  1980                                                    Horror     30
## 5288  1986                                           Adventure|Drama     30
## 5289  1978                                                 Drama|War     30
## 5290  1993                                    Comedy|Fantasy|Romance     30
## 5291  1992                                             Drama|Western     30
## 5292  1962                                        Crime|Thriller|War     30
## 5293  1985                                   Adventure|Comedy|Sci-Fi     30
## 5294  1991                                        Comedy|Crime|Drama     30
## 5295  1970                                                 Drama|War     30
## 5296  1967                                                     Drama     30
## 5297  1990                                      Comedy|Drama|Romance     30
## 5298  1974                                            Comedy|Fantasy     30
## 5299  1952                                             Drama|Western     30
## 5300  1989                                                    Comedy     30
## 5301  1980                                             Drama|Romance     30
## 5302  1989                                          Action|Adventure     30
## 5303  1979                                              Comedy|Drama     30
## 5304  1989                                    Children|Drama|Fantasy     30
## 5305  1975                                           Adventure|Drama     30
## 5306  1969                                            Action|Western     30
## 5307  1989                                            Comedy|Romance     30
## 5308  1992                             Action|Horror|Sci-Fi|Thriller     30
## 5309  1981                                    Comedy|Horror|Thriller     30
## 5310  1979                             Drama|Horror|Mystery|Thriller     30
## 5311  1987                                           Horror|Thriller     30
## 5312  1963                                           Horror|Thriller     30
## 5313  1958                                             Horror|Sci-Fi     30
## 5314  1992                           Fantasy|Horror|Romance|Thriller     30
## 5315  1991                                                  Thriller     30
## 5316  1976                             Drama|Fantasy|Horror|Thriller     30
## 5317  1982                                      Drama|Fantasy|Horror     30
## 5318  1976                                   Horror|Mystery|Thriller     30
## 5319  1996                                            Crime|Thriller     30
## 5320  1996                                                     Drama     30
## 5321  1996                                                     Drama     30
## 5322  1990                                 Action|Adventure|Thriller     30
## 5323  1992                                              Action|Crime     30
## 5324  1988                                     Action|Comedy|Western     30
## 5325  1978                                    Comedy|Musical|Romance     30
## 5326  1992                                     Action|Drama|Thriller     30
## 5327  1975                                             Action|Horror     30
## 5328  1978                                           Horror|Thriller     30
## 5329  1996                                                    Comedy     30
## 5330  1996                                             Drama|Romance     30
## 5331  1987                                                    Comedy     30
## 5332  1987                                              Comedy|Drama     30
## 5333  1992                          Action|Comedy|Crime|Drama|Sci-Fi     30
## 5334  1996                                                     Drama     30
## 5335  1997                              Crime|Drama|Mystery|Thriller     30
## 5336  1997                                           Action|Thriller     30
## 5337  1993                                                    Comedy     30
## 5338  1997                                          Mystery|Thriller     30
## 5339  1997                                                    Comedy     30
## 5340  1997                                               Crime|Drama     30
## 5341  1997                                                    Comedy     30
## 5342  1997                                     Action|Drama|Thriller     30
## 5343  1997                                                     Drama     30
## 5344  1997                                   Action|Adventure|Comedy     30
## 5345  1997                                      Action|Crime|Romance     30
## 5346  1997                                 Action|Adventure|Thriller     30
## 5347  1997                         Action|Adventure|Fantasy|Thriller     30
## 5348  1997               Adventure|Animation|Children|Comedy|Musical     30
## 5349  1997                                      Action|Comedy|Sci-Fi     30
## 5350  1997                                              Drama|Sci-Fi     30
## 5351  1997                                           Children|Comedy     30
## 5352  1997                               Action|Crime|Drama|Thriller     30
## 5353  1998                                      Crime|Drama|Thriller     30
## 5354  1997                                           Action|Thriller     30
## 5355  1990                                 Action|Adventure|Thriller     30
## 5356  1991                                             Drama|Romance     30
## 5357  1997                                                    Comedy     30
## 5358  1997                          Crime|Film-Noir|Mystery|Thriller     30
## 5359  1997                              Crime|Drama|Mystery|Thriller     30
## 5360  1997                                                     Drama     30
## 5361  1997                                    Drama|Mystery|Thriller     30
## 5362  1997                                    Drama|Mystery|Thriller     30
## 5363  1997                                                     Drama     30
## 5364  1997                                                     Drama     30
## 5365  1985                                    Drama|Romance|Thriller     30
## 5366  1998                                       Comedy|Drama|Sci-Fi     30
## 5367  1997                                            Crime|Thriller     30
## 5368  1997                                      Action|Horror|Sci-Fi     30
## 5369  1997                                                     Drama     30
## 5370  1997                                              Comedy|Drama     30
## 5371  1997                                             Drama|Romance     30
## 5372  1997                                       Crime|Drama|Mystery     30
## 5373  1997                                             Drama|Romance     30
## 5374  1997                             Action|Adventure|Drama|Sci-Fi     30
## 5375  1997                                      Crime|Drama|Thriller     30
## 5376  1998                                              Comedy|Crime     30
## 5377  1997                                                    Comedy     30
## 5378  1998                      Crime|Drama|Mystery|Romance|Thriller     30
## 5379  1997                                      Comedy|Drama|Romance     30
## 5380  1990                                            Crime|Thriller     30
## 5381  1998                                      Crime|Drama|Thriller     30
## 5382  1998                                                  Thriller     30
## 5383  1998                              Crime|Drama|Mystery|Thriller     30
## 5384  1998                                              Comedy|Drama     30
## 5385  1997                              Crime|Drama|Mystery|Thriller     30
## 5386  1998                                                    Comedy     30
## 5387  1998                                   Crime|Drama|Romance|War     30
## 5388  1998                                     Drama|Sci-Fi|Thriller     30
## 5389  1998                                    Action|Sci-Fi|Thriller     30
## 5390  1998                                    Adventure|Comedy|Drama     30
## 5391  1998                                                  Thriller     30
## 5392  1998                       Comedy|Crime|Drama|Romance|Thriller     30
## 5393  1998                            Action|Romance|Sci-Fi|Thriller     30
## 5394  1998                                            Comedy|Romance     30
## 5395  1952                                                     Drama     30
## 5396  1954                                               Crime|Drama     30
## 5397  1961                                     Drama|Musical|Romance     30
## 5398  1968                                             Drama|Musical     30
## 5399  1969                                                     Drama     30
## 5400  1971                                     Action|Crime|Thriller     30
## 5401  1976                                                     Drama     30
## 5402  1979                                                     Drama     30
## 5403  1980                                                     Drama     30
## 5404  1981                                                     Drama     30
## 5405  1983                                              Comedy|Drama     30
## 5406  1987                                                     Drama     30
## 5407  1988                                                     Drama     30
## 5408  1989                                                     Drama     30
## 5409  1984                                             Comedy|Sci-Fi     30
## 5410  1985                                              Comedy|Drama     30
## 5411  1978                                                    Horror     30
## 5412  1982                                           Horror|Thriller     30
## 5413  1973                                            Horror|Mystery     30
## 5414  1987                                 Action|Comedy|Crime|Drama     30
## 5415  1989                                 Action|Comedy|Crime|Drama     30
## 5416  1992                                 Action|Comedy|Crime|Drama     30
## 5417  1984                                             Comedy|Horror     30
## 5418  1973                             Drama|Mystery|Sci-Fi|Thriller     30
## 5419  1989                                   Adventure|Comedy|Sci-Fi     30
## 5420  1990                           Adventure|Comedy|Sci-Fi|Western     30
## 5421  1972                                    Action|Adventure|Drama     30
## 5422  1961                                   Children|Comedy|Fantasy     30
## 5423  1990                              Crime|Drama|Mystery|Thriller     30
## 5424  1991                                             Drama|Mystery     30
## 5425  1997                                             Drama|Romance     30
## 5426  1998                                          Action|Drama|War     30
## 5427  1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     30
## 5428  1989                                               Documentary     30
## 5429  1985                              Comedy|Drama|Fantasy|Romance     30
## 5430  1983                                     Drama|Romance|Western     30
## 5431  1986                                    Drama|Mystery|Thriller     30
## 5432  1967                         Animation|Children|Comedy|Musical     30
## 5433  1989                 Animation|Children|Comedy|Musical|Romance     30
## 5434  1992                                           Children|Comedy     30
## 5435  1992                                   Children|Comedy|Musical     30
## 5436  1980                                  Adventure|Comedy|Musical     30
## 5437  1991                                   Action|Adventure|Sci-Fi     30
## 5438  1982                                   Action|Adventure|Sci-Fi     30
## 5439  1991                                            Comedy|Romance     30
## 5440  1979                                                    Comedy     30
## 5441  1991                                               Crime|Drama     30
## 5442  1983                                                     Drama     30
## 5443  1984                                  Action|Adventure|Fantasy     30
## 5444  1978                      Adventure|Animation|Children|Fantasy     30
## 5445  1984                                              Drama|Sci-Fi     30
## 5446  1983                                                  Thriller     30
## 5447  1993                                              Drama|Horror     30
## 5448  1983                                           Horror|Thriller     30
## 5449  1984                                           Horror|Thriller     30
## 5450  1991                                   Children|Comedy|Fantasy     30
## 5451  1998                             Action|Crime|Mystery|Thriller     30
## 5452  1963                                             Comedy|Sci-Fi     30
## 5453  1984                                            Comedy|Romance     30
## 5454  1986                                      Comedy|Drama|Romance     30
## 5455  1985                                             Drama|Romance     30
## 5456  1986                                     Comedy|Fantasy|Horror     30
## 5457  1986                                     Crime|Horror|Thriller     30
## 5458  1968                                     Drama|Horror|Thriller     30
## 5459  1998                              Crime|Drama|Romance|Thriller     30
## 5460  1988                                            Comedy|Fantasy     30
## 5461  1956                          Adventure|Drama|Mystery|Thriller     30
## 5462  1955                                            Comedy|Mystery     30
## 5463  1998                                                     Drama     30
## 5464  1988                                  Action|Adventure|Fantasy     30
## 5465  1987                                        Action|Crime|Drama     30
## 5466  1998                                                     Drama     30
## 5467  1998                                                     Drama     30
## 5468  1980                                                     Drama     30
## 5469  1987                                      Comedy|Drama|Romance     30
## 5470  1988                                      Comedy|Drama|Romance     30
## 5471  1988                                                    Comedy     30
## 5472  1990                                                    Comedy     30
## 5473  1992                                              Comedy|Drama     30
## 5474  1992                                            Comedy|Fantasy     30
## 5475  1982                                                    Comedy     30
## 5476  1984                                            Comedy|Romance     30
## 5477  1988                                    Drama|Fantasy|Thriller     30
## 5478  1989                                              Comedy|Crime     30
## 5479  1991                                          Mystery|Thriller     30
## 5480  1992                                      Crime|Drama|Thriller     30
## 5481  1993                                             Drama|Romance     30
## 5482  1998                                     Action|Crime|Thriller     30
## 5483  1980                                                    Comedy     30
## 5484  1992                                        Comedy|Crime|Drama     30
## 5485  1990                                     Drama|Fantasy|Romance     30
## 5486  1998                                                    Comedy     30
## 5487  1968                                                    Comedy     30
## 5488  1981                                            Comedy|Musical     30
## 5489  1992                                                    Comedy     30
## 5490  1998                                              Action|Crime     30
## 5491  1984                                                    Sci-Fi     30
## 5492  1980                                                     Drama     30
## 5493  1998                                            Drama|Thriller     30
## 5494  1998                                      Comedy|Drama|Fantasy     30
## 5495  1998                                               Crime|Drama     30
## 5496  1998                                           Action|Thriller     30
## 5497  1998                                                     Drama     30
## 5498  1975                                   Mystery|Sci-Fi|Thriller     30
## 5499  1984                                                     Drama     30
## 5500  1983                                              Comedy|Drama     30
## 5501  1998                                           Action|Thriller     30
## 5502  1998                       Adventure|Animation|Children|Comedy     30
## 5503  1976                 Adventure|Fantasy|Romance|Sci-Fi|Thriller     30
## 5504  1985                                      Comedy|Drama|Romance     30
## 5505  1985                                      Comedy|Crime|Mystery     30
## 5506  1986                                              Comedy|Drama     30
## 5507  1985                                 Action|Adventure|Thriller     30
## 5508  1998                                     Crime|Horror|Thriller     30
## 5509  1998                                      Crime|Drama|Thriller     30
## 5510  1998                                      Comedy|Drama|Romance     30
## 5511  1947                                              Comedy|Drama     30
## 5512  1985                                 Action|Adventure|Thriller     30
## 5513  1982                           Action|Adventure|Drama|Thriller     30
## 5514  1985                                             Comedy|Sci-Fi     30
## 5515  1979                                              Action|Drama     30
## 5516  1982                                              Action|Drama     30
## 5517  1985                                              Action|Drama     30
## 5518  1990                                              Action|Drama     30
## 5519  1986                                              Comedy|Drama     30
## 5520  1986                                                    Comedy     30
## 5521  1984                                                     Drama     30
## 5522  1998                                            Comedy|Romance     30
## 5523  1998                                          Action|Drama|War     30
## 5524  1998                                                     Drama     30
## 5525  1998                                                     Drama     30
## 5526  1998                                                     Drama     30
## 5527  1958                                     Horror|Mystery|Sci-Fi     30
## 5528  1986                                             Action|Comedy     30
## 5529  1986                                                    Comedy     30
## 5530  1986                            Action|Comedy|Romance|Thriller     30
## 5531  1986                                          Adventure|Comedy     30
## 5532  1986                                                     Drama     30
## 5533  1999                                           Action|Thriller     30
## 5534  1999                                    Drama|Mystery|Thriller     30
## 5535  1989                                                    Horror     30
## 5536  1983                                                    Horror     30
## 5537  1982                                                    Comedy     30
## 5538  1970                                                     Drama     30
## 5539  1974                                     Action|Drama|Thriller     30
## 5540  1977                                            Drama|Thriller     30
## 5541  1974                           Action|Adventure|Drama|Thriller     30
## 5542  1976                                   Action|Adventure|Sci-Fi     30
## 5543  1968                                       Action|Drama|Sci-Fi     30
## 5544  1970                                             Action|Sci-Fi     30
## 5545  1973                                             Action|Sci-Fi     30
## 5546  1972                                             Action|Sci-Fi     30
## 5547  1971                                             Action|Sci-Fi     30
## 5548  1974                                     Action|Drama|Thriller     30
## 5549  1999                                                    Comedy     30
## 5550  1988                                     Drama|Horror|Thriller     30
## 5551  1999                                            Crime|Thriller     30
## 5552  1999                                    Action|Sci-Fi|Thriller     30
## 5553  1999                                                    Comedy     30
## 5554  1997                                              Comedy|Drama     30
## 5555  1999                                                    Comedy     30
## 5556  1999                                                    Comedy     30
## 5557  1999                                            Crime|Thriller     30
## 5558  1999                                                     Drama     30
## 5559  1990                                              Action|Crime     30
## 5560  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     30
## 5561  1981                                                     Drama     30
## 5562  1978                                   Action|Adventure|Sci-Fi     30
## 5563  1980                                             Action|Sci-Fi     30
## 5564  1983                                   Action|Adventure|Sci-Fi     30
## 5565  1956                                    Horror|Sci-Fi|Thriller     30
## 5566  1999                                            Comedy|Romance     30
## 5567  1999                        Adventure|Animation|Children|Drama     30
## 5568  1999                              Crime|Drama|Mystery|Thriller     30
## 5569  1999                              Action|Comedy|Sci-Fi|Western     30
## 5570  1999                                                     Drama     30
## 5571  1999                                                  Thriller     30
## 5572  1999                                    Drama|Mystery|Thriller     30
## 5573  1984                                      Action|Comedy|Sci-Fi     30
## 5574  1962                                             Drama|Romance     30
## 5575  1975                                         Drama|Romance|War     30
## 5576  1986                                              Comedy|Drama     30
## 5577  1985                                                     Drama     30
## 5578  1986                                     Action|Crime|Thriller     30
## 5579  1986                                     Comedy|Horror|Musical     30
## 5580  1986                                             Drama|Mystery     30
## 5581  1987                                              Comedy|Drama     30
## 5582  1982                                                     Drama     30
## 5583  1999                                      Drama|Horror|Mystery     30
## 5584  1999                                            Action|Mystery     30
## 5585  1999                                                    Comedy     30
## 5586  1961                                                    Horror     30
## 5587  1985                                                    Horror     30
## 5588  1981                                           Horror|Thriller     30
## 5589  1980                                                    Comedy     30
## 5590  1997                            Comedy|Horror|Romance|Thriller     30
## 5591  1985                                  Adventure|Comedy|Romance     30
## 5592  1983                                                    Comedy     30
## 5593  1988                              Comedy|Drama|Fantasy|Romance     30
## 5594  1988                             Action|Drama|Romance|Thriller     30
## 5595  1993                      Crime|Drama|Mystery|Romance|Thriller     30
## 5596  1983                                           Children|Comedy     30
## 5597  1999                                            Comedy|Romance     30
## 5598  1975                            Drama|Mystery|Romance|Thriller     30
## 5599  1999                                                    Comedy     30
## 5600  1999                                   Horror|Mystery|Thriller     30
## 5601  1980                                 Adventure|Sci-Fi|Thriller     30
## 5602  1984                                                     Drama     30
## 5603  1965                                                  Thriller     30
## 5604  1999                                             Drama|Romance     30
## 5605  1999                                              Comedy|Drama     30
## 5606  1972                                  Adventure|Drama|Thriller     30
## 5607  1993                                     Drama|Mystery|Romance     30
## 5608  1999                               Action|Crime|Drama|Thriller     30
## 5609  1999                                              Comedy|Drama     30
## 5610  1999                         Action|Adventure|Comedy|Drama|War     30
## 5611  1999                                                     Drama     30
## 5612  1999                                      Crime|Drama|Thriller     30
## 5613  1990                          Action|Adventure|Sci-Fi|Thriller     30
## 5614  1981                                            Crime|Thriller     30
## 5615  1986                                                    Comedy     30
## 5616  1981                                             Drama|Romance     30
## 5617  1983                                             Drama|Romance     30
## 5618  1967                                          Action|Drama|War     30
## 5619  1964                                 Action|Adventure|Thriller     30
## 5620  1980                                   Adventure|Drama|Romance     30
## 5621  1996                                      Crime|Drama|Thriller     30
## 5622  1987                                     Action|Crime|Thriller     30
## 5623  1999                               Action|Crime|Drama|Thriller     30
## 5624  1999                                           Adventure|Drama     30
## 5625  1956                                            Drama|Thriller     30
## 5626  1979                                     Drama|Fantasy|Musical     30
## 5627  1989                                        Comedy|Crime|Drama     30
## 5628  1999                                                     Drama     30
## 5629  1999                                              Comedy|Drama     30
## 5630  1987                        Action|Crime|Drama|Sci-Fi|Thriller     30
## 5631  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     30
## 5632  1981                                 Action|Adventure|Thriller     30
## 5633  1973                                 Action|Adventure|Thriller     30
## 5634  1999                                            Drama|Thriller     30
## 5635  1978                                                  Thriller     30
## 5636  1989                                               Crime|Drama     30
## 5637  1993                                              Action|Drama     30
## 5638  1971                              Action|Drama|Sci-Fi|Thriller     30
## 5639  1955                                          Comedy|Drama|War     30
## 5640  1957                                                     Drama     30
## 5641  1983                                                    Comedy     30
## 5642  1991                                  Mystery|Romance|Thriller     30
## 5643  1999                                                 Drama|War     30
## 5644  1992                                            Drama|Thriller     30
## 5645  1982                                             Drama|Mystery     30
## 5646  1988                                              Comedy|Drama     30
## 5647  1987                                            Comedy|Romance     30
## 5648  1972                                                   Western     30
## 5649  1999                            Fantasy|Horror|Mystery|Romance     30
## 5650  1999                                 Action|Adventure|Thriller     30
## 5651  1988                                    Comedy|Fantasy|Romance     30
## 5652  1940                                                     Drama     30
## 5653  1984                                                     Drama     30
## 5654  1987                                            Drama|Thriller     30
## 5655  1985                                    Crime|Romance|Thriller     30
## 5656  1988                              Action|Comedy|Crime|Thriller     30
## 5657  1990                                             Drama|Mystery     30
## 5658  1991                                              Action|Drama     30
## 5659  1991                              Comedy|Drama|Fantasy|Romance     30
## 5660  1984                                                     Drama     30
## 5661  1999               Adventure|Animation|Children|Comedy|Fantasy     30
## 5662  1992                                                    Comedy     30
## 5663  1990                                        Comedy|Crime|Drama     30
## 5664  1988                                                     Drama     30
## 5665  1990                                                     Drama     30
## 5666  1966                                            Comedy|Romance     30
## 5667  1999                                               Crime|Drama     30
## 5668  1971                                                     Drama     30
## 5669  1999                                      Drama|Romance|Sci-Fi     30
## 5670  1999                                                     Drama     30
## 5671  1971                                              Comedy|Drama     30
## 5672  1985                                      Crime|Drama|Thriller     30
## 5673  1999                                                     Drama     30
## 5674  1999                                              Comedy|Drama     30
## 5675  1999                                    Drama|Mystery|Thriller     30
## 5676  1999                                                     Drama     30
## 5677  1988                             Action|Crime|Romance|Thriller     30
## 5678  1973                                               Crime|Drama     30
## 5679  1978                                   Action|Mystery|Thriller     30
## 5680  1984                                                   Romance     30
## 5681  1982                                      Comedy|Drama|Romance     30
## 5682  1991                                                     Drama     30
## 5683  1990                                          Mystery|Thriller     30
## 5684  1977                                            Comedy|Romance     30
## 5685  1992                                                     Drama     30
## 5686  1992                                              Comedy|Crime     30
## 5687  1992                                            Drama|Thriller     30
## 5688  1992                                                     Drama     30
## 5689  1992                                                    Comedy     30
## 5690  1992                                              Comedy|Drama     30
## 5691  1992                               Action|Crime|Drama|Thriller     30
## 5692  1992                                    Drama|Romance|Thriller     30
## 5693  1992                                            Comedy|Fantasy     30
## 5694  1992                                              Comedy|Drama     30
## 5695  1992                                      Drama|Romance|Sci-Fi     30
## 5696  1992                                            Drama|Thriller     30
## 5697  2000                                                    Comedy     30
## 5698  1967                                                     Drama     30
## 5699  2000                                      Crime|Drama|Thriller     30
## 5700  1984                                              Comedy|Drama     30
## 5701  2000                                           Action|Thriller     30
## 5702  1948                            Crime|Drama|Film-Noir|Thriller     30
## 5703  2000                                                    Sci-Fi     30
## 5704  1991                              Comedy|Drama|Fantasy|Romance     30
## 5705  1979                                              Comedy|Drama     30
## 5706  1986                                             Drama|Romance     30
## 5707  1988                                      Comedy|Drama|Romance     30
## 5708  1975                                               Crime|Drama     30
## 5709  1973                                              Comedy|Drama     30
## 5710  1988                                            Drama|Thriller     30
## 5711  1985                                                    Comedy     30
## 5712  1991                                    Drama|Mystery|Thriller     30
## 5713  1987                                                    Comedy     30
## 5714  1987                                            Comedy|Romance     30
## 5715  1987                                                    Comedy     30
## 5716  1991                                     Adventure|Crime|Drama     30
## 5717  1979                                            Drama|Thriller     30
## 5718  1978                                                    Comedy     30
## 5719  1991                                             Drama|Romance     30
## 5720  1979                                                     Drama     30
## 5721  1984                                          Action|Drama|War     30
## 5722  1978                                          Mystery|Thriller     30
## 5723  1987                                          Comedy|Drama|War     30
## 5724  1967                                                     Drama     30
## 5725  1961                                                     Drama     30
## 5726  1990                                            Horror|Mystery     30
## 5727  1987                                                     Drama     30
## 5728  2000                                        Animation|Children     30
## 5729  1991                                  Adventure|Comedy|Fantasy     30
## 5730  1969                                   Adventure|Drama|Western     30
## 5731  1978                                                     Drama     30
## 5732  1990                                     Drama|Horror|Thriller     30
## 5733  1992                                              Comedy|Drama     30
## 5734  1976                                              Comedy|Drama     30
## 5735  1987                                    Drama|Mystery|Thriller     30
## 5736  1979                                              Comedy|Drama     30
## 5737  1968                                                    Comedy     30
## 5738  2000                                            Drama|Thriller     30
## 5739  1981                                            Comedy|Romance     30
## 5740  1989                                              Comedy|Drama     30
## 5741  1991                                             Drama|Romance     30
## 5742  1981                                            Crime|Thriller     30
## 5743  2000                             Crime|Horror|Mystery|Thriller     30
## 5744  2000                                      Comedy|Drama|Romance     30
## 5745  2000                                              Comedy|Drama     30
## 5746  1982                                              Comedy|Drama     30
## 5747  1972                                             Drama|Musical     30
## 5748  1962                                     Drama|Horror|Thriller     30
## 5749  1958                                              Comedy|Drama     30
## 5750  1955                                    Comedy|Musical|Romance     30
## 5751  1976                                      Crime|Drama|Thriller     30
## 5752  1999                                             Drama|Romance     30
## 5753  1992                                          Mystery|Thriller     30
## 5754  2000                                              Comedy|Drama     30
## 5755  2000                                    Action|Adventure|Drama     30
## 5756  1985                                          Adventure|Comedy     30
## 5757  1988                                                    Comedy     30
## 5758  1992                                            Comedy|Romance     30
## 5759  2000                                              Comedy|Crime     30
## 5760  1979                          Action|Adventure|Sci-Fi|Thriller     30
## 5761  1980                                                     Drama     30
## 5762  1974                                            Comedy|Western     30
## 5763  1984                                     Crime|Drama|Film-Noir     30
## 5764  1989                                             Drama|Romance     30
## 5765  1985                                      Comedy|Drama|Romance     30
## 5766  1990                                    Horror|Sci-Fi|Thriller     30
## 5767  1982                                                    Comedy     30
## 5768  1988                               Crime|Drama|Sci-Fi|Thriller     30
## 5769  1979                                   Action|Adventure|Sci-Fi     30
## 5770  1985                                   Action|Adventure|Sci-Fi     30
## 5771  1991                                                    Comedy     30
## 5772  1990                                                     Drama     30
## 5773  1978                                                 Drama|War     30
## 5774  1981                                                     Drama     30
## 5775  1973                                               Crime|Drama     30
## 5776  2000                                 Animation|Children|Comedy     30
## 5777  2000                                          Action|Drama|War     30
## 5778  1986                                     Action|Crime|Thriller     30
## 5779  1998                                               Crime|Drama     30
## 5780  1984                                                     Drama     30
## 5781  1979                                                    Comedy     30
## 5782  1972                                                    Comedy     30
## 5783  2000                                    Horror|Sci-Fi|Thriller     30
## 5784  1980                                   Adventure|Drama|Romance     30
## 5785  1989                                                     Drama     30
## 5786  2000                                                    Comedy     30
## 5787  2000                                               Documentary     30
## 5788  1965                                            Comedy|Western     30
## 5789  2000                                                     Drama     30
## 5790  1966                                          Adventure|Sci-Fi     30
## 5791  2000                                                    Comedy     30
## 5792  2000                                            Drama|Thriller     30
## 5793  1971                                              Action|Drama     30
## 5794  2000                                             Drama|Romance     30
## 5795  2000                                              Drama|Sci-Fi     30
## 5796  2000                                      Action|Drama|Romance     30
## 5797  1987                                                    Comedy     30
## 5798  1987                                                     Drama     30
## 5799  1989                                                 Drama|War     30
## 5800  1988                                                     Drama     30
## 5801  2000                                     Comedy|Crime|Thriller     30
## 5802  1988                                              Comedy|Drama     30
## 5803  2000                                             Drama|Romance     30
## 5804  2000                                            Comedy|Romance     30
## 5805  2000                                                     Drama     30
## 5806  2000                                              Comedy|Crime     30
## 5807  2000                                    Adventure|Comedy|Crime     30
## 5808  2000                                              Comedy|Drama     30
## 5809  2000                                        Drama|Thriller|War     30
## 5810  2000                                      Crime|Drama|Thriller     30
## 5811  1987                          Crime|Film-Noir|Mystery|Thriller     30
## 5812  1982                                          Children|Musical     30
## 5813  1982                                             Drama|Romance     30
## 5814  2000                                                     Drama     30
## 5815  1992                                                     Drama     30
## 5816  1988                                      Comedy|Drama|Romance     30
## 5817  1992                                      Comedy|Drama|Romance     30
## 5818  1984                                 Action|Comedy|Crime|Drama     30
## 5819  1987                     Action|Crime|Mystery|Romance|Thriller     30
## 5820  1987                                    Drama|Romance|Thriller     30
## 5821  1987                                        Animation|Children     30
## 5822  1987                                        Comedy|Documentary     30
## 5823  1987                                                 Drama|War     30
## 5824  1987                                                     Drama     30
## 5825  1987                                                     Drama     30
## 5826  1987                                    Comedy|Horror|Thriller     30
## 5827  1987                                            Comedy|Romance     30
## 5828  2001                                     Drama|Mystery|Romance     30
## 5829  2001                                           Horror|Thriller     30
## 5830  2001                                                  Thriller     30
## 5831  1960                                                     Drama     30
## 5832  1990                                                     Drama     30
## 5833  1984                                                    Comedy     30
## 5834  2000                                          Mystery|Thriller     30
## 5835  2001                                      Comedy|Crime|Romance     30
## 5836  2001                                               Crime|Drama     30
## 5837  2001                                      Comedy|Drama|Romance     30
## 5838  1983                                        Action|Crime|Drama     30
## 5839  1962                                                     Drama     30
## 5840  1985                                                    Comedy     30
## 5841  1982                                      Comedy|Drama|Romance     30
## 5842  1980                                              Comedy|Crime     30
## 5843  1979                                                     Drama     30
## 5844  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     30
## 5845  2001                                     Drama|Musical|Romance     30
## 5846  2001                                  Action|Drama|Romance|War     30
## 5847  1978                                                     Drama     30
## 5848  1990                                              Comedy|Drama     30
## 5849  1991                                            Comedy|Western     30
## 5850  1988                                                     Drama     30
## 5851  1988                                      Crime|Drama|Thriller     30
## 5852  1987                                              Comedy|Crime     30
## 5853  2001                                        Action|Crime|Drama     30
## 5854  2001                                                     Drama     30
## 5855  1989                                              Comedy|Drama     30
## 5856  1992                                            Crime|Thriller     30
## 5857  1982                                            Comedy|Romance     30
## 5858  2001                                    Adventure|Drama|Sci-Fi     30
## 5859  2000                                               Crime|Drama     30
## 5860  1981                                             Action|Comedy     30
## 5861  1962                                       Crime|Drama|Western     30
## 5862  1991                             Comedy|Drama|Mystery|Thriller     30
## 5863  1986                                        Comedy|Crime|Drama     30
## 5864  2001                                            Comedy|Romance     30
## 5865  1988                                      Comedy|Drama|Romance     30
## 5866  1988                                                     Drama     30
## 5867  1988                                      Comedy|Drama|Musical     30
## 5868  1988                                                     Drama     30
## 5869  1988                                                     Drama     30
## 5870  1988                                             Drama|Romance     30
## 5871  1988                                        Action|Crime|Drama     30
## 5872  1988                                            Comedy|Romance     30
## 5873  1988                                                  Thriller     30
## 5874  1988                                            Comedy|Romance     30
## 5875  1988                                Film-Noir|Mystery|Thriller     30
## 5876  1988                                     Action|Crime|Thriller     30
## 5877  1988                                                    Comedy     30
## 5878  1988                                                   Romance     30
## 5879  1988                                  Mystery|Romance|Thriller     30
## 5880  1988                                                    Comedy     30
## 5881  1988                                     Comedy|Romance|Sci-Fi     30
## 5882  1988                                       Action|Thriller|War     30
## 5883  1988                                                     Drama     30
## 5884  1989                                     Drama|Fantasy|Romance     30
## 5885  1989                                              Comedy|Drama     30
## 5886  1989                                              Comedy|Drama     30
## 5887  1989                                               Crime|Drama     30
## 5888  1989                                                     Drama     30
## 5889  1989                                                    Comedy     30
## 5890  1989                                            Comedy|Romance     30
## 5891  1989                                                    Comedy     30
## 5892  1989                                              Comedy|Drama     30
## 5893  1989                                     Action|Crime|Thriller     30
## 5894  2001                                            Comedy|Romance     30
## 5895  2001                             Action|Adventure|Drama|Sci-Fi     30
## 5896  1989                                      Crime|Drama|Thriller     30
## 5897  1989                                              Comedy|Drama     30
## 5898  2001                                   Children|Comedy|Romance     30
## 5899  1969                                    Comedy|Musical|Western     30
## 5900  1976                                             Drama|Western     30
## 5901  1980                                              Drama|Sci-Fi     30
## 5902  1980                                                    Comedy     30
## 5903  2001                                                    Comedy     30
## 5904  2001                                                    Comedy     30
## 5905  1980                                           Action|Thriller     30
## 5906  2001                                      Crime|Drama|Thriller     30
## 5907  1991                                                     Drama     30
## 5908  1971                                            Drama|Thriller     30
## 5909  2001                                                     Drama     30
## 5910  1980                                               Crime|Drama     30
## 5911  1980                                                     Drama     30
## 5912  1980                                                     Drama     30
## 5913  2001                                               Crime|Drama     30
## 5914  2001               Adventure|Animation|Children|Comedy|Fantasy     30
## 5915  2001                                               Crime|Drama     30
## 5916  2001                                    Comedy|Fantasy|Romance     30
## 5917  2001                                Adventure|Children|Fantasy     30
## 5918  2001                             Comedy|Crime|Mystery|Thriller     30
## 5919  1982                                                    Comedy     30
## 5920  1980                                          Mystery|Thriller     30
## 5921  1980                                   Action|Adventure|Sci-Fi     30
## 5922  1990                                  Adventure|Drama|Thriller     30
## 5923  1960                                              Comedy|Crime     30
## 5924  2000                                                    Comedy     30
## 5925  2001                                            Crime|Thriller     30
## 5926  1984                                              Comedy|Drama     30
## 5927  2001                                    Drama|Mystery|Thriller     30
## 5928  2001                                              Comedy|Drama     30
## 5929  2001                                         Adventure|Fantasy     30
## 5930  2001                                             Drama|Romance     30
## 5931  2001                                             Drama|Romance     30
## 5932  1990                        Action|Comedy|Crime|Drama|Thriller     30
## 5933  1980                                                  Thriller     30
## 5934  1982                                 Action|Comedy|Crime|Drama     30
## 5935  1970                                          Comedy|Drama|War     30
## 5936  1984                                             Drama|Romance     30
## 5937  2002                           Action|Adventure|Drama|Thriller     30
## 5938  1993                                            Drama|Thriller     30
## 5939  1972                                   Comedy|Mystery|Thriller     30
## 5940  1971                                                     Drama     30
## 5941  1980                                                    Comedy     30
## 5942  2002                    Drama|Fantasy|Mystery|Romance|Thriller     30
## 5943  2002                                          Action|Drama|War     30
## 5944  1994                                             Drama|Romance     30
## 5945  2002                                      Comedy|Drama|Romance     30
## 5946  1980                                                    Comedy     30
## 5947  1980                                                   Musical     30
## 5948  1980                                            Drama|Thriller     30
## 5949  1980                                                 Drama|War     30
## 5950  1977                                            Comedy|Fantasy     30
## 5951  1981                                                     Drama     30
## 5952  1977                                             Action|Comedy     30
## 5953  1980                                                    Comedy     30
## 5954  2001                                                     Drama     30
## 5955  1984                                    Drama|Romance|Thriller     30
## 5956  1984                                           Action|Thriller     30
## 5957  2002                                            Drama|Thriller     30
## 5958  2002                                            Drama|Thriller     30
## 5959  2002                                            Comedy|Romance     30
## 5960  1990                                            Comedy|Romance     30
## 5961  1990                                                    Comedy     30
## 5962  1987                                                    Comedy     30
## 5963  1990                                            Comedy|Romance     30
## 5964  1990                                              Comedy|Crime     30
## 5965  1985                                            Comedy|Romance     30
## 5966  1984                                            Drama|Thriller     30
## 5967  1991                                                     Drama     30
## 5968  2002                                            Drama|Thriller     30
## 5969  1991                                                     Drama     30
## 5970  1978                                                    Comedy     30
## 5971  2002                       Action|Crime|Drama|Mystery|Thriller     30
## 5972  2001                                                     Drama     30
## 5973  2002                                            Drama|Thriller     30
## 5974  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     30
## 5975  1993                                   Children|Comedy|Romance     30
## 5976  2002                                               Crime|Drama     30
## 5977  1985                                             Drama|Romance     30
## 5978  2002                                    Horror|Sci-Fi|Thriller     30
## 5979  2002                              Crime|Drama|Mystery|Thriller     30
## 5980  2001                                                     Drama     30
## 5981  1979                                           Sci-Fi|Thriller     30
## 5982  1986                                                    Comedy     30
## 5983  1991                                                     Drama     30
## 5984  2002                                                  Thriller     30
## 5985  1990                                                    Comedy     30
## 5986  2002                                            Comedy|Romance     30
## 5987  2002                                    Crime|Mystery|Thriller     30
## 5988  1981                                            Drama|Thriller     30
## 5989  2002                                        Comedy|Documentary     30
## 5990  2002                                   Horror|Mystery|Thriller     30
## 5991  2002                                               Crime|Drama     30
## 5992  1991                                               Crime|Drama     30
## 5993  1983                                      Comedy|Drama|Musical     30
## 5994  1980                                                     Drama     30
## 5995  1980                                                   Western     30
## 5996  1980                                                    Comedy     30
## 5997  1980                                   Fantasy|Musical|Romance     30
## 5998  1981                                             Drama|Romance     30
## 5999  1981                                          Mystery|Thriller     30
## 6000  1981                                            Comedy|Romance     30
## 6001  1981                                             Drama|Romance     30
## 6002  1981                                                  Thriller     30
## 6003  1981                                              Comedy|Drama     30
## 6004  1981                                              Comedy|Drama     30
## 6005  1981                                                    Comedy     30
## 6006  2002                                             Drama|Romance     30
## 6007  1991                                              Action|Drama     30
## 6008  1981                                                     Drama     30
## 6009  1981                                                     Drama     30
## 6010  1981                                       Crime|Drama|Romance     30
## 6011  1981                                                    Comedy     30
## 6012  1981                                        Drama|Thriller|War     30
## 6013  1981                                               Crime|Drama     30
## 6014  2002                                              Comedy|Crime     30
## 6015  2002                                      Comedy|Drama|Romance     30
## 6016  1982                                              Comedy|Drama     30
## 6017  1982                                      Comedy|Drama|Romance     30
## 6018  1982                              Comedy|Drama|Musical|Romance     30
## 6019  1982                                                     Drama     30
## 6020  1982                             Comedy|Crime|Mystery|Thriller     30
## 6021  1982                                                    Comedy     30
## 6022  2002                                              Comedy|Drama     30
## 6023  2002                                               Crime|Drama     30
## 6024  2002                                      Crime|Drama|Thriller     30
## 6025  1990                                            Drama|Thriller     30
## 6026  1990                                           Action|Thriller     30
## 6027  1993                                            Drama|Thriller     30
## 6028  1990                                        Comedy|Crime|Drama     30
## 6029  2002                                               Crime|Drama     30
## 6030  2002                                Comedy|Crime|Drama|Musical     30
## 6031  1983                                              Comedy|Drama     30
## 6032  1991                                             Drama|Romance     30
## 6033  1982                                              Comedy|Drama     30
## 6034  1982                                                     Drama     30
## 6035  1982                                    Drama|Mystery|Thriller     30
## 6036  1982                                                 Drama|War     30
## 6037  1982                                                     Drama     30
## 6038  1982                                                     Drama     30
## 6039  1990                                               Crime|Drama     30
## 6040  2003                                          Action|Drama|War     30
## 6041  2003                                                    Comedy     30
## 6042  1993                                            Comedy|Romance     30
## 6043  1977                                             Drama|Mystery     30
## 6044  1953                                                     Drama     30
## 6045  1990                                      Comedy|Drama|Romance     30
## 6046  1991                                        Action|Crime|Drama     30
## 6047  2003                                        Drama|Thriller|War     30
## 6048  2002                                            Drama|Thriller     30
## 6049  1986                                      Comedy|Crime|Romance     30
## 6050  1991                                            Comedy|Romance     30
## 6051  1985                                      Comedy|Drama|Musical     30
## 6052  1979                                            Comedy|Western     30
## 6053  1990                                                     Drama     30
## 6054  1965                                         Drama|War|Western     30
## 6055  1993                                                     Drama     30
## 6056  1991                                            Drama|Thriller     30
## 6057  1958                                                     Drama     30
## 6058  1986                                            Drama|Thriller     30
## 6059  2003                                                     Drama     30
## 6060  1995                                                     Drama     31
## 6061  1995                                   Mystery|Sci-Fi|Thriller     31
## 6062  1995                                    Crime|Mystery|Thriller     31
## 6063  1976                                      Crime|Drama|Thriller     31
## 6064  1977                                   Action|Adventure|Sci-Fi     31
## 6065  1994                               Comedy|Crime|Drama|Thriller     31
## 6066  1994                                               Crime|Drama     31
## 6067  1994                                      Comedy|Drama|Romance     31
## 6068  1994                                    Action|Sci-Fi|Thriller     31
## 6069  1993                                                 Drama|War     31
## 6070  1982                                    Action|Sci-Fi|Thriller     31
## 6071  1996                                        Comedy|Crime|Drama     31
## 6072  1972                                               Crime|Drama     31
## 6073  1954                                          Mystery|Thriller     31
## 6074  1992                                    Crime|Mystery|Thriller     31
## 6075  1989                                                    Comedy     31
## 6076  1989                                                     Drama     31
## 6077  1987                   Action|Adventure|Comedy|Fantasy|Romance     31
## 6078  1971                               Crime|Drama|Sci-Fi|Thriller     31
## 6079  1979                                          Action|Drama|War     31
## 6080  1974                                               Crime|Drama     31
## 6081  1973                                              Comedy|Crime     31
## 6082  1984                                                 Drama|War     31
## 6083  1988                                     Action|Comedy|Western     31
## 6084  1996                                             Drama|Musical     31
## 6085  1981                                                     Drama     31
## 6086  1986                                 Adventure|Fantasy|Musical     31
## 6087  1998                                          Action|Drama|War     31
## 6088  1989                                      Comedy|Drama|Romance     31
## 6089  1998                                               Crime|Drama     31
## 6090  1999                                              Comedy|Crime     31
## 6091  1999                                    Action|Sci-Fi|Thriller     31
## 6092  1998                                              Action|Crime     31
## 6093  1999                               Action|Crime|Drama|Thriller     31
## 6094  1999                                      Comedy|Drama|Fantasy     31
## 6095  1987                                            Comedy|Romance     31
## 6096  1988                                    Comedy|Fantasy|Romance     31
## 6097  1987                                             Action|Sci-Fi     31
## 6098  2000                                            Drama|Thriller     31
## 6099  2000                                                     Drama     31
## 6100  2000                                                    Comedy     31
## 6101  2001               Adventure|Animation|Children|Comedy|Fantasy     31
## 6102  2001                                              Comedy|Drama     31
## 6103  2001                                         Adventure|Fantasy     31
## 6104  2002                                   Action|Mystery|Thriller     31
## 6105  2002                                         Adventure|Fantasy     31
## 6106  2002                                                 Drama|War     31
## 6107  2003                           Action|Adventure|Comedy|Fantasy     31
## 6108  2003                                      Comedy|Drama|Romance     31
## 6109  2003                            Action|Adventure|Drama|Fantasy     31
## 6110  2004                                      Drama|Romance|Sci-Fi     31
## 6111  2004                Action|Adventure|Animation|Children|Comedy     31
## 6112  2005                                               Documentary     31
## 6113  2005                                         Action|Crime|IMAX     31
## 6114  2006                               Action|Sci-Fi|Thriller|IMAX     31
## 6115  2006                                              Comedy|Drama     31
## 6116  2006                                    Drama|Fantasy|Thriller     31
## 6117  2007                                  Animation|Children|Drama     31
## 6118  2007                                                    Comedy     31
## 6119  2007                                              Comedy|Drama     31
## 6120  2007                                               Crime|Drama     31
## 6121  2008                                   Action|Crime|Drama|IMAX     31
## 6122  2008                                   Action|Adventure|Sci-Fi     31
## 6123  2008                                               Crime|Drama     31
## 6124  2009                 Adventure|Animation|Children|Comedy|Crime     31
## 6125  2009                              Action|Adventure|Sci-Fi|IMAX     31
## 6126  2010                                    Adventure|Fantasy|IMAX     31
## 6127  2010                 Adventure|Animation|Children|Fantasy|IMAX     31
## 6128  2010                                             Action|Comedy     31
## 6129  1995                                Adventure|Children|Fantasy     32
## 6130  1995                                                    Comedy     32
## 6131  1995                                                     Drama     32
## 6132  1995                                  Action|Adventure|Fantasy     32
## 6133  1995                                          Action|Drama|War     32
## 6134  1995                                      Adventure|Drama|IMAX     32
## 6135  1995                             Action|Adventure|Comedy|Crime     32
## 6136  1995                                        Adventure|Children     32
## 6137  1995                                     Action|Crime|Thriller     32
## 6138  1995                                      Action|Drama|Romance     32
## 6139  1995                                       Action|Crime|Sci-Fi     32
## 6140  1995                                                    Action     32
## 6141  1995                                   Action|Adventure|Sci-Fi     32
## 6142  1994                                            Drama|Thriller     32
## 6143  1994                                          Adventure|Comedy     32
## 6144  1994                                            Comedy|Romance     32
## 6145  1994                                                     Drama     32
## 6146  1994                                 Drama|Romance|War|Western     32
## 6147  1995                              Action|Drama|Sci-Fi|Thriller     32
## 6148  1994                               Comedy|Crime|Drama|Thriller     32
## 6149  1994                                                     Drama     32
## 6150  1994                                   Action|Adventure|Sci-Fi     32
## 6151  1994                                      Comedy|Drama|Fantasy     32
## 6152  1995                                                    Comedy     32
## 6153  1993                                                     Drama     32
## 6154  1994                                                    Comedy     32
## 6155  1994                               Action|Crime|Drama|Thriller     32
## 6156  1994                                    Drama|Mystery|Thriller     32
## 6157  1994                                  Comedy|Drama|Romance|War     32
## 6158  1994           Adventure|Animation|Children|Drama|Musical|IMAX     32
## 6159  1994                               Action|Comedy|Crime|Fantasy     32
## 6160  1994                                   Action|Romance|Thriller     32
## 6161  1994                  Action|Adventure|Comedy|Romance|Thriller     32
## 6162  1993                                   Children|Comedy|Fantasy     32
## 6163  1994                              Action|Comedy|Crime|Thriller     32
## 6164  1993                                                     Drama     32
## 6165  1994                                  Adventure|Comedy|Western     32
## 6166  1993                                 Action|Adventure|Thriller     32
## 6167  1993                                            Comedy|Romance     32
## 6168  1993                                   Action|Adventure|Sci-Fi     32
## 6169  1993                                                  Thriller     32
## 6170  1993                          Action|Adventure|Sci-Fi|Thriller     32
## 6171  1993                                      Action|Drama|Western     32
## 6172  1992               Adventure|Animation|Children|Comedy|Musical     32
## 6173  1991                                             Action|Sci-Fi     32
## 6174  1990                                   Adventure|Drama|Western     32
## 6175  1989                                     Action|Crime|Thriller     32
## 6176  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     32
## 6177  1995                                                    Comedy     33
## 6178  1996                                                    Comedy     33
## 6179  1995                                                Comedy|War     33
## 6180  1994                                          Adventure|Comedy     33
## 6181  1994                                                    Comedy     33
## 6182  1994                                   Action|Romance|Thriller     33
## 6183  1994                                       Comedy|Crime|Horror     33
## 6184  1995                                              Comedy|Drama     33
## 6185  1996                                            Crime|Thriller     33
## 6186  1996                                                     Drama     33
## 6187  1959                 Action|Adventure|Mystery|Romance|Thriller     33
## 6188  1996                                              Comedy|Drama     33
## 6189  1989                                                    Comedy     33
## 6190  1996                                              Comedy|Drama     33
## 6191  1989                                                     Drama     33
## 6192  1980                                   Action|Adventure|Sci-Fi     33
## 6193  1987                   Action|Adventure|Comedy|Fantasy|Romance     33
## 6194  1981                                          Action|Adventure     33
## 6195  1977                                            Comedy|Romance     33
## 6196  1980                                                    Horror     33
## 6197  1986                                           Adventure|Drama     33
## 6198  1989                                                    Comedy     33
## 6199  1989                                          Action|Adventure     33
## 6200  1984                                           Horror|Thriller     33
## 6201  1996                                           Children|Comedy     33
## 6202  1987                                                    Comedy     33
## 6203  1996                            Comedy|Horror|Mystery|Thriller     33
## 6204  1997                            Comedy|Horror|Mystery|Thriller     33
## 6205  1997                                                    Comedy     33
## 6206  1997                                      Comedy|Drama|Romance     33
## 6207  1986                                 Adventure|Fantasy|Musical     33
## 6208  1980                                   Horror|Mystery|Thriller     33
## 6209  1978                                                    Horror     33
## 6210  1981                                                    Horror     33
## 6211  1982                                                    Horror     33
## 6212  1982                                           Horror|Thriller     33
## 6213  1985                  Action|Adventure|Children|Comedy|Fantasy     33
## 6214  1998                                     Action|Comedy|Romance     33
## 6215  1998                                                    Comedy     33
## 6216  1989                                               Documentary     33
## 6217  1980                                  Adventure|Comedy|Musical     33
## 6218  1998                                           Horror|Thriller     33
## 6219  1986                                      Comedy|Drama|Romance     33
## 6220  1998                                             Action|Comedy     33
## 6221  1988                                  Action|Adventure|Fantasy     33
## 6222  1998                                               Crime|Drama     33
## 6223  1985                                      Comedy|Crime|Mystery     33
## 6224  1998                                              Comedy|Drama     33
## 6225  1986                                          Adventure|Comedy     33
## 6226  1999                                              Comedy|Crime     33
## 6227  1999                                             Comedy|Sci-Fi     33
## 6228  1999                                                     Drama     33
## 6229  1999                                                    Comedy     33
## 6230  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     33
## 6231  1999                                               Documentary     33
## 6232  1999                                            Comedy|Romance     33
## 6233  1985                                                    Horror     33
## 6234  1997                            Comedy|Horror|Romance|Thriller     33
## 6235  1983                                                    Comedy     33
## 6236  1999                                            Comedy|Romance     33
## 6237  1999                                                    Comedy     33
## 6238  1981                                            Crime|Thriller     33
## 6239  1986                                                    Comedy     33
## 6240  1988                                              Comedy|Drama     33
## 6241  1999                               Action|Crime|Drama|Thriller     33
## 6242  1999                                      Comedy|Drama|Fantasy     33
## 6243  1999                                               Documentary     33
## 6244  1999                                   Children|Comedy|Fantasy     33
## 6245  2000                            Comedy|Horror|Mystery|Thriller     33
## 6246  2000                                      Crime|Drama|Thriller     33
## 6247  2000                                              Comedy|Drama     33
## 6248  2000                                                     Drama     33
## 6249  2000                                      Comedy|Drama|Romance     33
## 6250  1980                                                    Comedy     33
## 6251  2000                                              Comedy|Drama     33
## 6252  1999                                            Comedy|Romance     33
## 6253  1985                                          Adventure|Comedy     33
## 6254  2000                                                    Comedy     33
## 6255  1999                                                     Drama     33
## 6256  2000                                          Adventure|Comedy     33
## 6257  2000                                             Comedy|Horror     33
## 6258  2000                                              Comedy|Drama     33
## 6259  2000                                                    Comedy     33
## 6260  2000                                                    Comedy     33
## 6261  2000                                        Comedy|Documentary     33
## 6262  1988                               Action|Comedy|Crime|Romance     33
## 6263  2000                       Comedy|Crime|Drama|Romance|Thriller     33
## 6264  2000                                                     Drama     33
## 6265  2000                                             Drama|Musical     33
## 6266  2000                                                    Comedy     33
## 6267  2000               Adventure|Animation|Children|Comedy|Fantasy     33
## 6268  2000                                                     Drama     33
## 6269  2000                                    Adventure|Comedy|Crime     33
## 6270  1984                                                    Comedy     33
## 6271  2001                          Adventure|Comedy|Mystery|Romance     33
## 6272  2001                                                    Comedy     33
## 6273  2000                                            Drama|Thriller     33
## 6274  1987                                              Comedy|Crime     33
## 6275  2001                                                    Comedy     33
## 6276  2000                                               Crime|Drama     33
## 6277  2001                                                    Comedy     33
## 6278  2001                                            Comedy|Romance     33
## 6279  2001                                      Crime|Drama|Thriller     33
## 6280  2001                                                    Comedy     33
## 6281  1988                                                    Comedy     33
## 6282  1988                                        Action|Crime|Drama     33
## 6283  1988                                           Children|Comedy     33
## 6284  1988                                                    Comedy     33
## 6285  1988                                                    Comedy     33
## 6286  1989                                            Comedy|Romance     33
## 6287  1989                                                    Comedy     33
## 6288  2001                                              Comedy|Drama     33
## 6289  2001                             Action|Adventure|Drama|Sci-Fi     33
## 6290  2001                                                    Comedy     33
## 6291  1989                                      Comedy|Horror|Sci-Fi     33
## 6292  1989                                              Comedy|Crime     33
## 6293  1989                                                    Comedy     33
## 6294  1989                                                    Comedy     33
## 6295  2001                                                    Comedy     33
## 6296  2001                                                    Comedy     33
## 6297  1983                                                     Drama     33
## 6298  2001                             Drama|Mystery|Sci-Fi|Thriller     33
## 6299  2001                                    Comedy|Fantasy|Romance     33
## 6300  2001                             Comedy|Crime|Mystery|Thriller     33
## 6301  1982                                                    Comedy     33
## 6302  1980            Action|Adventure|Comedy|Drama|Romance|Thriller     33
## 6303  2001                                            Crime|Thriller     33
## 6304  2001                                                    Comedy     33
## 6305  2001                           Mystery|Romance|Sci-Fi|Thriller     33
## 6306  1987                                                 Adventure     33
## 6307  2001                                             Drama|Romance     33
## 6308  2001                                              Comedy|Drama     33
## 6309  2002                                    Comedy|Musical|Romance     33
## 6310  2002                                                  Thriller     33
## 6311  1992                                              Comedy|Drama     33
## 6312  2002                                               Documentary     33
## 6313  2002                                               Documentary     33
## 6314  2002                                      Comedy|Drama|Romance     33
## 6315  1995                                     Action|Crime|Thriller     34
## 6316  1995                                     Comedy|Crime|Thriller     34
## 6317  1995                                   Mystery|Sci-Fi|Thriller     34
## 6318  1995                                            Comedy|Romance     34
## 6319  1995                                          Mystery|Thriller     34
## 6320  1995                                    Crime|Mystery|Thriller     34
## 6321  1996                             Action|Comedy|Horror|Thriller     34
## 6322  1995                                          Action|Drama|War     34
## 6323  1995                                      Adventure|Drama|IMAX     34
## 6324  1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller     34
## 6325  1994                                              Drama|Horror     34
## 6326  1977                                   Action|Adventure|Sci-Fi     34
## 6327  1994                                     Action|Crime|Thriller     34
## 6328  1994                               Action|Crime|Drama|Thriller     34
## 6329  1994                               Comedy|Crime|Drama|Thriller     34
## 6330  1994                                   Action|Adventure|Sci-Fi     34
## 6331  1993                                                     Drama     34
## 6332  1994                                   Action|Romance|Thriller     34
## 6333  1995                                           Horror|Thriller     34
## 6334  1993                                   Action|Adventure|Sci-Fi     34
## 6335  1994                                      Crime|Drama|Thriller     34
## 6336  1993                                                 Drama|War     34
## 6337  1982                                    Action|Sci-Fi|Thriller     34
## 6338  1993                                            Crime|Thriller     34
## 6339  1993                                               Documentary     34
## 6340  1995                                              Comedy|Drama     34
## 6341  1995                                               Documentary     34
## 6342  1991                                             Action|Sci-Fi     34
## 6343  1991                                     Crime|Horror|Thriller     34
## 6344  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     34
## 6345  1969                                         Adventure|Western     34
## 6346  1996                               Comedy|Crime|Drama|Thriller     34
## 6347  1981                  Action|Adventure|Animation|Horror|Sci-Fi     34
## 6348  1993                                            Drama|Thriller     34
## 6349  1996                             Drama|Fantasy|Horror|Thriller     34
## 6350  1964                                                Comedy|War     34
## 6351  1972                                               Crime|Drama     34
## 6352  1942                                             Drama|Romance     34
## 6353  1941                                         Film-Noir|Mystery     34
## 6354  1939                        Adventure|Children|Fantasy|Musical     34
## 6355  1941                                             Drama|Mystery     34
## 6356  1968                                    Adventure|Drama|Sci-Fi     34
## 6357  1938                                  Action|Adventure|Romance     34
## 6358  1951                              Adventure|Comedy|Romance|War     34
## 6359  1988                                     Action|Crime|Thriller     34
## 6360  1996                                             Drama|Romance     34
## 6361  1992                                    Crime|Mystery|Thriller     34
## 6362  1986                                                 Drama|War     34
## 6363  1992                                    Crime|Mystery|Thriller     34
## 6364  1982                                     Children|Drama|Sci-Fi     34
## 6365  1955                                                     Drama     34
## 6366  1951                                                     Drama     34
## 6367  1996                                              Comedy|Drama     34
## 6368  1981                          Action|Adventure|Sci-Fi|Thriller     34
## 6369  1980                                            Horror|Mystery     34
## 6370  1996                                               Documentary     34
## 6371  1957                                                 Drama|War     34
## 6372  1990                                     Crime|Drama|Film-Noir     34
## 6373  1975                                                     Drama     34
## 6374  1980                                   Action|Adventure|Sci-Fi     34
## 6375  1981                                          Action|Adventure     34
## 6376  1986                            Action|Adventure|Horror|Sci-Fi     34
## 6377  1966                                  Action|Adventure|Western     34
## 6378  1962                                       Adventure|Drama|War     34
## 6379  1971                               Crime|Drama|Sci-Fi|Thriller     34
## 6380  1962                                                     Drama     34
## 6381  1979                                          Action|Drama|War     34
## 6382  1990                                               Crime|Drama     34
## 6383  1979                                             Horror|Sci-Fi     34
## 6384  1993                    Action|Adventure|Comedy|Fantasy|Horror     34
## 6385  1960                                              Crime|Horror     34
## 6386  1980                                     Action|Comedy|Musical     34
## 6387  1974                                               Crime|Drama     34
## 6388  1987                                                 Drama|War     34
## 6389  1983                                                     Drama     34
## 6390  1973                                              Comedy|Crime     34
## 6391  1984                                    Action|Sci-Fi|Thriller     34
## 6392  1967                                      Comedy|Drama|Romance     34
## 6393  1957                                       Adventure|Drama|War     34
## 6394  1974                          Crime|Film-Noir|Mystery|Thriller     34
## 6395  1951                                     Drama|Sci-Fi|Thriller     34
## 6396  1948                            Action|Adventure|Drama|Western     34
## 6397  1980                                                    Horror     34
## 6398  1986                                           Adventure|Drama     34
## 6399  1963                                Action|Adventure|Drama|War     34
## 6400  1978                                                 Drama|War     34
## 6401  1962                                        Crime|Thriller|War     34
## 6402  1985                                   Adventure|Comedy|Sci-Fi     34
## 6403  1970                                                 Drama|War     34
## 6404  1967                                                     Drama     34
## 6405  1959                                    Action|Adventure|Drama     34
## 6406  1982                                             Drama|Musical     34
## 6407  1984                                                 Drama|War     34
## 6408  1992                             Action|Horror|Sci-Fi|Thriller     34
## 6409  1981                                    Comedy|Horror|Thriller     34
## 6410  1992                           Fantasy|Horror|Romance|Thriller     34
## 6411  1935                                       Drama|Horror|Sci-Fi     34
## 6412  1996                                                     Drama     34
## 6413  1975                                             Action|Horror     34
## 6414  1992                          Action|Comedy|Crime|Drama|Sci-Fi     34
## 6415  1996                            Comedy|Horror|Mystery|Thriller     34
## 6416  1997             Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     34
## 6417  1997                            Action|Adventure|Comedy|Sci-Fi     34
## 6418  1997                                      Action|Comedy|Sci-Fi     34
## 6419  1997                               Action|Crime|Drama|Thriller     34
## 6420  1997                            Drama|Mystery|Romance|Thriller     34
## 6421  1990                                 Action|Adventure|Thriller     34
## 6422  1997                          Crime|Film-Noir|Mystery|Thriller     34
## 6423  1997                                    Drama|Mystery|Thriller     34
## 6424  1997                                     Drama|Sci-Fi|Thriller     34
## 6425  1997                                             Action|Sci-Fi     34
## 6426  1997                                      Action|Horror|Sci-Fi     34
## 6427  1998                              Crime|Drama|Fantasy|Thriller     34
## 6428  1998                                            Comedy|Romance     34
## 6429  1935                                           Adventure|Drama     34
## 6430  1969                                                     Drama     34
## 6431  1976                                                     Drama     34
## 6432  1984                                             Comedy|Sci-Fi     34
## 6433  1973                                            Horror|Mystery     34
## 6434  1973                             Drama|Mystery|Sci-Fi|Thriller     34
## 6435  1998                                          Action|Drama|War     34
## 6436  1989                                               Documentary     34
## 6437  1986                                    Drama|Mystery|Thriller     34
## 6438  1982                                   Action|Adventure|Sci-Fi     34
## 6439  1982                             Action|Horror|Sci-Fi|Thriller     34
## 6440  1992                                        Comedy|Crime|Drama     34
## 6441  1984                                                    Sci-Fi     34
## 6442  1998                                   Horror|Mystery|Thriller     34
## 6443  1998                                           Action|Thriller     34
## 6444  1933                           Action|Adventure|Fantasy|Horror     34
## 6445  1998                                      Comedy|Drama|Romance     34
## 6446  1985                                             Comedy|Sci-Fi     34
## 6447  1973                            Action|Sci-Fi|Thriller|Western     34
## 6448  1976                                   Action|Adventure|Sci-Fi     34
## 6449  1968                                       Action|Drama|Sci-Fi     34
## 6450  1960                                    Horror|Sci-Fi|Thriller     34
## 6451  1999                                    Action|Sci-Fi|Thriller     34
## 6452  1999                                                    Comedy     34
## 6453  1931                                                    Horror     34
## 6454  1931                                       Drama|Horror|Sci-Fi     34
## 6455  1975                              Comedy|Horror|Musical|Sci-Fi     34
## 6456  1953                                       Action|Drama|Sci-Fi     34
## 6457  1984                                      Action|Comedy|Sci-Fi     34
## 6458  1999                                      Drama|Horror|Mystery     34
## 6459  1997                            Comedy|Horror|Romance|Thriller     34
## 6460  1988                              Comedy|Drama|Fantasy|Romance     34
## 6461  1999                                             Drama|Romance     34
## 6462  1964                                  Adventure|Comedy|Musical     34
## 6463  1972                                  Adventure|Drama|Thriller     34
## 6464  1979                                             Horror|Sci-Fi     34
## 6465  1999                                                     Drama     34
## 6466  1990                          Action|Adventure|Sci-Fi|Thriller     34
## 6467  1973                                                   Western     34
## 6468  1967                                          Action|Drama|War     34
## 6469  1962                                 Action|Adventure|Thriller     34
## 6470  1964                                            Action|Western     34
## 6471  1979                                     Drama|Fantasy|Musical     34
## 6472  1987                        Action|Crime|Drama|Sci-Fi|Thriller     34
## 6473  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     34
## 6474  1971                              Action|Drama|Sci-Fi|Thriller     34
## 6475  1955                                          Comedy|Drama|War     34
## 6476  1962                                          Action|Drama|War     34
## 6477  1970                                          Action|Drama|War     34
## 6478  1972                                                   Western     34
## 6479  1969                                           Adventure|Drama     34
## 6480  1953                                                 Drama|War     34
## 6481  1992                               Action|Crime|Drama|Thriller     34
## 6482  2000                                                    Comedy     34
## 6483  1988                                      Comedy|Drama|Romance     34
## 6484  1991                                    Drama|Mystery|Thriller     34
## 6485  1991                                     Adventure|Crime|Drama     34
## 6486  1963                                             Drama|Western     34
## 6487  1961                                                     Drama     34
## 6488  1977                                    Adventure|Drama|Sci-Fi     34
## 6489  1976                                              Comedy|Drama     34
## 6490  1976                   Action|Adventure|Drama|Thriller|Western     34
## 6491  1987                                    Action|Sci-Fi|Thriller     34
## 6492  1976                                      Crime|Drama|Thriller     34
## 6493  1964                                                  Thriller     34
## 6494  1979                                   Action|Adventure|Sci-Fi     34
## 6495  1981                          Action|Adventure|Sci-Fi|Thriller     34
## 6496  1987                         Film-Noir|Horror|Mystery|Thriller     34
## 6497  1987                                            Horror|Western     34
## 6498  1980                                                 Drama|War     34
## 6499  1987                                                    Horror     34
## 6500  1966                                          Adventure|Sci-Fi     34
## 6501  1970                                          Comedy|Drama|War     34
## 6502  1995                                              Drama|Sci-Fi     35
## 6503  1995                                            Drama|Thriller     35
## 6504  1994                                               Crime|Drama     35
## 6505  1995                                            Comedy|Romance     35
## 6506  1996                             Drama|Fantasy|Horror|Thriller     35
## 6507  1996                                      Comedy|Drama|Romance     35
## 6508  1964                              Comedy|Drama|Musical|Romance     35
## 6509  1941                          Animation|Children|Drama|Musical     35
## 6510  1996                                     Action|Drama|Thriller     35
## 6511  1992                                            Comedy|Romance     35
## 6512  1983                                                     Drama     35
## 6513  1990                             Action|Crime|Romance|Thriller     35
## 6514  1962                                        Crime|Thriller|War     35
## 6515  1982                                   Action|Adventure|Sci-Fi     35
## 6516  1998                                     Action|Crime|Thriller     35
## 6517  1992                                        Comedy|Crime|Drama     35
## 6518  1998                                                     Drama     35
## 6519  1981                           Adventure|Comedy|Fantasy|Sci-Fi     35
## 6520  1987                                            Comedy|Romance     35
## 6521  2000                                            Drama|Thriller     35
## 6522  1995                                     Action|Crime|Thriller     36
## 6523  1995                                               Crime|Drama     36
## 6524  1995                                                    Comedy     36
## 6525  1995                                     Comedy|Crime|Thriller     36
## 6526  1995                                             Drama|Romance     36
## 6527  1995                                                     Drama     36
## 6528  1995                                   Mystery|Sci-Fi|Thriller     36
## 6529  1995                                               Crime|Drama     36
## 6530  1995                                                 Drama|War     36
## 6531  1995                                     Comedy|Drama|Thriller     36
## 6532  1995                                    Crime|Mystery|Thriller     36
## 6533  1995                                      Comedy|Drama|Romance     36
## 6534  1995                                                     Drama     36
## 6535  1995                                                     Drama     36
## 6536  1994                                      Comedy|Drama|Romance     36
## 6537  1995                                            Comedy|Romance     36
## 6538  1976                                      Crime|Drama|Thriller     36
## 6539  1995                                                    Comedy     36
## 6540  1995                        Action|Comedy|Crime|Drama|Thriller     36
## 6541  1995                                                     Drama     36
## 6542  1995                                  Action|Drama|Romance|War     36
## 6543  1995                                     Action|Crime|Thriller     36
## 6544  1995                                                    Comedy     36
## 6545  1994                                                    Comedy     36
## 6546  1994                                      Comedy|Drama|Romance     36
## 6547  1995                                     Action|Comedy|Romance     36
## 6548  1994                                             Drama|Musical     36
## 6549  1994                                               Documentary     36
## 6550  1994                                                    Comedy     36
## 6551  1994                                             Drama|Romance     36
## 6552  1994                                            Comedy|Romance     36
## 6553  1994                                              Drama|Horror     36
## 6554  1994                                             Comedy|Sci-Fi     36
## 6555  1977                                   Action|Adventure|Sci-Fi     36
## 6556  1994                                                     Drama     36
## 6557  1992                                     Drama|Fantasy|Romance     36
## 6558  1994                                              Comedy|Drama     36
## 6559  1994                                       Drama|Horror|Sci-Fi     36
## 6560  1994                                                     Drama     36
## 6561  1994                                                     Drama     36
## 6562  1994                                     Action|Crime|Thriller     36
## 6563  1994                               Action|Crime|Drama|Thriller     36
## 6564  1994                               Comedy|Crime|Drama|Thriller     36
## 6565  1994                                                     Drama     36
## 6566  1994                                                     Drama     36
## 6567  1993                                                     Drama     36
## 6568  1994                                              Comedy|Drama     36
## 6569  1995                                                    Comedy     36
## 6570  1994                                     Action|Drama|Thriller     36
## 6571  1994                                               Crime|Drama     36
## 6572  1993                                                     Drama     36
## 6573  1994                                                     Drama     36
## 6574  1994                                              Comedy|Drama     36
## 6575  1994                                                    Comedy     36
## 6576  1994                                    Drama|Mystery|Thriller     36
## 6577  1994                                  Comedy|Drama|Romance|War     36
## 6578  1994                                            Comedy|Romance     36
## 6579  1994                                Adventure|Children|Romance     36
## 6580  1994                                  Adventure|Comedy|Western     36
## 6581  1994                                      Comedy|Drama|Romance     36
## 6582  1994                                             Drama|Romance     36
## 6583  1994                             Drama|Horror|Romance|Thriller     36
## 6584  1993                                                     Drama     36
## 6585  1994                              Action|Comedy|Crime|Thriller     36
## 6586  1993                                               Crime|Drama     36
## 6587  1994                                  Adventure|Comedy|Western     36
## 6588  1993                                 Action|Adventure|Thriller     36
## 6589  1993                                            Comedy|Romance     36
## 6590  1993                                            Drama|Thriller     36
## 6591  1993                                                  Thriller     36
## 6592  1993                                             Drama|Romance     36
## 6593  1993                                                     Drama     36
## 6594  1993                          Action|Adventure|Sci-Fi|Thriller     36
## 6595  1993                                            Drama|Thriller     36
## 6596  1993                                                     Drama     36
## 6597  1993                                                     Drama     36
## 6598  1993                                             Drama|Romance     36
## 6599  1993                                             Drama|Romance     36
## 6600  1993                                            Crime|Thriller     36
## 6601  1993                                                     Drama     36
## 6602  1993                                                 Drama|War     36
## 6603  1993                                            Children|Drama     36
## 6604  1994                                       Comedy|Crime|Horror     36
## 6605  1993                                             Drama|Romance     36
## 6606  1993                                      Comedy|Drama|Romance     36
## 6607  1993                                                  Thriller     36
## 6608  1993                                   Comedy|Romance|Thriller     36
## 6609  1993                        Animation|Children|Fantasy|Musical     36
## 6610  1990                                           Children|Comedy     36
## 6611  1990                     Comedy|Drama|Fantasy|Romance|Thriller     36
## 6612  1992               Adventure|Animation|Children|Comedy|Musical     36
## 6613  1990                                   Adventure|Drama|Western     36
## 6614  1989                                     Action|Crime|Thriller     36
## 6615  1991                                     Crime|Horror|Thriller     36
## 6616  1990                                            Comedy|Romance     36
## 6617  1996                                            Drama|Thriller     36
## 6618  1996                                Adventure|Animation|Comedy     36
## 6619  1996                                        Comedy|Crime|Drama     36
## 6620  1996                             Comedy|Fantasy|Romance|Sci-Fi     36
## 6621  1996                                      Comedy|Drama|Romance     36
## 6622  1988                                     Action|Crime|Thriller     36
## 6623  1982                                                     Drama     36
## 6624  1996                          Action|Adventure|Sci-Fi|Thriller     36
## 6625  1996                                 Adventure|Children|Comedy     36
## 6626  1995               Adventure|Animation|Children|Comedy|Fantasy     37
## 6627  1994           Adventure|Animation|Children|Drama|Musical|IMAX     37
## 6628  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     37
## 6629  1961                                             Drama|Romance     37
## 6630  1942                                             Drama|Romance     37
## 6631  1939                                         Drama|Romance|War     37
## 6632  1938                                  Action|Adventure|Romance     37
## 6633  1975                                                     Drama     37
## 6634  1980                                   Action|Adventure|Sci-Fi     37
## 6635  1989                                                     Drama     37
## 6636  1989                                            Comedy|Romance     37
## 6637  1998 Adventure|Animation|Children|Comedy|Drama|Musical|Romance     37
## 6638  1998                                          Action|Drama|War     37
## 6639  1989                 Animation|Children|Comedy|Musical|Romance     37
## 6640  1961                              Adventure|Animation|Children     37
## 6641  1998                              Action|Comedy|Crime|Thriller     37
## 6642  1999                                             Drama|Romance     37
## 6643  1999                                             Drama|Romance     37
## 6644  2000                                      Comedy|Drama|Romance     37
## 6645  1999                                                    Comedy     37
## 6646  2000                                           Children|Comedy     37
## 6647  2000                                 Animation|Children|Comedy     37
## 6648  2000                                                    Comedy     37
## 6649  2000                                             Action|Comedy     37
## 6650  2000                                      Action|Drama|Romance     37
## 6651  2000                                     Comedy|Crime|Thriller     37
## 6652  2000                                             Drama|Romance     37
## 6653  2000                                             Comedy|Sci-Fi     37
## 6654  2000                                            Comedy|Romance     37
## 6655  2000                                      Crime|Drama|Thriller     37
## 6656  2001                                             Drama|Romance     37
## 6657  2001                                            Comedy|Romance     37
## 6658  1995                                               Crime|Drama     38
## 6659  1995                                          Mystery|Thriller     38
## 6660  1995                                          Action|Drama|War     38
## 6661  1994                               Action|Crime|Drama|Thriller     38
## 6662  1994                               Comedy|Crime|Drama|Thriller     38
## 6663  1994                                                     Drama     38
## 6664  1994                                               Crime|Drama     38
## 6665  1994                                  Comedy|Drama|Romance|War     38
## 6666  1994           Adventure|Animation|Children|Drama|Musical|IMAX     38
## 6667  1993                                                     Drama     38
## 6668  1994                               Action|Comedy|Crime|Fantasy     38
## 6669  1993                                                 Drama|War     38
## 6670  1992               Adventure|Animation|Children|Comedy|Musical     38
## 6671  1990                                   Adventure|Drama|Western     38
## 6672  1991                                     Crime|Horror|Thriller     38
## 6673  1996                                        Comedy|Crime|Drama     38
## 6674  1996                                      Comedy|Drama|Romance     38
## 6675  1972                                               Crime|Drama     38
## 6676  1950                                                     Drama     38
## 6677  1971                                                Comedy|War     38
## 6678  1979                                                    Comedy     38
## 6679  1975                                  Adventure|Comedy|Fantasy     38
## 6680  1989                                                     Drama     38
## 6681  1990                                               Crime|Drama     38
## 6682  1974                                               Crime|Drama     38
## 6683  1979                                      Comedy|Drama|Romance     38
## 6684  1983                                               Documentary     38
## 6685  1998                                       Comedy|Drama|Sci-Fi     38
## 6686  1997                                             Drama|Romance     38
## 6687  1987                                 Action|Comedy|Crime|Drama     38
## 6688  1997                                             Drama|Romance     38
## 6689  1982                                     Drama|Fantasy|Mystery     38
## 6690  1981                                                 Drama|War     38
## 6691  1994      Adventure|Animation|Children|Fantasy|Musical|Romance     38
## 6692  1978                                                     Drama     38
## 6693  1987                                        Action|Crime|Drama     38
## 6694  1997                                  Comedy|Drama|Romance|War     38
## 6695  1999                                    Action|Sci-Fi|Thriller     38
## 6696  1980                                             Action|Sci-Fi     38
## 6697  1998                                             Drama|Mystery     38
## 6698  1987                                              Comedy|Drama     38
## 6699  1999                                             Drama|Romance     38
## 6700  1999                               Action|Crime|Drama|Thriller     38
## 6701  1999                                               Crime|Drama     38
## 6702  2000                                    Action|Adventure|Drama     38
## 6703  1992                                               Documentary     38
## 6704  1987                                                     Drama     38
## 6705  2000                                          Mystery|Thriller     38
## 6706  1972                                                     Drama     38
## 6707  1991                                                     Drama     38
## 6708  1980                                             Drama|Musical     38
## 6709  2001                                            Comedy|Romance     38
## 6710  2001                                         Adventure|Fantasy     38
## 6711  2001                                             Drama|Romance     38
## 6712  2002                          Action|Adventure|Sci-Fi|Thriller     38
## 6713  2002                                   Action|Mystery|Thriller     38
## 6714  2002                                         Adventure|Fantasy     38
## 6715  1982                                                 Drama|War     38
## 6716  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     38
## 6717  2003                           Action|Adventure|Comedy|Fantasy     38
## 6718  2003                                       Crime|Drama|Mystery     38
## 6719  2003                                     Action|Crime|Thriller     38
## 6720  2003                      Crime|Drama|Mystery|Romance|Thriller     38
## 6721  1972                                           Adventure|Drama     38
## 6722  1973                                              Comedy|Drama     38
## 6723  2003                            Action|Adventure|Drama|Fantasy     38
## 6724  1954                                                     Drama     38
## 6725  1966                                                     Drama     38
## 6726  1973                                                     Drama     38
## 6727  2004                                     Action|Drama|Thriller     38
## 6728  1968                                                 Drama|War     38
## 6729  1955                                            Comedy|Romance     38
## 6730  1960                                                     Drama     38
## 6731  1959                                         Drama|Romance|War     38
## 6732  1961                                              Comedy|Drama     38
## 6733  1988                                               Crime|Drama     38
## 6734  1989                                       Crime|Drama|Romance     38
## 6735  2005                                         Action|Crime|IMAX     38
## 6736  2006                                    Drama|Romance|Thriller     38
## 6737  2006                                              Comedy|Drama     38
## 6738  2006                 Action|Adventure|Crime|Drama|Thriller|War     38
## 6739  2007                                      Crime|Drama|Thriller     38
## 6740  2007                                    Action|Adventure|Drama     38
## 6741  2008                                   Action|Crime|Drama|IMAX     38
## 6742  1993                                                     Drama     38
## 6743  2008               Adventure|Animation|Children|Romance|Sci-Fi     38
## 6744  2008                                               Crime|Drama     38
## 6745  1994                                                     Drama     38
## 6746  1977                                                     Drama     38
## 6747  2009                                               Crime|Drama     38
## 6748  2009                                             Drama|Mystery     38
## 6749  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     38
## 6750  2010                                         Drama|Mystery|War     38
## 6751  2011                                                     Drama     38
## 6752  2012                                                     Drama     38
## 6753  2012                                                 Drama|War     38
## 6754  2012                                                     Drama     38
## 6755  2012                                              Comedy|Drama     38
## 6756  2012                                                     Drama     38
## 6757  2013                                     Drama|Mystery|Romance     38
## 6758  2013                                                     Drama     38
## 6759  2013                                           Adventure|Drama     38
## 6760  2013                                             Drama|Romance     38
## 6761  2013                                          Animation|Sci-Fi     38
## 6762  2013                              Action|Adventure|Sci-Fi|IMAX     38
## 6763  2013                                        Comedy|Crime|Drama     38
## 6764  2006                                     Drama|Mystery|Romance     38
## 6765  2014                                              Comedy|Drama     38
## 6766  2014                              Action|Adventure|Sci-Fi|IMAX     38
## 6767  2014                                              Comedy|Drama     38
## 6768  2015                                    Adventure|Drama|Sci-Fi     38
## 6769  1995                                     Action|Crime|Thriller     39
## 6770  1995                                 Action|Adventure|Thriller     39
## 6771  1995                                               Crime|Drama     39
## 6772  1995                                     Comedy|Crime|Thriller     39
## 6773  1995                       Crime|Drama|Horror|Mystery|Thriller     39
## 6774  1995                                                     Drama     39
## 6775  1995                                          Mystery|Thriller     39
## 6776  1995                                    Crime|Mystery|Thriller     39
## 6777  1995                                                    Comedy     39
## 6778  1996                             Action|Comedy|Horror|Thriller     39
## 6779  1995                                                 Drama|War     39
## 6780  1995                                    Action|Sci-Fi|Thriller     39
## 6781  1995                                          Action|Drama|War     39
## 6782  1995                        Action|Comedy|Crime|Drama|Thriller     39
## 6783  1995                                      Adventure|Drama|IMAX     39
## 6784  1995                             Action|Adventure|Comedy|Crime     39
## 6785  1995                           Action|Adventure|Mystery|Sci-Fi     39
## 6786  1994                                               Documentary     39
## 6787  1995                                     Action|Crime|Thriller     39
## 6788  1995                                      Action|Drama|Romance     39
## 6789  1995                           Action|Adventure|Crime|Thriller     39
## 6790  1995                                                     Drama     39
## 6791  1995                                                    Horror     39
## 6792  1995                                            Comedy|Romance     39
## 6793  1995                                    Fantasy|Horror|Mystery     39
## 6794  1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller     39
## 6795  1995                                                    Horror     39
## 6796  1994                                                    Comedy     39
## 6797  1994                                          Adventure|Comedy     39
## 6798  1994                                              Drama|Horror     39
## 6799  1994                                       Drama|Horror|Sci-Fi     39
## 6800  1993                                              Drama|Horror     39
## 6801  1994                                     Action|Crime|Thriller     39
## 6802  1994                               Action|Crime|Drama|Thriller     39
## 6803  1994                               Comedy|Crime|Drama|Thriller     39
## 6804  1994                                     Action|Drama|Thriller     39
## 6805  1994                                   Action|Adventure|Sci-Fi     39
## 6806  1995                                           Horror|Thriller     39
## 6807  1995                                       Action|Crime|Horror     39
## 6808  1995                                             Horror|Sci-Fi     39
## 6809  1995                                                    Comedy     39
## 6810  1995                                    Action|Sci-Fi|Thriller     39
## 6811  1994                                                    Comedy     39
## 6812  1994                             Action|Crime|Fantasy|Thriller     39
## 6813  1994                             Drama|Horror|Mystery|Thriller     39
## 6814  1994                  Action|Adventure|Comedy|Romance|Thriller     39
## 6815  1993                                    Horror|Sci-Fi|Thriller     39
## 6816  1993                                 Action|Adventure|Thriller     39
## 6817  1993                                                  Thriller     39
## 6818  1993                                      Action|Drama|Western     39
## 6819  1993                                            Crime|Thriller     39
## 6820  1992               Adventure|Animation|Children|Comedy|Musical     39
## 6821  1990                                   Adventure|Drama|Western     39
## 6822  1989                                     Action|Crime|Thriller     39
## 6823  1991                                     Crime|Horror|Thriller     39
## 6824  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     39
## 6825  1995                                            Fantasy|Horror     39
## 6826  1996                                      Action|Horror|Sci-Fi     39
## 6827  1996                         Action|Adventure|Mystery|Thriller     39
## 6828  1996                                                  Thriller     39
## 6829  1996                                                    Comedy     39
## 6830  1996                                                    Comedy     39
## 6831  1995                                    Crime|Mystery|Thriller     40
## 6832  1977                                   Action|Adventure|Sci-Fi     40
## 6833  1975                                  Adventure|Comedy|Fantasy     40
## 6834  1980                                   Action|Adventure|Sci-Fi     40
## 6835  1987                   Action|Adventure|Comedy|Fantasy|Romance     40
## 6836  1981                                          Action|Adventure     40
## 6837  1999                               Action|Crime|Drama|Thriller     40
## 6838  2000                                          Mystery|Thriller     40
## 6839  2001                                         Adventure|Fantasy     40
## 6840  2003                            Action|Adventure|Drama|Fantasy     40
## 6841  2004                                      Drama|Romance|Sci-Fi     40
## 6842  2004                                             Comedy|Horror     40
## 6843  2004                Action|Adventure|Animation|Children|Comedy     40
## 6844  2005                                         Action|Crime|IMAX     40
## 6845  2005                             Comedy|Crime|Mystery|Thriller     40
## 6846  2006                               Action|Sci-Fi|Thriller|IMAX     40
## 6847  2006                                      Crime|Drama|Thriller     40
## 6848  2006                    Action|Adventure|Drama|Sci-Fi|Thriller     40
## 6849  2006                             Drama|Mystery|Sci-Fi|Thriller     40
## 6850  2006                                 Action|Adventure|Thriller     40
## 6851  2007                               Action|Comedy|Crime|Mystery     40
## 6852  2007                                      Crime|Drama|Thriller     40
## 6853  2007                                               Crime|Drama     40
## 6854  2008                                   Action|Crime|Drama|IMAX     40
## 6855  2009                                          Action|Drama|War     40
## 6856  2009                             Drama|Mystery|Sci-Fi|Thriller     40
## 6857  2009                        Adventure|Animation|Children|Drama     40
## 6858  2009                                   Mystery|Sci-Fi|Thriller     40
## 6859  2010                                    Drama|Mystery|Thriller     40
## 6860  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     40
## 6861  2010                     Action|Comedy|Fantasy|Musical|Romance     40
## 6862  2012                                      Action|Drama|Western     40
## 6863  2013                                      Drama|Romance|Sci-Fi     40
## 6864  2014                                               Sci-Fi|IMAX     40
## 6865  2014                                            Drama|Thriller     40
## 6866  2014                                        Drama|Thriller|War     40
## 6867  2015                          Action|Adventure|Sci-Fi|Thriller     40
## 6868  2015                      Action|Adventure|Fantasy|Sci-Fi|IMAX     40
## 6869  2016                            Action|Adventure|Comedy|Sci-Fi     40
## 6870  2015                                                     Drama     40
## 6871  2015                                    Adventure|Drama|Sci-Fi     40
## 6872  2016                                                  Thriller     40
## 6873  2016                Action|Adventure|Animation|Children|Comedy     40
## 6874  1995                                Adventure|Children|Fantasy     41
## 6875  1995                    Adventure|Drama|Fantasy|Mystery|Sci-Fi     41
## 6876  1995                                          Action|Drama|War     41
## 6877  1995                                                     Drama     41
## 6878  1995                                     Action|Crime|Thriller     41
## 6879  1995                                    Action|Sci-Fi|Thriller     41
## 6880  1995                                       Action|Crime|Sci-Fi     41
## 6881  1995                                             Horror|Sci-Fi     41
## 6882  1995                                   Action|Adventure|Sci-Fi     41
## 6883  1994                                                     Drama     41
## 6884  1994                                              Drama|Horror     41
## 6885  1977                                   Action|Adventure|Sci-Fi     41
## 6886  1995                                            Children|Drama     41
## 6887  1994                                   Action|Adventure|Sci-Fi     41
## 6888  1995                                      Action|Comedy|Sci-Fi     41
## 6889  1994                                    Adventure|Drama|Sci-Fi     41
## 6890  1995                                             Horror|Sci-Fi     41
## 6891  1994                             Action|Crime|Fantasy|Thriller     41
## 6892  1994                                  Comedy|Drama|Romance|War     41
## 6893  1994                                   Action|Romance|Thriller     41
## 6894  1994                  Action|Adventure|Comedy|Romance|Thriller     41
## 6895  1993                                    Horror|Sci-Fi|Thriller     41
## 6896  1993                                             Comedy|Sci-Fi     41
## 6897  1993                                   Action|Adventure|Sci-Fi     41
## 6898  1993                                                  Thriller     41
## 6899  1982                                    Action|Sci-Fi|Thriller     41
## 6900  1989                                     Action|Crime|Thriller     41
## 6901  1981                  Action|Adventure|Animation|Horror|Sci-Fi     41
## 6902  1996                         Action|Adventure|Mystery|Thriller     41
## 6903  1968                                   Adventure|Comedy|Sci-Fi     41
## 6904  1996                         Action|Adventure|Romance|Thriller     41
## 6905  1996                                    Action|Sci-Fi|Thriller     41
## 6906  1996                          Action|Adventure|Sci-Fi|Thriller     41
## 6907  1996                          Action|Adventure|Sci-Fi|Thriller     41
## 6908  1939                                            Children|Drama     41
## 6909  1939                        Adventure|Children|Fantasy|Musical     41
## 6910  1968                                    Adventure|Drama|Sci-Fi     41
## 6911  1996                                        Adventure|Children     41
## 6912  1992                             Action|Horror|Sci-Fi|Thriller     41
## 6913  1971                           Children|Comedy|Fantasy|Musical     41
## 6914  1973                                             Comedy|Sci-Fi     41
## 6915  1982                                     Children|Drama|Sci-Fi     41
## 6916  1989                          Action|Adventure|Sci-Fi|Thriller     41
## 6917  1981                          Action|Adventure|Sci-Fi|Thriller     41
## 6918  1980                                   Action|Adventure|Sci-Fi     41
## 6919  1986                            Action|Adventure|Horror|Sci-Fi     41
## 6920  1971                               Crime|Drama|Sci-Fi|Thriller     41
## 6921  1983                                   Action|Adventure|Sci-Fi     41
## 6922  1979                                             Horror|Sci-Fi     41
## 6923  1980                                     Action|Comedy|Musical     41
## 6924  1987                                                 Drama|War     41
## 6925  1984                                    Action|Sci-Fi|Thriller     41
## 6926  1985                                   Adventure|Comedy|Sci-Fi     41
## 6927  1982                                             Drama|Musical     41
## 6928  1989                                    Children|Drama|Fantasy     41
## 6929  1992                             Action|Horror|Sci-Fi|Thriller     41
## 6930  1963                                           Horror|Thriller     41
## 6931  1996                          Action|Adventure|Sci-Fi|Thriller     41
## 6932  1979                                          Adventure|Sci-Fi     41
## 6933  1991                                     Action|Mystery|Sci-Fi     41
## 6934  1989                                             Action|Sci-Fi     41
## 6935  1982                          Action|Adventure|Sci-Fi|Thriller     41
## 6936  1984                                   Action|Adventure|Sci-Fi     41
## 6937  1986                                   Adventure|Comedy|Sci-Fi     41
## 6938  1993                                                     Drama     41
## 6939  1997                            Action|Adventure|Comedy|Sci-Fi     41
## 6940  1996                                                     Drama     41
## 6941  1997                                 Action|Adventure|Thriller     41
## 6942  1997                                      Action|Comedy|Sci-Fi     41
## 6943  1997                          Action|Adventure|Sci-Fi|Thriller     41
## 6944  1997                                             Action|Sci-Fi     41
## 6945  1997                                      Action|Horror|Sci-Fi     41
## 6946  1997                                                     Drama     41
## 6947  1997                                                    Comedy     41
## 6948  1998                       Adventure|Film-Noir|Sci-Fi|Thriller     41
## 6949  1998                                     Action|Comedy|Musical     41
## 6950  1998                                           Sci-Fi|Thriller     41
## 6951  1998                                     Drama|Sci-Fi|Thriller     41
## 6952  1997                                                     Drama     41
## 6953  1998                            Action|Romance|Sci-Fi|Thriller     41
## 6954  1984                                             Comedy|Sci-Fi     41
## 6955  1973                                            Horror|Mystery     41
## 6956  1989                                 Action|Comedy|Crime|Drama     41
## 6957  1984                                             Comedy|Horror     41
## 6958  1973                             Drama|Mystery|Sci-Fi|Thriller     41
## 6959  1989                                   Adventure|Comedy|Sci-Fi     41
## 6960  1990                           Adventure|Comedy|Sci-Fi|Western     41
## 6961  1997                                             Drama|Romance     41
## 6962  1982                                   Action|Adventure|Sci-Fi     41
## 6963  1984                                              Drama|Sci-Fi     41
## 6964  1988                                            Comedy|Fantasy     41
## 6965  1997                            Horror|Mystery|Sci-Fi|Thriller     41
## 6966  1984                                                    Sci-Fi     41
## 6967  1998                                         Action|Sci-Fi|War     41
## 6968  1958                                     Horror|Mystery|Sci-Fi     41
## 6969  1986                              Drama|Horror|Sci-Fi|Thriller     41
## 6970  1970                                                     Drama     41
## 6971  1974                                     Action|Drama|Thriller     41
## 6972  1977                                                     Drama     41
## 6973  1976                                   Action|Adventure|Sci-Fi     41
## 6974  1968                                       Action|Drama|Sci-Fi     41
## 6975  1970                                             Action|Sci-Fi     41
## 6976  1973                                             Action|Sci-Fi     41
## 6977  1972                                             Action|Sci-Fi     41
## 6978  1979                                                     Drama     41
## 6979  1960                                    Horror|Sci-Fi|Thriller     41
## 6980  1999                                    Action|Sci-Fi|Thriller     41
## 6981  1999                                    Action|Sci-Fi|Thriller     41
## 6982  1978                                   Action|Adventure|Sci-Fi     41
## 6983  1980                                             Action|Sci-Fi     41
## 6984  1983                                   Action|Adventure|Sci-Fi     41
## 6985  1962                                             Drama|Romance     41
## 6986  1986                                     Comedy|Horror|Musical     41
## 6987  1992                                             Action|Sci-Fi     41
## 6988  1999                                             Drama|Romance     41
## 6989  1975                                                   Musical     41
## 6990  1990                          Action|Adventure|Sci-Fi|Thriller     41
## 6991  1986                                                    Comedy     41
## 6992  1980                                   Adventure|Drama|Romance     41
## 6993  1987                                             Comedy|Sci-Fi     41
## 6994  1999                                      Drama|Romance|Sci-Fi     41
## 6995  1999                                   Adventure|Comedy|Sci-Fi     41
## 6996  1992                                                    Comedy     41
## 6997  2000                                    Horror|Sci-Fi|Thriller     41
## 6998  2000                                                    Sci-Fi     41
## 6999  1977                                    Adventure|Drama|Sci-Fi     41
## 7000  1985                                 Adventure|Fantasy|Romance     41
## 7001  1999                                             Drama|Romance     41
## 7002  2000                                             Action|Sci-Fi     41
## 7003  1979                          Action|Adventure|Sci-Fi|Thriller     41
## 7004  1987                                             Action|Sci-Fi     41
## 7005  1984                            Adventure|Drama|Romance|Sci-Fi     41
## 7006  1979                                   Action|Adventure|Sci-Fi     41
## 7007  1981                          Action|Adventure|Sci-Fi|Thriller     41
## 7008  1985                                   Action|Adventure|Sci-Fi     41
## 7009  2000                Action|Adventure|Animation|Children|Sci-Fi     41
## 7010  2000                                   Action|Adventure|Sci-Fi     41
## 7011  1992                                             Action|Sci-Fi     41
## 7012  2000                                     Drama|Horror|Thriller     41
## 7013  2000                                             Drama|Musical     41
## 7014  1984                                           Sci-Fi|Thriller     41
## 7015  2000                                    Action|Sci-Fi|Thriller     41
## 7016  1982                                          Children|Musical     41
## 7017  2001                          Action|Adventure|Children|Comedy     41
## 7018  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     41
## 7019  2001                                    Adventure|Drama|Sci-Fi     41
## 7020  1981                                    Action|Sci-Fi|Thriller     41
## 7021  2001                        Adventure|Animation|Fantasy|Sci-Fi     41
## 7022  1988                                    Action|Sci-Fi|Thriller     41
## 7023  1989                                     Drama|Sci-Fi|Thriller     41
## 7024  1989                                                    Comedy     41
## 7025  1985                                             Action|Sci-Fi     41
## 7026  1974                    Comedy|Fantasy|Horror|Musical|Thriller     41
## 7027  1979                                             Drama|Musical     41
## 7028  2001                              Drama|Fantasy|Mystery|Sci-Fi     41
## 7029  1980                                             Drama|Musical     41
## 7030  2002                             Action|Horror|Sci-Fi|Thriller     41
## 7031  2002                          Action|Adventure|Sci-Fi|Thriller     41
## 7032  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     41
## 7033  2002                                      Action|Comedy|Sci-Fi     41
## 7034  2002                                  Action|Adventure|Fantasy     41
## 7035  1976                                             Action|Comedy     41
## 7036  1981                                                     Drama     41
## 7037  1975                                       Action|Drama|Sci-Fi     41
## 7038  2001                               Adventure|Animation|Fantasy     41
## 7039  1983                                      Comedy|Drama|Musical     41
## 7040  1980                                   Fantasy|Musical|Romance     41
## 7041  2002                                      Drama|Romance|Sci-Fi     41
## 7042  2002                                    Action|Sci-Fi|Thriller     41
## 7043  1962                                             Horror|Sci-Fi     41
## 7044  1982                                  Adventure|Comedy|Musical     41
## 7045  2003                                              Action|Crime     41
## 7046  2003                              Action|Drama|Sci-Fi|Thriller     41
## 7047  1971                                            Mystery|Sci-Fi     41
## 7048  1978                 Adventure|Children|Comedy|Fantasy|Musical     41
## 7049  2003                          Action|Adventure|Sci-Fi|Thriller     41
## 7050  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     41
## 7051  2002                                                     Drama     41
## 7052  2002                                      Action|Horror|Sci-Fi     41
## 7053  2003                                   Action|Adventure|Sci-Fi     41
## 7054  2003                                     Action|Fantasy|Sci-Fi     41
## 7055  1971                             Action|Adventure|Drama|Sci-Fi     41
## 7056  1990                                              Drama|Sci-Fi     41
## 7057  1978                                         Adventure|Musical     41
## 7058  2003                                            Comedy|Musical     41
## 7059  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     41
## 7060  2003                                           Children|Comedy     41
## 7061  1983                                     Drama|Sci-Fi|Thriller     41
## 7062  1978                            Horror|Mystery|Sci-Fi|Thriller     41
## 7063  1973                                             Drama|Musical     41
## 7064  2003                         Action|Adventure|Children|Fantasy     41
## 7065  2004                           Action|Adventure|Fantasy|Horror     41
## 7066  1974                                            Fantasy|Sci-Fi     41
## 7067  1975                                             Action|Sci-Fi     41
## 7068  2004                                    Action|Sci-Fi|Thriller     41
## 7069  1978                                                     Drama     41
## 7070  1984                            Action|Adventure|Comedy|Sci-Fi     41
## 7071  2004                          Action|Adventure|Sci-Fi|Thriller     41
## 7072  2004                             Action|Horror|Sci-Fi|Thriller     41
## 7073  1995                                          Action|Drama|War     42
## 7074  1995                                     Action|Crime|Thriller     42
## 7075  1977                                   Action|Adventure|Sci-Fi     42
## 7076  1994                               Comedy|Crime|Drama|Thriller     42
## 7077  1994                                               Crime|Drama     42
## 7078  1994                               Action|Crime|Drama|Thriller     42
## 7079  1994                                  Comedy|Drama|Romance|War     42
## 7080  1994                  Action|Adventure|Comedy|Romance|Thriller     42
## 7081  1993                                                  Thriller     42
## 7082  1993                          Action|Adventure|Sci-Fi|Thriller     42
## 7083  1993                                                     Drama     42
## 7084  1993                                                 Drama|War     42
## 7085  1992               Adventure|Animation|Children|Comedy|Musical     42
## 7086  1991                                             Action|Sci-Fi     42
## 7087  1996                         Action|Adventure|Mystery|Thriller     42
## 7088  1996                                 Action|Adventure|Thriller     42
## 7089  1996                          Action|Adventure|Sci-Fi|Thriller     42
## 7090  1988                                     Action|Crime|Thriller     42
## 7091  1982                                     Children|Drama|Sci-Fi     42
## 7092  1980                                   Action|Adventure|Sci-Fi     42
## 7093  1981                                          Action|Adventure     42
## 7094  1986                            Action|Adventure|Horror|Sci-Fi     42
## 7095  1983                                   Action|Adventure|Sci-Fi     42
## 7096  1989                                          Action|Adventure     42
## 7097  1992                             Action|Horror|Sci-Fi|Thriller     42
## 7098  1990                                 Action|Adventure|Thriller     42
## 7099  1997                            Action|Adventure|Comedy|Sci-Fi     42
## 7100  1997                               Action|Crime|Drama|Thriller     42
## 7101  1997                                             Drama|Romance     42
## 7102  1997                                             Drama|Romance     42
## 7103  1998                                          Action|Drama|War     42
## 7104  1999                                    Action|Sci-Fi|Thriller     42
## 7105  1990                          Action|Adventure|Sci-Fi|Thriller     42
## 7106  1987                        Action|Crime|Drama|Sci-Fi|Thriller     42
## 7107  2000                                   Action|Adventure|Sci-Fi     42
## 7108  2000                                      Action|Drama|Romance     42
## 7109  2001               Adventure|Animation|Children|Comedy|Fantasy     42
## 7110  2001                                         Adventure|Fantasy     42
## 7111  2002                          Action|Adventure|Sci-Fi|Thriller     42
## 7112  2002                                         Adventure|Fantasy     42
## 7113  2003                            Action|Adventure|Drama|Fantasy     42
## 7114  2001                                          Action|Drama|War     42
## 7115  2004                              Action|Adventure|Sci-Fi|IMAX     42
## 7116  2004                Action|Adventure|Animation|Children|Comedy     42
## 7117  2005                                         Action|Crime|IMAX     42
## 7118  2005                           Adventure|Fantasy|Thriller|IMAX     42
## 7119  2006                               Action|Sci-Fi|Thriller|IMAX     42
## 7120  2006                                    Drama|Fantasy|Thriller     42
## 7121  2006                                      Crime|Drama|Thriller     42
## 7122  2008                                   Action|Crime|Drama|IMAX     42
## 7123  2008                                   Action|Adventure|Sci-Fi     42
## 7124  2008                                       Crime|Drama|Romance     42
## 7125  2009                              Action|Adventure|Sci-Fi|IMAX     42
## 7126  2009                    Adventure|Fantasy|Mystery|Romance|IMAX     42
## 7127  2009                                   Mystery|Sci-Fi|Thriller     42
## 7128  2009                             Action|Crime|Mystery|Thriller     42
## 7129  2010                                    Drama|Mystery|Thriller     42
## 7130  2010                 Adventure|Animation|Children|Fantasy|IMAX     42
## 7131  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     42
## 7132  2011                      Action|Adventure|Sci-Fi|Thriller|War     42
## 7133  2012                              Action|Adventure|Sci-Fi|IMAX     42
## 7134  2012                               Action|Adventure|Crime|IMAX     42
## 7135  2012                                    Adventure|Fantasy|IMAX     42
## 7136  2013                                    Adventure|Fantasy|IMAX     42
## 7137  2013                                        Comedy|Crime|Drama     42
## 7138  2014                                               Sci-Fi|IMAX     42
## 7139  2014                                        Action|Sci-Fi|IMAX     42
## 7140  2014                                   Action|Adventure|Sci-Fi     42
## 7141  2015                      Action|Adventure|Fantasy|Sci-Fi|IMAX     42
## 7142  2015         Adventure|Animation|Children|Comedy|Drama|Fantasy     42
## 7143  1995               Adventure|Animation|Children|Comedy|Fantasy     43
## 7144  1995                                            Children|Drama     43
## 7145  1995                                            Comedy|Romance     43
## 7146  1996                             Action|Comedy|Horror|Thriller     43
## 7147  1996                                                    Comedy     43
## 7148  1995                                          Action|Drama|War     43
## 7149  1995                                                    Comedy     43
## 7150  1994                                                    Comedy     43
## 7151  1994                                          Adventure|Comedy     43
## 7152  1995                                            Comedy|Romance     43
## 7153  1994                                  Comedy|Drama|Romance|War     43
## 7154  1993                          Action|Adventure|Sci-Fi|Thriller     43
## 7155  1993                                              Comedy|Drama     43
## 7156  1993                                                     Drama     43
## 7157  1993                                                 Drama|War     43
## 7158  1995                                                    Comedy     43
## 7159  1992               Adventure|Animation|Children|Comedy|Musical     43
## 7160  1991                                             Action|Sci-Fi     43
## 7161  1996                               Comedy|Crime|Drama|Thriller     43
## 7162  1996                                   Children|Comedy|Fantasy     43
## 7163  1996                                      Comedy|Drama|Romance     43
## 7164  1965                                           Musical|Romance     43
## 7165  1983                                   Action|Adventure|Sci-Fi     43
## 7166  1978                                    Comedy|Musical|Romance     43
## 7167  1997                                      Comedy|Drama|Romance     43
## 7168  1997                                              Comedy|Drama     43
## 7169  1997                                                    Comedy     43
## 7170  1997                                   Action|Adventure|Comedy     43
## 7171  1997                          Action|Adventure|Sci-Fi|Thriller     43
## 7172  1997                                            Comedy|Romance     43
## 7173  1997                                      Action|Comedy|Sci-Fi     43
## 7174  1997                                                    Comedy     43
## 7175  1997                                                     Drama     43
## 7176  1997                             Action|Adventure|Drama|Sci-Fi     43
## 7177  1998                                            Comedy|Romance     43
## 7178  1998                                 Adventure|Children|Comedy     43
## 7179  1998                                            Comedy|Romance     43
## 7180  1998                                      Comedy|Drama|Romance     43
## 7181  1998                                      Comedy|Drama|Romance     43
## 7182  1998 Adventure|Animation|Children|Comedy|Drama|Musical|Romance     43
## 7183  1983                                              Comedy|Drama     43
## 7184  1985                                              Comedy|Drama     43
## 7185  1973                                            Horror|Mystery     43
## 7186  1987                                 Action|Comedy|Crime|Drama     43
## 7187  1984                                             Comedy|Horror     43
## 7188  1990                                             Comedy|Horror     43
## 7189  1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     43
## 7190  1989                 Animation|Children|Comedy|Musical|Romance     43
## 7191  1992                                           Children|Comedy     43
## 7192  1979                                                    Comedy     43
## 7193  1984                                            Comedy|Romance     43
## 7194  1980                                          Adventure|Comedy     43
## 7195  1968                                     Drama|Horror|Thriller     43
## 7196  1990                                     Drama|Fantasy|Romance     43
## 7197  1998                                      Comedy|Drama|Fantasy     43
## 7198  1998                       Adventure|Animation|Children|Comedy     43
## 7199  1998                                  Adventure|Children|Drama     43
## 7200  1998                                                    Comedy     43
## 7201  1998                                              Comedy|Drama     43
## 7202  1998                                      Comedy|Drama|Romance     43
## 7203  1999                                              Comedy|Drama     43
## 7204  1958                                     Horror|Mystery|Sci-Fi     43
## 7205  1986                              Drama|Horror|Sci-Fi|Thriller     43
## 7206  1999                                            Comedy|Romance     43
## 7207  1999                                                    Comedy     43
## 7208  1999                                            Comedy|Fantasy     43
## 7209  1999                                            Comedy|Romance     43
## 7210  1999                                   Action|Adventure|Comedy     43
## 7211  1999                              Crime|Drama|Mystery|Thriller     43
## 7212  1999                                            Comedy|Romance     43
## 7213  1999                                  Animation|Comedy|Musical     43
## 7214  1999                                            Comedy|Romance     43
## 7215  1999                                     Action|Comedy|Fantasy     43
## 7216  1999                                                    Comedy     43
## 7217  1980                                                    Comedy     43
## 7218  1983                                           Children|Comedy     43
## 7219  1999                                                    Comedy     43
## 7220  1999                                             Drama|Romance     43
## 7221  1991                                   Action|Adventure|Comedy     43
## 7222  1999                                            Comedy|Romance     43
## 7223  1999                                      Comedy|Drama|Fantasy     43
## 7224  1999                                                  Thriller     43
## 7225  1999                                  Adventure|Comedy|Fantasy     43
## 7226  1999               Adventure|Animation|Children|Comedy|Fantasy     43
## 7227  1999                                      Drama|Romance|Sci-Fi     43
## 7228  1999                                                     Drama     43
## 7229  1999                                                     Drama     43
## 7230  1999                                            Children|Drama     43
## 7231  1992                                              Comedy|Crime     43
## 7232  1993                                                    Comedy     43
## 7233  1992                                              Comedy|Drama     43
## 7234  2000                                                    Comedy     43
## 7235  2000                                              Comedy|Crime     43
## 7236  2000                                            Drama|Thriller     43
## 7237  1993                                                    Comedy     43
## 7238  2000                                      Comedy|Drama|Romance     43
## 7239  2000                                            Drama|Thriller     43
## 7240  2000                                            Comedy|Romance     43
## 7241  1984                                                    Comedy     43
## 7242  2000                             Crime|Horror|Mystery|Thriller     43
## 7243  2000                                       Action|Thriller|War     43
## 7244  2000                           Action|Adventure|Comedy|Western     43
## 7245  1991                                                    Comedy     43
## 7246  2000                                          Action|Drama|War     43
## 7247  1990                                                    Comedy     43
## 7248  1988                               Action|Comedy|Crime|Romance     43
## 7249  1991                                                    Comedy     43
## 7250  1987                                                    Horror     43
## 7251  2000                                                    Comedy     43
## 7252  2000                                                     Drama     43
## 7253  1995               Adventure|Animation|Children|Comedy|Fantasy     44
## 7254  1995                                            Comedy|Romance     44
## 7255  1995                                                    Comedy     44
## 7256  1995                                     Action|Crime|Thriller     44
## 7257  1995                                             Drama|Romance     44
## 7258  1995                                             Drama|Romance     44
## 7259  1995                                   Mystery|Sci-Fi|Thriller     44
## 7260  1995                                                     Drama     44
## 7261  1996                                 Action|Adventure|Thriller     44
## 7262  1996                                                    Comedy     44
## 7263  1996                                                    Comedy     44
## 7264  1996                                                    Comedy     44
## 7265  1977                                   Action|Adventure|Sci-Fi     44
## 7266  1996                                 Action|Adventure|Thriller     44
## 7267  1996                              Crime|Drama|Mystery|Thriller     44
## 7268  1996                                                    Comedy     44
## 7269  1996                         Action|Adventure|Mystery|Thriller     44
## 7270  1996                                 Action|Adventure|Thriller     44
## 7271  1996                         Action|Adventure|Romance|Thriller     44
## 7272  1996                          Action|Adventure|Sci-Fi|Thriller     44
## 7273  1996                                     Action|Drama|Thriller     44
## 7274  1996                             Comedy|Fantasy|Romance|Sci-Fi     44
## 7275  1996                                             Drama|Romance     44
## 7276  1996                                            Drama|Thriller     44
## 7277  1996                                     Action|Drama|Thriller     44
## 7278  1993                                                    Comedy     45
## 7279  1952                                    Comedy|Musical|Romance     45
## 7280  1958                            Drama|Mystery|Romance|Thriller     45
## 7281  1985                                            Fantasy|Sci-Fi     45
## 7282  1963                                           Horror|Thriller     45
## 7283  1997                                      Comedy|Drama|Romance     45
## 7284  1997                                                     Drama     45
## 7285  1998                       Adventure|Film-Noir|Sci-Fi|Thriller     45
## 7286  1999                                            Comedy|Romance     45
## 7287  1998                                              Action|Crime     45
## 7288  1990                                             Comedy|Horror     45
## 7289  1999                                  Adventure|Comedy|Fantasy     45
## 7290  1999                                                     Drama     45
## 7291  1931                                      Comedy|Drama|Romance     45
## 7292  2000                                          Action|Drama|War     45
## 7293  2000                                            Drama|Thriller     45
## 7294  2001                                      Comedy|Drama|Romance     45
## 7295  2001                                             Drama|Romance     45
## 7296  2002                                             Drama|Romance     45
## 7297  1946                                             Drama|Fantasy     45
## 7298  1966                                               Crime|Drama     45
## 7299  1995                                                 Drama|War     46
## 7300  1994                                   Children|Comedy|Fantasy     46
## 7301  1996                             Drama|Fantasy|Horror|Thriller     46
## 7302  1985                                   Adventure|Comedy|Sci-Fi     46
## 7303  1996                                           Children|Comedy     46
## 7304  1997                                     Action|Drama|Thriller     46
## 7305  1997                                           Children|Comedy     46
## 7306  1984                                             Comedy|Sci-Fi     46
## 7307  1998                                          Action|Adventure     46
## 7308  1985                                              Comedy|Crime     46
## 7309  1987                                              Comedy|Crime     46
## 7310  1989                                              Comedy|Crime     46
## 7311  1947                                              Comedy|Drama     46
## 7312  1999                                                    Comedy     46
## 7313  1999                                                     Drama     46
## 7314  1999                                            Crime|Thriller     46
## 7315  1983                                           Children|Comedy     46
## 7316  1999                                   Children|Comedy|Fantasy     46
## 7317  1992                                              Comedy|Crime     46
## 7318  1988                               Action|Comedy|Crime|Romance     46
## 7319  2001                                         Adventure|Fantasy     46
## 7320  2002                                         Adventure|Fantasy     46
## 7321  1990                              Action|Comedy|Crime|Thriller     46
## 7322  2003                            Action|Adventure|Drama|Fantasy     46
## 7323  1994                                              Comedy|Crime     46
## 7324  1988                   Action|Adventure|Drama|Mystery|Thriller     46
## 7325  2005                       Adventure|Animation|Children|Comedy     46
## 7326  2005                                         Action|Crime|IMAX     46
## 7327  2006                 Action|Adventure|Crime|Drama|Thriller|War     46
## 7328  2007                                  Animation|Children|Drama     46
## 7329  2008                                   Action|Crime|Drama|IMAX     46
## 7330  2007                                             Drama|Romance     46
## 7331  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     46
## 7332  2010                                                     Drama     46
## 7333  2010                             Action|Adventure|Fantasy|IMAX     46
## 7334  2011               Action|Adventure|Drama|Fantasy|Mystery|IMAX     46
## 7335  2012                              Action|Adventure|Sci-Fi|IMAX     46
## 7336  2012                               Action|Adventure|Crime|IMAX     46
## 7337  2012                                   Action|Animation|Sci-Fi     46
## 7338  1995               Adventure|Animation|Children|Comedy|Fantasy     47
## 7339  1995                                Adventure|Children|Fantasy     47
## 7340  1995                                 Action|Adventure|Thriller     47
## 7341  1995                                   Mystery|Sci-Fi|Thriller     47
## 7342  1995                                            Comedy|Romance     47
## 7343  1995                                    Crime|Mystery|Thriller     47
## 7344  1996                                 Action|Adventure|Thriller     47
## 7345  1995                                          Action|Drama|War     47
## 7346  1995                                      Adventure|Drama|IMAX     47
## 7347  1995                             Action|Adventure|Comedy|Crime     47
## 7348  1995                           Action|Adventure|Mystery|Sci-Fi     47
## 7349  1995                                        Drama|Thriller|War     47
## 7350  1995                                     Action|Crime|Thriller     47
## 7351  1995                                       Action|Crime|Sci-Fi     47
## 7352  1995                                   Action|Adventure|Sci-Fi     47
## 7353  1994                                          Adventure|Comedy     47
## 7354  1995                                     Action|Comedy|Romance     47
## 7355  1994                                              Drama|Horror     47
## 7356  1994                                 Drama|Romance|War|Western     47
## 7357  1994                                     Action|Crime|Thriller     47
## 7358  1995                              Action|Drama|Sci-Fi|Thriller     47
## 7359  1994                               Comedy|Crime|Drama|Thriller     47
## 7360  1994                                                     Drama     47
## 7361  1994                                     Action|Drama|Thriller     47
## 7362  1994                                   Action|Adventure|Sci-Fi     47
## 7363  1994                                    Adventure|Drama|Sci-Fi     47
## 7364  1994                                                    Comedy     47
## 7365  1994                               Action|Crime|Drama|Thriller     47
## 7366  1994                  Action|Adventure|Comedy|Romance|Thriller     47
## 7367  1993                                   Children|Comedy|Fantasy     47
## 7368  1994                              Action|Comedy|Crime|Thriller     47
## 7369  1993                                 Action|Adventure|Thriller     47
## 7370  1993                                   Action|Adventure|Sci-Fi     47
## 7371  1993                                                  Thriller     47
## 7372  1992               Adventure|Animation|Children|Comedy|Musical     47
## 7373  1989                                     Action|Crime|Thriller     47
## 7374  1991                                     Crime|Horror|Thriller     47
## 7375  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     47
## 7376  1995               Adventure|Animation|Children|Comedy|Fantasy     48
## 7377  1995                                Adventure|Children|Fantasy     48
## 7378  1995                                            Children|Drama     48
## 7379  1995                                          Action|Drama|War     48
## 7380  1976                                      Crime|Drama|Thriller     48
## 7381  1995                                        Adventure|Children     48
## 7382  1995                                    Action|Romance|Western     48
## 7383  1994                                                    Comedy     48
## 7384  1994                                          Adventure|Comedy     48
## 7385  1994                                     Action|Crime|Thriller     48
## 7386  1994                               Action|Crime|Drama|Thriller     48
## 7387  1994                               Comedy|Crime|Drama|Thriller     48
## 7388  1994                                                    Comedy     48
## 7389  1994                                  Comedy|Drama|Romance|War     48
## 7390  1994           Adventure|Animation|Children|Drama|Musical|IMAX     48
## 7391  1994                               Action|Comedy|Crime|Fantasy     48
## 7392  1993                          Action|Adventure|Sci-Fi|Thriller     48
## 7393  1993                                                     Drama     48
## 7394  1993                                                 Drama|War     48
## 7395  1982                                    Action|Sci-Fi|Thriller     48
## 7396  1995                                              Comedy|Drama     48
## 7397  1991                                     Crime|Horror|Thriller     48
## 7398  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     48
## 7399  1996                         Action|Adventure|Mystery|Thriller     48
## 7400  1996        Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     48
## 7401  1995                                          Animation|Sci-Fi     48
## 7402  1996                                        Comedy|Crime|Drama     48
## 7403  1996                                           Comedy|Thriller     48
## 7404  1972                                               Crime|Drama     48
## 7405  1968                                    Adventure|Drama|Sci-Fi     48
## 7406  1982                                     Children|Drama|Sci-Fi     48
## 7407  1989                          Action|Adventure|Sci-Fi|Thriller     48
## 7408  1993                           Animation|Children|Comedy|Crime     48
## 7409  1991                                      Comedy|Drama|Romance     48
## 7410  1989                                                     Drama     48
## 7411  1971                               Crime|Drama|Sci-Fi|Thriller     48
## 7412  1979                                             Horror|Sci-Fi     48
## 7413  1987                                                 Drama|War     48
## 7414  1984                                    Action|Sci-Fi|Thriller     48
## 7415  1980                                                    Horror     48
## 7416  1985                                   Adventure|Comedy|Sci-Fi     48
## 7417  1988                         Action|Adventure|Animation|Sci-Fi     48
## 7418  1982                                                     Drama     48
## 7419  1996                            Comedy|Horror|Mystery|Thriller     48
## 7420  1997                                                    Comedy     48
## 7421  1997                                 Action|Adventure|Thriller     48
## 7422  1997                            Action|Adventure|Comedy|Sci-Fi     48
## 7423  1997                          Action|Adventure|Sci-Fi|Thriller     48
## 7424  1997                                      Action|Comedy|Sci-Fi     48
## 7425  1997                          Action|Adventure|Sci-Fi|Thriller     48
## 7426  1997                                             Action|Sci-Fi     48
## 7427  1998                                       Comedy|Drama|Sci-Fi     48
## 7428  1997                                             Drama|Romance     48
## 7429  1998                                              Comedy|Crime     48
## 7430  1997                                      Comedy|Drama|Romance     48
## 7431  1998                                    Action|Sci-Fi|Thriller     48
## 7432  1998                                    Adventure|Comedy|Drama     48
## 7433  1998                            Action|Romance|Sci-Fi|Thriller     48
## 7434  1998                                     Drama|Sci-Fi|Thriller     48
## 7435  1998                                            Comedy|Romance     48
## 7436  1973                                            Horror|Mystery     48
## 7437  1998                                     Action|Comedy|Romance     48
## 7438  1998                                    Action|Horror|Thriller     48
## 7439  1997                            Horror|Mystery|Sci-Fi|Thriller     48
## 7440  1982                             Action|Horror|Sci-Fi|Thriller     48
## 7441  1990                                     Drama|Fantasy|Romance     48
## 7442  1998               Adventure|Animation|Children|Comedy|Fantasy     48
## 7443  1998                                              Comedy|Drama     48
## 7444  1997                                  Comedy|Drama|Romance|War     48
## 7445  1998                                               Crime|Drama     48
## 7446  1998                       Adventure|Animation|Children|Comedy     48
## 7447  1986                              Drama|Horror|Sci-Fi|Thriller     48
## 7448  1998                                     Comedy|Crime|Thriller     48
## 7449  1999                                    Action|Sci-Fi|Thriller     48
## 7450  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     48
## 7451  1998                                              Action|Crime     48
## 7452  1999                                  Animation|Comedy|Musical     48
## 7453  1999                                            Comedy|Romance     48
## 7454  1999                                     Drama|Horror|Thriller     48
## 7455  1999                             Action|Horror|Sci-Fi|Thriller     48
## 7456  1999                                      Drama|Horror|Mystery     48
## 7457  1999                                            Drama|Thriller     48
## 7458  1999                               Action|Crime|Drama|Thriller     48
## 7459  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     48
## 7460  1999                                      Comedy|Drama|Fantasy     48
## 7461  1997                  Action|Adventure|Animation|Drama|Fantasy     48
## 7462  1999               Adventure|Animation|Children|Comedy|Fantasy     48
## 7463  1999                                               Crime|Drama     48
## 7464  1987                                    Action|Sci-Fi|Thriller     48
## 7465  2000                                    Action|Adventure|Drama     48
## 7466  1992                                               Documentary     48
## 7467  2000                                              Action|Crime     48
## 7468  2000                Action|Adventure|Animation|Children|Sci-Fi     48
## 7469  2000                                 Animation|Children|Comedy     48
## 7470  2000                                   Action|Adventure|Sci-Fi     48
## 7471  2000                                                     Drama     48
## 7472  2000                                                    Comedy     48
## 7473  2000                                     Comedy|Crime|Thriller     48
## 7474  2000               Adventure|Animation|Children|Comedy|Fantasy     48
## 7475  2000                                                     Drama     48
## 7476  2000                                          Mystery|Thriller     48
## 7477  2001                          Action|Adventure|Comedy|Thriller     48
## 7478  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     48
## 7479  2001                                     Action|Crime|Thriller     48
## 7480  2001                        Adventure|Animation|Fantasy|Sci-Fi     48
## 7481  2001                             Drama|Horror|Mystery|Thriller     48
## 7482  2001                             Drama|Mystery|Sci-Fi|Thriller     48
## 7483  2001               Adventure|Animation|Children|Comedy|Fantasy     48
## 7484  2001                         Drama|Fantasy|Horror|Thriller|War     48
## 7485  2001                                            Comedy|Romance     48
## 7486  2001                           Mystery|Romance|Sci-Fi|Thriller     48
## 7487  2001                                         Adventure|Fantasy     48
## 7488  2001                                             Drama|Romance     48
## 7489  2001                                          Action|Drama|War     48
## 7490  2000                           Animation|Fantasy|Horror|Sci-Fi     48
## 7491  2002                       Adventure|Animation|Children|Comedy     48
## 7492  2001                                             Drama|Romance     48
## 7493  2002                          Action|Adventure|Sci-Fi|Thriller     48
## 7494  2002                                      Action|Comedy|Sci-Fi     48
## 7495  2002                                    Horror|Sci-Fi|Thriller     48
## 7496  1996                                     Drama|Horror|Thriller     48
## 7497  2001                               Adventure|Animation|Fantasy     48
## 7498  2002                                               Documentary     48
## 7499  2002                                   Horror|Mystery|Thriller     48
## 7500  1988                                       Animation|Drama|War     48
## 7501  2002                                      Comedy|Drama|Romance     48
## 7502  2002                                    Action|Sci-Fi|Thriller     48
## 7503  2002                                         Adventure|Fantasy     48
## 7504  1988                          Animation|Children|Drama|Fantasy     48
## 7505  2002                                                 Drama|War     48
## 7506  2002                     Action|Adventure|Crime|Drama|Thriller     48
## 7507  2002                              Crime|Drama|Mystery|Thriller     48
## 7508  2001                                        Comedy|Crime|Drama     48
## 7509  1998                                   Horror|Mystery|Thriller     48
## 7510  2001                          Action|Animation|Sci-Fi|Thriller     48
## 7511  2002                                               Crime|Drama     48
## 7512  1986        Action|Adventure|Animation|Children|Fantasy|Sci-Fi     48
## 7513  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7514  2003                              Comedy|Drama|Fantasy|Romance     48
## 7515  2003                       Adventure|Animation|Children|Comedy     48
## 7516  2003                           Action|Adventure|Comedy|Fantasy     48
## 7517  2003                                      Comedy|Drama|Romance     48
## 7518  1995                        Action|Adventure|Animation|Fantasy     48
## 7519  2003                                                     Drama     48
## 7520  2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7521  2003                      Crime|Drama|Mystery|Romance|Thriller     48
## 7522  1984                  Adventure|Animation|Drama|Fantasy|Sci-Fi     48
## 7523  2003                                     Drama|Fantasy|Romance     48
## 7524  2003                            Action|Adventure|Drama|Fantasy     48
## 7525  2001                 Action|Comedy|Crime|Drama|Horror|Thriller     48
## 7526  2004                                     Drama|Sci-Fi|Thriller     48
## 7527  2003                                     Adventure|Documentary     48
## 7528  2004                              Action|Drama|Horror|Thriller     48
## 7529  2004                                      Drama|Romance|Sci-Fi     48
## 7530  2004                           Action|Adventure|Fantasy|Horror     48
## 7531  2003                                    Drama|Mystery|Thriller     48
## 7532  2003                             Drama|Horror|Mystery|Thriller     48
## 7533  1992                                              Action|Drama     48
## 7534  1998                                Animation|Fantasy|Thriller     48
## 7535  2004       Adventure|Animation|Children|Comedy|Musical|Romance     48
## 7536  2004                                                    Comedy     48
## 7537  1992                                           Documentary|War     48
## 7538  2004                              Action|Adventure|Sci-Fi|IMAX     48
## 7539  2004                                               Crime|Drama     48
## 7540  2004                                      Comedy|Drama|Romance     48
## 7541  2004                                          Adventure|Comedy     48
## 7542  2004                                             Comedy|Horror     48
## 7543  1980                                                    Horror     48
## 7544  2004                                 Animation|Children|Comedy     48
## 7545  2004                                    Drama|Mystery|Thriller     48
## 7546  2004                                   Horror|Mystery|Thriller     48
## 7547  2004                Action|Adventure|Animation|Children|Comedy     48
## 7548  2004                 Adventure|Animation|Children|Fantasy|IMAX     48
## 7549  1989                Adventure|Animation|Children|Drama|Fantasy     48
## 7550  1992                Adventure|Animation|Comedy|Fantasy|Romance     48
## 7551  1997                     Action|Animation|Drama|Fantasy|Sci-Fi     48
## 7552  2001                                            Comedy|Romance     48
## 7553  2003                             Action|Animation|Drama|Sci-Fi     48
## 7554  2003                                               Documentary     48
## 7555  2003                                             Drama|Romance     48
## 7556  2002                      Adventure|Animation|Children|Fantasy     48
## 7557  2003                                          Mystery|Thriller     48
## 7558  2003                Adventure|Animation|Fantasy|Musical|Sci-Fi     48
## 7559  2003                                           Action|Thriller     48
## 7560  2004                                            Drama|Thriller     48
## 7561  2003                                               Documentary     48
## 7562  2003                                               Documentary     48
## 7563  2004                                               Documentary     48
## 7564  2005                    Adventure|Children|Comedy|Fantasy|IMAX     48
## 7565  2004                                                    Comedy     48
## 7566  2004                                                 Drama|War     48
## 7567  2004                                                     Drama     48
## 7568  2004                       Adventure|Animation|Fantasy|Romance     48
## 7569  2004                                             Action|Comedy     48
## 7570  2005   Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX     48
## 7571  1995                         Animation|Fantasy|Sci-Fi|Thriller     48
## 7572  2003                                    Animation|Comedy|Drama     48
## 7573  2005                   Action|Crime|Film-Noir|Mystery|Thriller     48
## 7574  2005                                               Documentary     48
## 7575  2004                                               Crime|Drama     48
## 7576  2005                       Adventure|Animation|Children|Comedy     48
## 7577  2005                           Action|Adventure|Comedy|Romance     48
## 7578  2005                                       Action|Crime|Horror     48
## 7579  2005                                   Action|Adventure|Sci-Fi     48
## 7580  2005                                    Drama|Mystery|Thriller     48
## 7581  2005                                              Comedy|Drama     48
## 7582  2005                  Animation|Comedy|Fantasy|Musical|Romance     48
## 7583  2004                 Action|Adventure|Animation|Fantasy|Sci-Fi     48
## 7584  2005                       Adventure|Animation|Children|Comedy     48
## 7585  2005                                             Drama|Romance     48
## 7586  2005                   Action|Adventure|Drama|Fantasy|Thriller     48
## 7587  2005                                      Comedy|Drama|Romance     48
## 7588  2005                                                    Horror     48
## 7589  2006                       Adventure|Animation|Children|Comedy     48
## 7590  2006                               Action|Sci-Fi|Thriller|IMAX     48
## 7591  2006                                     Drama|Horror|Thriller     48
## 7592  2006                                    Drama|Romance|Thriller     48
## 7593  2005                                               Documentary     48
## 7594  2006                                      Comedy|Horror|Sci-Fi     48
## 7595  2005                                            Drama|Thriller     48
## 7596  2006                       Adventure|Animation|Children|Comedy     48
## 7597  2006                                 Animation|Children|Comedy     48
## 7598  2006                                              Comedy|Drama     48
## 7599  2006                                               Documentary     48
## 7600  2006                                    Adventure|Comedy|Drama     48
## 7601  2006                        Animation|Children|Fantasy|Mystery     48
## 7602  2006                              Comedy|Drama|Fantasy|Romance     48
## 7603  2006                                                     Drama     48
## 7604  2006          Adventure|Animation|Children|Comedy|Fantasy|IMAX     48
## 7605  2004         Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi     48
## 7606  2006                             Drama|Fantasy|Mystery|Romance     48
## 7607  2006                                         Documentary|Drama     48
## 7608  2006                                     Drama|Fantasy|Romance     48
## 7609  2006                              Comedy|Drama|Fantasy|Romance     48
## 7610  2006                                                    Comedy     48
## 7611  2006                                    Drama|Fantasy|Thriller     48
## 7612  2006                  Adventure|Animation|Children|Comedy|IMAX     48
## 7613  2006                    Action|Adventure|Drama|Sci-Fi|Thriller     48
## 7614  2006                             Drama|Mystery|Sci-Fi|Thriller     48
## 7615  2006                                          Animation|Comedy     48
## 7616  2006                                      Crime|Drama|Thriller     48
## 7617  2006                                    Action|Sci-Fi|Thriller     48
## 7618  2005                                              Comedy|Drama     48
## 7619  2007                                Adventure|Children|Fantasy     48
## 7620  2007                                  Animation|Children|Drama     48
## 7621  2007                               Action|Comedy|Crime|Mystery     48
## 7622  2007                                      Crime|Drama|Thriller     48
## 7623  2007                                   Action|Fantasy|War|IMAX     48
## 7624  2007                       Action|Crime|Horror|Sci-Fi|Thriller     48
## 7625  2007         Action|Adventure|Animation|Children|Comedy|Sci-Fi     48
## 7626  1978                                Action|Adventure|Drama|War     48
## 7627  2007                           Adventure|Drama|Sci-Fi|Thriller     48
## 7628  2007                                            Drama|Thriller     48
## 7629  2007                     Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7630  2007               Adventure|Animation|Children|Comedy|Fantasy     48
## 7631  2006                                                    Horror     48
## 7632  2007                                 Animation|Children|Comedy     48
## 7633  2007                    Action|Adventure|Crime|Horror|Thriller     48
## 7634  2004                                               Documentary     48
## 7635  2007                                         Documentary|Drama     48
## 7636  2007                               Action|Sci-Fi|Thriller|IMAX     48
## 7637  2007                                          Animation|Comedy     48
## 7638  2007                                                    Comedy     48
## 7639  2007                                      Action|Horror|Sci-Fi     48
## 7640  2007                                    Action|Adventure|Drama     48
## 7641  2007                                              Comedy|Drama     48
## 7642  2007                                           Animation|Drama     48
## 7643  2007                                                     Drama     48
## 7644  2007                                          Animation|Comedy     48
## 7645  2007                                                     Drama     48
## 7646  2007                                              Drama|Sci-Fi     48
## 7647  2007                   Action|Adventure|Animation|Fantasy|IMAX     48
## 7648  2007                              Comedy|Drama|Horror|Thriller     48
## 7649  2007                                                     Drama     48
## 7650  2007                                             Horror|Sci-Fi     48
## 7651  2007                        Action|Horror|Sci-Fi|Thriller|IMAX     48
## 7652  2007                             Drama|Horror|Mystery|Thriller     48
## 7653  2007                                      Comedy|Drama|Romance     48
## 7654  2007                                                     Drama     48
## 7655  2007                             Drama|Horror|Musical|Thriller     48
## 7656  2007                                             Drama|Western     48
## 7657  2007                                      Comedy|Drama|Romance     48
## 7658  2007                                     Drama|Horror|Thriller     48
## 7659  2008                            Action|Mystery|Sci-Fi|Thriller     48
## 7660  2007                                      Comedy|Drama|Romance     48
## 7661  2006                     Animation|Comedy|Drama|Romance|Sci-Fi     48
## 7662  2008                           Action|Adventure|Fantasy|Sci-Fi     48
## 7663  2008                               Comedy|Crime|Drama|Thriller     48
## 7664  2006                                              Comedy|Drama     48
## 7665  2008                       Adventure|Animation|Children|Comedy     48
## 7666  2006                                    Comedy|Fantasy|Romance     48
## 7667  2007                                                     Drama     48
## 7668  2008                                   Action|Crime|Drama|IMAX     48
## 7669  2008                                              Comedy|Drama     48
## 7670  2007                                     Children|Comedy|Drama     48
## 7671  2008                                   Action|Adventure|Sci-Fi     48
## 7672  2006                                   Adventure|Drama|Fantasy     48
## 7673  2006                                               Documentary     48
## 7674  2008                     Action|Animation|Children|Comedy|IMAX     48
## 7675  2008               Adventure|Animation|Children|Romance|Sci-Fi     48
## 7676  2008                                             Action|Comedy     48
## 7677  2008                    Action|Animation|Comedy|Romance|Sci-Fi     48
## 7678  2008                                               Documentary     48
## 7679  2009                 Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     48
## 7680  2008                                               Documentary     48
## 7681  2008                              Drama|Fantasy|Horror|Romance     48
## 7682  2008                                        Comedy|Crime|Drama     48
## 7683  2008                                                    Horror     48
## 7684  2008                                               Crime|Drama     48
## 7685  2008          Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi     48
## 7686  2008           Action|Adventure|Animation|Children|Comedy|IMAX     48
## 7687  2008                                       Crime|Drama|Romance     48
## 7688  2008                                                    Comedy     48
## 7689  2008                                                     Drama     48
## 7690  2008                Action|Adventure|Animation|Children|Comedy     48
## 7691  2008                                             Drama|Mystery     48
## 7692  2008                                                     Drama     48
## 7693  2008                             Drama|Fantasy|Mystery|Romance     48
## 7694  2008                                                    Comedy     48
## 7695  2008                                        Drama|Thriller|War     48
## 7696  2007                                   Animation|Drama|Romance     48
## 7697  2007                                                     Drama     48
## 7698  2008                      Adventure|Animation|Children|Fantasy     48
## 7699  2008                                          Action|Drama|War     48
## 7700  2009                                Animation|Fantasy|Thriller     48
## 7701  2008                                                     Drama     48
## 7702  2009                      Action|Drama|Mystery|Sci-Fi|Thriller     48
## 7703  2009                              Crime|Drama|Mystery|Thriller     48
## 7704  2009                                     Animation|Sci-Fi|IMAX     48
## 7705  2009                                              Comedy|Drama     48
## 7706  2009                                          Action|Drama|War     48
## 7707  2009                             Drama|Mystery|Sci-Fi|Thriller     48
## 7708  2009                              Action|Adventure|Sci-Fi|IMAX     48
## 7709  1997                           Action|Animation|Mystery|Sci-Fi     48
## 7710  2009                        Adventure|Animation|Children|Drama     48
## 7711  2009                                              Comedy|Crime     48
## 7712  2009                              Action|Adventure|Sci-Fi|IMAX     48
## 7713  2009        Action|Adventure|Animation|Children|Comedy|Romance     48
## 7714  2009                                                     Drama     48
## 7715  2009                                      Comedy|Drama|Romance     48
## 7716  2009                             Drama|Horror|Mystery|Thriller     48
## 7717  2009                                   Mystery|Sci-Fi|Thriller     48
## 7718  2007                                   Action|Animation|Sci-Fi     48
## 7719  2009                                             Drama|Romance     48
## 7720  2009                      Crime|Drama|Mystery|Romance|Thriller     48
## 7721  2009                                Adventure|Animation|Sci-Fi     48
## 7722  2009                           Animation|Children|Fantasy|IMAX     48
## 7723  2008                                               Documentary     48
## 7724  2009                                           Horror|Thriller     48
## 7725  2009                                               Documentary     48
## 7726  2009                                     Action|Fantasy|Sci-Fi     48
## 7727  2009                                                    Comedy     48
## 7728  2009                                      Action|Comedy|Horror     48
## 7729  2009                                             Drama|Romance     48
## 7730  2009                                    Animation|Comedy|Drama     48
## 7731  1989                   Animation|Drama|Mystery|Sci-Fi|Thriller     48
## 7732  2009                          Action|Animation|Children|Sci-Fi     48
## 7733  2009                            Horror|Mystery|Sci-Fi|Thriller     48
## 7734  2009                       Crime|Drama|Fantasy|Horror|Thriller     48
## 7735  2009                                                     Drama     48
## 7736  2009                              Action|Adventure|Sci-Fi|IMAX     48
## 7737  2009                             Action|Crime|Mystery|Thriller     48
## 7738  2010                              Action|Drama|Horror|Thriller     48
## 7739  2010                                    Action|Adventure|Drama     48
## 7740  2009                                               Documentary     48
## 7741  2008                              Adventure|Animation|Children     48
## 7742  2009                                      Comedy|Drama|Romance     48
## 7743  2009                             Drama|Horror|Mystery|Thriller     48
## 7744  2009                                               Documentary     48
## 7745  2010                                    Adventure|Fantasy|IMAX     48
## 7746  2010                 Adventure|Animation|Children|Fantasy|IMAX     48
## 7747  2009                                              Comedy|Crime     48
## 7748  2010                                             Action|Comedy     48
## 7749  2009                                                     Drama     48
## 7750  2009                                                    Horror     48
## 7751  2010                     Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7752  2010                                                     Drama     48
## 7753  2010          Adventure|Animation|Children|Comedy|Fantasy|IMAX     48
## 7754  2006                                       Documentary|Musical     48
## 7755  2010                           Animation|Children|Comedy|Crime     48
## 7756  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     48
## 7757  2009                              Drama|Fantasy|Romance|Sci-Fi     48
## 7758  2010                     Action|Comedy|Fantasy|Musical|Romance     48
## 7759  2009                           Fantasy|Horror|Mystery|Thriller     48
## 7760  2010                                                     Drama     48
## 7761  2010                                      Comedy|Drama|Romance     48
## 7762  2010                                      Drama|Horror|Mystery     48
## 7763  2010                                       Documentary|Mystery     48
## 7764  2010                                               Documentary     48
## 7765  2010                                                 Animation     48
## 7766  2010                                  Adventure|Drama|Thriller     48
## 7767  2010              Action|Animation|Children|Comedy|Sci-Fi|IMAX     48
## 7768  2010                                            Drama|Thriller     48
## 7769  2010                                                     Drama     48
## 7770  2010    Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX     48
## 7771  2010                              Action|Adventure|Sci-Fi|IMAX     48
## 7772  2010                                            Crime|Thriller     48
## 7773  2010                                Animation|Children|Fantasy     48
## 7774  2010                                             Comedy|Horror     48
## 7775  2010                                        Animation|Children     48
## 7776  2011                                           Sci-Fi|Thriller     48
## 7777  2009                             Action|Animation|Drama|Sci-Fi     48
## 7778  2011                                   Adventure|Comedy|Sci-Fi     48
## 7779  2011        Action|Adventure|Animation|Children|Comedy|Western     48
## 7780  2010                                              Drama|Horror     48
## 7781  2010                                            Fantasy|Horror     48
## 7782  2011                      Action|Drama|Mystery|Sci-Fi|Thriller     48
## 7783  2011                              Action|Fantasy|Thriller|IMAX     48
## 7784  2008                       Adventure|Animation|Children|Sci-Fi     48
## 7785  2010                                               Documentary     48
## 7786  2010                                   Fantasy|Horror|Thriller     48
## 7787  2011                           Action|Adventure|Crime|Thriller     48
## 7788  2011                       Adventure|Animation|Children|Comedy     48
## 7789  2011                       Action|Adventure|Drama|Fantasy|IMAX     48
## 7790  2008                                                    Comedy     48
## 7791  2008                                   Animation|Drama|Fantasy     48
## 7792  2011           Action|Adventure|Animation|Children|Comedy|IMAX     48
## 7793  2011                      Action|Adventure|Sci-Fi|Thriller|War     48
## 7794  2011                              Mystery|Sci-Fi|Thriller|IMAX     48
## 7795  2011                                   Action|Adventure|Sci-Fi     48
## 7796  2011                          Action|Adventure|Sci-Fi|War|IMAX     48
## 7797  2011                      Action|Adventure|Sci-Fi|Thriller|War     48
## 7798  2011                              Action|Drama|Sci-Fi|Thriller     48
## 7799  2012                              Action|Adventure|Sci-Fi|IMAX     48
## 7800  2011                                   Horror|Mystery|Thriller     48
## 7801  2011                                                    Horror     48
## 7802  2011                                                     Drama     48
## 7803  2011                   Adventure|Animation|Comedy|Fantasy|IMAX     48
## 7804  2011                             Action|Animation|Mystery|IMAX     48
## 7805  2011                           Animation|Children|Comedy|Drama     48
## 7806  2012                               Action|Adventure|Crime|IMAX     48
## 7807  2011            Action|Adventure|Comedy|Crime|Mystery|Thriller     48
## 7808  2011                                                    Horror     48
## 7809  2012                                    Action|Sci-Fi|Thriller     48
## 7810  2012                            Animation|Fantasy|Musical|IMAX     48
## 7811  2011                                              Action|Crime     48
## 7812  2012                             Comedy|Horror|Sci-Fi|Thriller     48
## 7813  2012                       Action|Adventure|Animation|Children     48
## 7814  2008                         Animation|Children|Comedy|Fantasy     48
## 7815  2003                                        Animation|Children     48
## 7816  2012                              Action|Adventure|Sci-Fi|IMAX     48
## 7817  2012                                Adventure|Animation|Comedy     48
## 7818  2000                                 Animation|Children|Comedy     48
## 7819  2012                                    Action|Sci-Fi|Thriller     48
## 7820  2012                                Adventure|Animation|Comedy     48
## 7821  2011                                               Documentary     48
## 7822  2012                                       Action|Crime|Sci-Fi     48
## 7823  2012                                             Action|Sci-Fi     48
## 7824  2012                                             Drama|Romance     48
## 7825  2012                                           Horror|Thriller     48
## 7826  2012                                 Animation|Children|Comedy     48
## 7827  2012                                         Drama|Sci-Fi|IMAX     48
## 7828  2012                                          Animation|Comedy     48
## 7829  2012                                              Comedy|Drama     48
## 7830  2012                                      Adventure|Drama|IMAX     48
## 7831  2012                               Crime|Drama|Horror|Thriller     48
## 7832  2012                                             Drama|Romance     48
## 7833  2012                 Adventure|Animation|Children|Fantasy|IMAX     48
## 7834  2012                                    Adventure|Fantasy|IMAX     48
## 7835  2012                                      Action|Drama|Western     48
## 7836  2012                                            Drama|Thriller     48
## 7837  2012                                               Documentary     48
## 7838  2013                                Adventure|Animation|Comedy     48
## 7839  2013                               Action|Sci-Fi|Thriller|IMAX     48
## 7840  2013                              Action|Adventure|Sci-Fi|IMAX     48
## 7841  2013                      Action|Adventure|Fantasy|Sci-Fi|IMAX     48
## 7842  2013                              Action|Adventure|Sci-Fi|IMAX     48
## 7843  2013                                  Action|Drama|Horror|IMAX     48
## 7844  2013                                  Action|Drama|Sci-Fi|IMAX     48
## 7845  2012                                           Horror|Thriller     48
## 7846  2013                            Animation|Children|Comedy|IMAX     48
## 7847  2013                                           Horror|Thriller     48
## 7848  2013                                        Action|Sci-Fi|IMAX     48
## 7849  2013                              Action|Adventure|Sci-Fi|IMAX     48
## 7850  2013                             Action|Adventure|Fantasy|IMAX     48
## 7851  2013                                                     Drama     48
## 7852  2013                                    Adventure|Fantasy|IMAX     48
## 7853  2013        Adventure|Animation|Comedy|Fantasy|Musical|Romance     48
## 7854  2013                                       Action|Drama|Sci-Fi     48
## 7855  2014                                           Horror|Thriller     48
## 7856  2013                             Action|Animation|Fantasy|IMAX     48
## 7857  2014                             Adventure|Romance|Sci-Fi|IMAX     48
## 7858  2014                                  Action|Crime|Sci-Fi|IMAX     48
## 7859  2014                                               Sci-Fi|IMAX     48
## 7860  2014                                   Action|Mystery|Thriller     48
## 7861  2014                                     Action|Drama|War|IMAX     48
## 7862  2014                                Adventure|Animation|Comedy     48
## 7863  2013                                    Horror|Sci-Fi|Thriller     48
## 7864  2014                                   Action|Crime|Drama|IMAX     48
## 7865  2014                              Action|Adventure|Sci-Fi|IMAX     48
## 7866  2014                                      Adventure|Drama|IMAX     48
## 7867  2014                                     Action|Crime|Thriller     48
## 7868  2014                                        Action|Sci-Fi|IMAX     48
## 7869  2013                                                    Horror     48
## 7870  2014                       Adventure|Animation|Children|Comedy     48
## 7871  2014                                         Drama|Sci-Fi|IMAX     48
## 7872  2014                                   Action|Adventure|Sci-Fi     48
## 7873  2014                              Action|Adventure|Sci-Fi|IMAX     48
## 7874  2014                            Action|Adventure|Children|IMAX     48
## 7875  2014                                        Action|Sci-Fi|IMAX     48
## 7876  2014                                Action|Adventure|Animation     48
## 7877  2014                                   Action|Adventure|Sci-Fi     48
## 7878  2014                                     Drama|Horror|Thriller     48
## 7879  2014                                                    Sci-Fi     48
## 7880  2014                                   Action|Adventure|Sci-Fi     48
## 7881  2013                             Drama|Mystery|Sci-Fi|Thriller     48
## 7882  2014                                     Action|Mystery|Sci-Fi     48
## 7883  2014                            Action|Mystery|Sci-Fi|Thriller     48
## 7884  2014                                           Action|Thriller     48
## 7885  2014                                                    Horror     48
## 7886  2014                                   Action|Animation|Comedy     48
## 7887  2010                                                    Horror     48
## 7888  2014                                         Adventure|Fantasy     48
## 7889  1995                                Adventure|Children|Fantasy     49
## 7890  1995                                Adventure|Children|Fantasy     49
## 7891  1995                                        Drama|Thriller|War     49
## 7892  1995                                       Action|Crime|Sci-Fi     49
## 7893  1995                 Adventure|Children|Comedy|Fantasy|Romance     49
## 7894  1995                                   Action|Thriller|Western     49
## 7895  1994                                    Adventure|Drama|Sci-Fi     49
## 7896  1994                                  Comedy|Drama|Romance|War     49
## 7897  1994                                  Adventure|Children|Drama     49
## 7898  1993                                         Action|Comedy|War     49
## 7899  1993                                                     Drama     49
## 7900  1990                                   Adventure|Drama|Western     49
## 7901  1989                                     Action|Crime|Thriller     49
## 7902  1996                                  Action|Adventure|Fantasy     49
## 7903  1968                                   Adventure|Comedy|Sci-Fi     49
## 7904  1995                               Action|Adventure|Comedy|War     49
## 7905  1996                                 Action|Adventure|Thriller     49
## 7906  1996                         Action|Adventure|Romance|Thriller     49
## 7907  1964                                                Comedy|War     49
## 7908  1996                          Action|Adventure|Sci-Fi|Thriller     49
## 7909  1943                               Adventure|Drama|Romance|War     49
## 7910  1942                                             Drama|Romance     49
## 7911  1939                        Adventure|Children|Fantasy|Musical     49
## 7912  1939                                         Drama|Romance|War     49
## 7913  1956                                          Adventure|Comedy     49
## 7914  1951                              Adventure|Comedy|Romance|War     49
## 7915  1932                                               Romance|War     49
## 7916  1960                                        Adventure|Children     49
## 7917  1971                           Children|Comedy|Fantasy|Musical     49
## 7918  1958                                           Adventure|Drama     49
## 7919  1989                          Action|Adventure|Sci-Fi|Thriller     49
## 7920  1981                          Action|Adventure|Sci-Fi|Thriller     49
## 7921  1980                                   Action|Adventure|Sci-Fi     49
## 7922  1987                   Action|Adventure|Comedy|Fantasy|Romance     49
## 7923  1981                                          Action|Adventure     49
## 7924  1962                                       Adventure|Drama|War     49
## 7925  1979                                          Action|Drama|War     49
## 7926  1983                                   Action|Adventure|Sci-Fi     49
## 7927  1989                                                 Drama|War     49
## 7928  1948                            Action|Adventure|Drama|Western     49
## 7929  1963                                Action|Adventure|Drama|War     49
## 7930  1970                                                 Drama|War     49
## 7931  1959                                    Action|Adventure|Drama     49
## 7932  1989                                          Action|Adventure     49
## 7933  1982                          Action|Adventure|Sci-Fi|Thriller     49
## 7934  1984                                   Action|Adventure|Sci-Fi     49
## 7935  1986                                   Adventure|Comedy|Sci-Fi     49
## 7936  1996                                      Action|Comedy|Sci-Fi     49
## 7937  1997                                      Action|Comedy|Sci-Fi     49
## 7938  1997                                             Action|Sci-Fi     49
## 7939  1930                                          Action|Drama|War     49
## 7940  1972                                    Action|Adventure|Drama     49
## 7941  1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     49
## 7942  1980                                  Adventure|Comedy|Musical     49
## 7943  1991                                   Action|Adventure|Sci-Fi     49
## 7944  1982                                   Action|Adventure|Sci-Fi     49
## 7945  1984                                  Action|Adventure|Fantasy     49
## 7946  1984                                Adventure|Children|Fantasy     49
## 7947  1944                                                 Drama|War     49
## 7948  1954                                    Horror|Sci-Fi|Thriller     49
## 7949  1933                           Action|Adventure|Fantasy|Horror     49
## 7950  1985                                 Action|Adventure|Thriller     49
## 7951  1984                           Action|Adventure|Comedy|Romance     49
## 7952  1985        Action|Adventure|Children|Fantasy|Mystery|Thriller     49
## 7953  1949                                  Adventure|Children|Drama     49
## 7954  1988                                   Action|Adventure|Comedy     49
## 7955  1974                           Action|Adventure|Drama|Thriller     49
## 7956  1979                                                 Adventure     49
## 7957  1953                                       Action|Drama|Sci-Fi     49
## 7958  1959                                                       War     49
## 7959  1987                                   Action|Adventure|Comedy     49
## 7960  1986                                                Action|War     49
## 7961  1988                                                Action|War     49
## 7962  1992                                                    Action     49
## 7963  1972                                  Adventure|Drama|Thriller     49
## 7964  1958                                       Musical|Romance|War     49
## 7965  1967                                          Action|Drama|War     49
## 7966  1981                           Adventure|Comedy|Fantasy|Sci-Fi     49
## 7967  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     49
## 7968  1962                                          Action|Drama|War     49
## 7969  1970                                          Action|Drama|War     49
## 7970  1953                                                 Drama|War     49
## 7971  1992                                              Comedy|Crime     49
## 7972  1992                                      Drama|Romance|Sci-Fi     49
## 7973  1951                                Action|Adventure|Drama|War     49
## 7974  1988                                  Adventure|Children|Drama     49
## 7975  1952                                          Adventure|Comedy     49
## 7976  1984                                          Action|Drama|War     49
## 7977  1963                                  Adventure|Drama|Thriller     49
## 7978  1978                                          Action|Drama|War     49
## 7979  1942                                  Action|Drama|Romance|War     49
## 7980  1944                                          Action|Drama|War     49
## 7981  2000                                            Drama|Thriller     49
## 7982  1970                                         Action|Comedy|War     49
## 7983  1966                                          Adventure|Sci-Fi     49
## 7984  1960                                   Action|Adventure|Sci-Fi     49
## 7985  1960                                  Action|Drama|War|Western     49
## 7986  1993                                                 Drama|War     49
## 7987  1970                                          Comedy|Drama|War     49
## 7988  1995                                 Action|Adventure|Thriller     50
## 7989  1995                                     Comedy|Crime|Thriller     50
## 7990  1995                                            Comedy|Romance     50
## 7991  1995                                          Mystery|Thriller     50
## 7992  1996                                 Action|Adventure|Thriller     50
## 7993  1995                                          Action|Drama|War     50
## 7994  1995                                      Adventure|Drama|IMAX     50
## 7995  1995                           Action|Adventure|Mystery|Sci-Fi     50
## 7996  1995                                        Drama|Thriller|War     50
## 7997  1995                                     Action|Crime|Thriller     50
## 7998  1995                                     Action|Crime|Thriller     50
## 7999  1995                                   Action|Adventure|Sci-Fi     50
## 8000  1994                                          Adventure|Comedy     50
## 8001  1994                                              Drama|Horror     50
## 8002  1994                                                     Drama     50
## 8003  1995                              Action|Drama|Sci-Fi|Thriller     50
## 8004  1994                               Comedy|Crime|Drama|Thriller     50
## 8005  1994                                     Action|Drama|Thriller     50
## 8006  1994                                   Action|Adventure|Sci-Fi     50
## 8007  1993                                                     Drama     50
## 8008  1995                                            Comedy|Romance     50
## 8009  1994                                                    Comedy     50
## 8010  1994                               Action|Crime|Drama|Thriller     50
## 8011  1994                                  Comedy|Drama|Romance|War     50
## 8012  1994                                            Comedy|Romance     50
## 8013  1994                               Action|Comedy|Crime|Fantasy     50
## 8014  1994                                  Adventure|Comedy|Western     50
## 8015  1994                                   Action|Romance|Thriller     50
## 8016  1994                  Action|Adventure|Comedy|Romance|Thriller     50
## 8017  1994                              Action|Comedy|Crime|Thriller     50
## 8018  1993                                 Action|Adventure|Thriller     50
## 8019  1993                                            Comedy|Romance     50
## 8020  1993                                   Action|Adventure|Sci-Fi     50
## 8021  1993                                            Drama|Thriller     50
## 8022  1993                                                  Thriller     50
## 8023  1993                          Action|Adventure|Sci-Fi|Thriller     50
## 8024  1993                                             Drama|Romance     50
## 8025  1993                                                 Drama|War     50
## 8026  1993                                      Comedy|Drama|Romance     50
## 8027  1993                                      Action|Drama|Western     50
## 8028  1990                     Comedy|Drama|Fantasy|Romance|Thriller     50
## 8029  1991                                             Action|Sci-Fi     50
## 8030  1990                                   Adventure|Drama|Western     50
## 8031  1990                                            Comedy|Romance     50
## 8032  1996                          Action|Adventure|Sci-Fi|Thriller     50
## 8033  1996                                     Action|Drama|Thriller     50
## 8034  1941                                         Film-Noir|Mystery     51
## 8035  1997                                           Action|Thriller     51
## 8036  1998                                      Comedy|Drama|Romance     51
## 8037  1963                                  Adventure|Comedy|Romance     51
## 8038  1985                                             Drama|Romance     51
## 8039  1985                                              Comedy|Drama     51
## 8040  1985                                      Comedy|Drama|Romance     51
## 8041  1998                                      Comedy|Drama|Romance     51
## 8042  1999                                            Crime|Thriller     51
## 8043  1958                                                       War     51
## 8044  1999                                   Action|Adventure|Comedy     51
## 8045  1999                              Crime|Drama|Mystery|Thriller     51
## 8046  1990                                             Comedy|Horror     51
## 8047  1999                              Action|Comedy|Sci-Fi|Western     51
## 8048  1999                                           Horror|Thriller     51
## 8049  1999                             Action|Horror|Sci-Fi|Thriller     51
## 8050  1999                                            Comedy|Romance     51
## 8051  1986                                  Adventure|Drama|Thriller     51
## 8052  1999                 Adventure|Animation|Children|Drama|Sci-Fi     51
## 8053  1999                                            Action|Mystery     51
## 8054  1999                                  Action|Adventure|Fantasy     51
## 8055  1999                                    Horror|Sci-Fi|Thriller     51
## 8056  1999                                            Drama|Thriller     51
## 8057  1999                                   Horror|Mystery|Thriller     51
## 8058  1999                               Action|Crime|Drama|Thriller     51
## 8059  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     51
## 8060  1999                                   Children|Comedy|Fantasy     51
## 8061  1999                                   Adventure|Comedy|Sci-Fi     51
## 8062  1990                                          Mystery|Thriller     51
## 8063  2000                                            Drama|Thriller     51
## 8064  1982                                              Comedy|Drama     51
## 8065  1994                                            Comedy|Romance     52
## 8066  1993                                                     Drama     52
## 8067  1994                                             Drama|Romance     52
## 8068  1996                              Crime|Drama|Romance|Thriller     52
## 8069  1987                                     Drama|Musical|Romance     52
## 8070  1988                                                     Drama     52
## 8071  1997                                                    Comedy     52
## 8072  1997                                      Comedy|Drama|Romance     52
## 8073  1998                                             Drama|Romance     52
## 8074  1985                                                    Horror     52
## 8075  1998                                   Horror|Mystery|Thriller     52
## 8076  1998                                      Comedy|Drama|Romance     52
## 8077  1988                                             Comedy|Sci-Fi     52
## 8078  1999                                           Comedy|Thriller     52
## 8079  1999                                             Drama|Romance     52
## 8080  1999                                             Drama|Romance     52
## 8081  1992                                              Comedy|Drama     52
## 8082  2000                                   Action|Adventure|Sci-Fi     52
## 8083  1999                                         Drama|Romance|War     52
## 8084  2000                                                     Drama     52
## 8085  2000                                             Drama|Romance     52
## 8086  2000                                      Action|Drama|Romance     52
## 8087  2000                                             Drama|Romance     52
## 8088  2001                                      Comedy|Crime|Romance     52
## 8089  2001                                      Comedy|Drama|Romance     52
## 8090  2001                                Adventure|Children|Fantasy     52
## 8091  2001                                            Comedy|Romance     52
## 8092  2001                                            Comedy|Romance     52
## 8093  2002                                            Comedy|Romance     52
## 8094  2002                                      Comedy|Drama|Romance     52
## 8095  2001                                      Comedy|Drama|Romance     52
## 8096  2002                                             Drama|Romance     52
## 8097  2002                                             Drama|Romance     52
## 8098  2002                                         Adventure|Fantasy     52
## 8099  2002                                             Drama|Romance     52
## 8100  2002                                             Drama|Romance     52
## 8101  2003                                           Horror|Thriller     52
## 8102  2002                                      Comedy|Drama|Romance     52
## 8103  2002                                      Comedy|Drama|Romance     52
## 8104  2003                           Action|Adventure|Comedy|Fantasy     52
## 8105  2001                              Comedy|Drama|Musical|Romance     52
## 8106  1983                                                    Comedy     52
## 8107  2003                                      Comedy|Drama|Romance     52
## 8108  2003                                               Crime|Drama     52
## 8109  1985                                                     Drama     52
## 8110  2004                                    Adventure|Fantasy|IMAX     52
## 8111  2004                                                  Thriller     52
## 8112  2004                                        Comedy|Crime|Drama     52
## 8113  2004                                                     Drama     52
## 8114  2004                                      Action|Drama|Romance     52
## 8115  1998                                             Drama|Romance     52
## 8116  2004                                 Drama|Mystery|Romance|War     52
## 8117  2004                                                    Comedy     52
## 8118  2004                                             Drama|Romance     52
## 8119  2005                                     Action|Drama|Thriller     52
## 8120  2005                                              Comedy|Drama     52
## 8121  2005                                             Drama|Romance     52
## 8122  2005                           Adventure|Fantasy|Thriller|IMAX     52
## 8123  2005                                             Drama|Romance     52
## 8124  2005                                      Comedy|Drama|Romance     52
## 8125  2006                                    Drama|Romance|Thriller     52
## 8126  2006                                    Drama|Mystery|Thriller     52
## 8127  2007                                  Animation|Children|Drama     52
## 8128  2006                                      Comedy|Drama|Romance     52
## 8129  2006                                            Comedy|Romance     52
## 8130  2007                              Adventure|Drama|Fantasy|IMAX     52
## 8131  2007                                      Comedy|Drama|Romance     52
## 8132  2008                                      Comedy|Drama|Romance     52
## 8133  1976                                      Crime|Drama|Thriller     53
## 8134  1995                                     Action|Crime|Thriller     53
## 8135  1995                                        Adventure|Children     53
## 8136  1993                                       Adventure|Animation     53
## 8137  1994                              Action|Comedy|Crime|Thriller     53
## 8138  1994                                  Adventure|Children|Drama     53
## 8139  1994                                        Adventure|Children     53
## 8140  1968                                    Horror|Sci-Fi|Thriller     53
## 8141  1975                                                     Drama     53
## 8142  1990                                 Action|Adventure|Thriller     53
## 8143  1997                                      Action|Comedy|Sci-Fi     53
## 8144  1990                                 Action|Adventure|Thriller     53
## 8145  1998                                     Action|Comedy|Musical     53
## 8146  1998                                                    Comedy     53
## 8147  1998                            Action|Romance|Sci-Fi|Thriller     53
## 8148  1986                                           Horror|Thriller     53
## 8149  1992                                 Action|Comedy|Crime|Drama     53
## 8150  1985                                Adventure|Children|Fantasy     53
## 8151  1998                                                     Drama     53
## 8152  1986                                          Adventure|Sci-Fi     53
## 8153  1998                                         Animation|Musical     53
## 8154  1998                                      Comedy|Drama|Romance     53
## 8155  1990                                              Action|Drama     53
## 8156  1998                                                     Drama     53
## 8157  1986                                          Adventure|Comedy     53
## 8158  1999                                            Comedy|Romance     53
## 8159  1990                                             Comedy|Horror     53
## 8160  1999                                  Animation|Comedy|Musical     53
## 8161  1999                                           Children|Comedy     53
## 8162  1999                                     Drama|Horror|Thriller     53
## 8163  1984                                      Action|Comedy|Sci-Fi     53
## 8164  1989                                     Comedy|Fantasy|Sci-Fi     53
## 8165  1999                          Action|Adventure|Children|Comedy     53
## 8166  1999                 Adventure|Animation|Children|Drama|Sci-Fi     53
## 8167  1999                                      Drama|Horror|Mystery     53
## 8168  1999                                            Drama|Thriller     53
## 8169  1999                                      Crime|Drama|Thriller     53
## 8170  1990                              Action|Crime|Sci-Fi|Thriller     53
## 8171  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     53
## 8172  1999                                      Comedy|Drama|Fantasy     53
## 8173  1991                                              Action|Drama     53
## 8174  1999               Adventure|Animation|Children|Comedy|Fantasy     53
## 8175  1999                                                     Drama     53
## 8176  1999                                                     Drama     53
## 8177  1992                                            Drama|Thriller     53
## 8178  1994                                              Action|Drama     53
## 8179  1994                                               Crime|Drama     54
## 8180  1991                                           Adventure|Drama     54
## 8181  1987                                     Drama|Musical|Romance     54
## 8182  1966                                  Action|Adventure|Western     54
## 8183  1957                                                     Drama     54
## 8184  1963                                           Horror|Thriller     54
## 8185  1998                                             Drama|Romance     54
## 8186  1980                                          Adventure|Comedy     54
## 8187  1988                                   Action|Adventure|Comedy     54
## 8188  1999                                    Action|Sci-Fi|Thriller     54
## 8189  1973                                 Action|Adventure|Thriller     54
## 8190  1992                                            Comedy|Fantasy     54
## 8191  1936                                      Comedy|Drama|Romance     54
## 8192  1979                          Action|Adventure|Sci-Fi|Thriller     54
## 8193  2000                                            Crime|Thriller     54
## 8194  1988                                  Adventure|Comedy|Fantasy     54
## 8195  2001                                            Crime|Thriller     54
## 8196  2002                                   Action|Mystery|Thriller     54
## 8197  2003                                              Action|Crime     54
## 8198  2004                                             Drama|Romance     54
## 8199  2004                                     Action|Crime|Thriller     54
## 8200  1967                Action|Adventure|Animation|Children|Comedy     54
## 8201  1973                                            Comedy|Western     54
## 8202  2004                                                 Drama|War     54
## 8203  2005                                         Action|Crime|IMAX     54
## 8204  2006                                        Comedy|Crime|Drama     54
## 8205  2006                                      Crime|Drama|Thriller     54
## 8206  2006                                      Crime|Drama|Thriller     54
## 8207  2006                                             Drama|Romance     54
## 8208  2006                             Drama|Mystery|Sci-Fi|Thriller     54
## 8209  2006                                      Crime|Drama|Thriller     54
## 8210  2007                                     Action|Crime|Thriller     54
## 8211  2007                                               Crime|Drama     54
## 8212  2007                                      Comedy|Drama|Romance     54
## 8213  2008                              Crime|Drama|Romance|Thriller     54
## 8214  2008               Adventure|Animation|Children|Romance|Sci-Fi     54
## 8215  2009                                          Action|Drama|War     54
## 8216  2009                                      Crime|Drama|Thriller     54
## 8217  2009                                    Animation|Comedy|Drama     54
## 8218  1997                                               Crime|Drama     54
## 8219  2010          Adventure|Animation|Children|Comedy|Fantasy|IMAX     54
## 8220  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     54
## 8221  2006               Adventure|Animation|Children|Comedy|Fantasy     54
## 8222  2012                                       Comedy|Drama|Sci-Fi     54
## 8223  1995               Adventure|Animation|Children|Comedy|Fantasy     55
## 8224  1995                                                    Comedy     55
## 8225  1995                                     Action|Crime|Thriller     55
## 8226  1995                                            Comedy|Romance     55
## 8227  1995                                                    Action     55
## 8228  1995                                   Mystery|Sci-Fi|Thriller     55
## 8229  1996                                                    Comedy     55
## 8230  1996                                             Drama|Romance     55
## 8231  1996                                            Drama|Thriller     55
## 8232  1996                                 Action|Adventure|Thriller     55
## 8233  1996                                            Drama|Thriller     55
## 8234  1996                                                    Comedy     55
## 8235  1995                             Action|Adventure|Comedy|Crime     55
## 8236  1996                                                    Comedy     55
## 8237  1977                                   Action|Adventure|Sci-Fi     55
## 8238  1994                                           Action|Thriller     55
## 8239  1996                                 Action|Adventure|Thriller     55
## 8240  1996                               Comedy|Crime|Drama|Thriller     55
## 8241  1996                                        Adventure|Children     55
## 8242  1996                                                    Comedy     55
## 8243  1996                         Action|Adventure|Mystery|Thriller     55
## 8244  1996                                  Action|Adventure|Fantasy     55
## 8245  1996                                      Crime|Drama|Thriller     55
## 8246  1996                                            Comedy|Romance     55
## 8247  1996                                                    Comedy     55
## 8248  1996                             Drama|Fantasy|Horror|Thriller     55
## 8249  1996                                 Action|Adventure|Thriller     55
## 8250  1996                         Action|Adventure|Romance|Thriller     55
## 8251  1996                                             Action|Sci-Fi     55
## 8252  1996                                          Action|Adventure     55
## 8253  1996                          Action|Adventure|Sci-Fi|Thriller     55
## 8254  1996                                           Comedy|Thriller     55
## 8255  1996                                     Action|Drama|Thriller     55
## 8256  1996                             Comedy|Fantasy|Romance|Sci-Fi     55
## 8257  1996                                             Drama|Romance     55
## 8258  1996                                            Drama|Thriller     55
## 8259  1996                                            Crime|Thriller     55
## 8260  1971                           Children|Comedy|Fantasy|Musical     55
## 8261  1995               Adventure|Animation|Children|Comedy|Fantasy     56
## 8262  1995                                 Action|Adventure|Thriller     56
## 8263  1995                                               Crime|Drama     56
## 8264  1995                                     Comedy|Crime|Thriller     56
## 8265  1995                    Adventure|Drama|Fantasy|Mystery|Sci-Fi     56
## 8266  1995                                            Comedy|Romance     56
## 8267  1995                                          Mystery|Thriller     56
## 8268  1995                                    Crime|Mystery|Thriller     56
## 8269  1996                            Adventure|Comedy|Crime|Romance     56
## 8270  1996                                                    Comedy     56
## 8271  1976                                      Crime|Drama|Thriller     56
## 8272  1995                                                     Drama     56
## 8273  1995                           Action|Adventure|Mystery|Sci-Fi     56
## 8274  1995                                                    Comedy     56
## 8275  1995                                                    Comedy     56
## 8276  1994                                                    Comedy     56
## 8277  1994                                          Adventure|Comedy     56
## 8278  1994                                               Documentary     56
## 8279  1995                                           Children|Comedy     56
## 8280  1977                                   Action|Adventure|Sci-Fi     56
## 8281  1995                              Action|Drama|Sci-Fi|Thriller     56
## 8282  1994                               Action|Crime|Drama|Thriller     56
## 8283  1994                               Comedy|Crime|Drama|Thriller     56
## 8284  1994                                               Crime|Drama     56
## 8285  1995                                                    Comedy     56
## 8286  1993                                                     Drama     56
## 8287  1994                                                    Comedy     56
## 8288  1994                                  Comedy|Drama|Romance|War     56
## 8289  1994                                   Action|Romance|Thriller     56
## 8290  1993                                                    Comedy     56
## 8291  1993                                   Action|Adventure|Sci-Fi     56
## 8292  1994                                      Crime|Drama|Thriller     56
## 8293  1993                                                  Thriller     56
## 8294  1993                          Action|Adventure|Sci-Fi|Thriller     56
## 8295  1993                                                 Drama|War     56
## 8296  1993                                                     Drama     56
## 8297  1982                                    Action|Sci-Fi|Thriller     56
## 8298  1990                                           Children|Comedy     56
## 8299  1991                                     Crime|Horror|Thriller     56
## 8300  1996        Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     56
## 8301  1964                                                Comedy|War     56
## 8302  1996                                        Comedy|Crime|Drama     56
## 8303  1953                                      Comedy|Drama|Romance     56
## 8304  1939                        Adventure|Children|Fantasy|Musical     56
## 8305  1950                                   Drama|Film-Noir|Romance     56
## 8306  1941                                             Drama|Mystery     56
## 8307  1968                                    Adventure|Drama|Sci-Fi     56
## 8308  1950                                                     Drama     56
## 8309  1944                                   Crime|Film-Noir|Mystery     56
## 8310  1940                                            Comedy|Romance     56
## 8311  1946                            Children|Drama|Fantasy|Romance     56
## 8312  1988                                     Action|Crime|Thriller     56
## 8313  1996                                              Comedy|Drama     56
## 8314  1971                           Children|Comedy|Fantasy|Musical     56
## 8315  1992                                    Crime|Mystery|Thriller     56
## 8316  1992                                    Drama|Romance|Thriller     56
## 8317  1992                                                     Drama     56
## 8318  1982                                     Children|Drama|Sci-Fi     56
## 8319  1996                                              Comedy|Drama     56
## 8320  1975                                  Adventure|Comedy|Fantasy     56
## 8321  1989                                                     Drama     56
## 8322  1975                                                     Drama     56
## 8323  1980                                   Action|Adventure|Sci-Fi     56
## 8324  1987                   Action|Adventure|Comedy|Fantasy|Romance     56
## 8325  1981                                          Action|Adventure     56
## 8326  1966                                  Action|Adventure|Western     56
## 8327  1971                               Crime|Drama|Sci-Fi|Thriller     56
## 8328  1962                                                     Drama     56
## 8329  1979                                          Action|Drama|War     56
## 8330  1968                                      Action|Drama|Western     56
## 8331  1983                                   Action|Adventure|Sci-Fi     56
## 8332  1990                                               Crime|Drama     56
## 8333  1987                                                 Drama|War     56
## 8334  1984                                                     Drama     56
## 8335  1952                                             Drama|Romance     56
## 8336  1980                                                     Drama     56
## 8337  1977                                            Comedy|Romance     56
## 8338  1971                                      Comedy|Drama|Romance     56
## 8339  1984                                    Action|Sci-Fi|Thriller     56
## 8340  1979                                      Comedy|Drama|Romance     56
## 8341  1967                                      Comedy|Drama|Romance     56
## 8342  1957                                       Adventure|Drama|War     56
## 8343  1974                          Crime|Film-Noir|Mystery|Thriller     56
## 8344  1933                                        Comedy|Musical|War     56
## 8345  1980                                                    Horror     56
## 8346  1986                                           Adventure|Drama     56
## 8347  1978                                                 Drama|War     56
## 8348  1993                                    Comedy|Fantasy|Romance     56
## 8349  1992                                             Drama|Western     56
## 8350  1985                                   Adventure|Comedy|Sci-Fi     56
## 8351  1952                                             Drama|Western     56
## 8352  1989                                                    Comedy     56
## 8353  1984                                                    Comedy     56
## 8354  1989                                          Action|Adventure     56
## 8355  1989                                    Children|Drama|Fantasy     56
## 8356  1969                                            Action|Western     56
## 8357  1989                                            Comedy|Romance     56
## 8358  1996                                                     Drama     56
## 8359  1978                                    Comedy|Musical|Romance     56
## 8360  1975                                             Action|Horror     56
## 8361  1996                                             Drama|Romance     56
## 8362  1996                                                    Comedy     56
## 8363  1997                                               Crime|Drama     56
## 8364  1997                                           Action|Thriller     56
## 8365  1997                          Crime|Film-Noir|Mystery|Thriller     56
## 8366  1997                                                     Drama     56
## 8367  1997                                             Action|Sci-Fi     56
## 8368  1998                                       Comedy|Drama|Sci-Fi     56
## 8369  1997                                             Drama|Romance     56
## 8370  1997                                             Drama|Romance     56
## 8371  1998                                              Comedy|Crime     56
## 8372  1997                                      Comedy|Drama|Romance     56
## 8373  1998 Adventure|Animation|Children|Comedy|Drama|Musical|Romance     56
## 8374  1998                                            Comedy|Romance     56
## 8375  1961                                     Drama|Musical|Romance     56
## 8376  1969                                                     Drama     56
## 8377  1971                                     Action|Crime|Thriller     56
## 8378  1976                                                     Drama     56
## 8379  1981                                                     Drama     56
## 8380  1983                                              Comedy|Drama     56
## 8381  1988                                                     Drama     56
## 8382  1985                                              Comedy|Drama     56
## 8383  1987                                 Action|Comedy|Crime|Drama     56
## 8384  1985                  Action|Adventure|Children|Comedy|Fantasy     56
## 8385  1998                                     Action|Comedy|Romance     56
## 8386  1989                                   Adventure|Comedy|Sci-Fi     56
## 8387  1998                                          Action|Drama|War     56
## 8388  1994                                           Children|Comedy     56
## 8389  1993                            Children|Comedy|Fantasy|Horror     56
## 8390  1998                                                    Comedy     56
## 8391  1989                                                    Comedy     56
## 8392  1992                                           Children|Comedy     56
## 8393  1984                                  Action|Adventure|Fantasy     56
## 8394  1984                                            Comedy|Romance     56
## 8395  1951                            Crime|Drama|Film-Noir|Thriller     56
## 8396  1987                                        Action|Crime|Drama     56
## 8397  1989                                      Comedy|Drama|Romance     56
## 8398  1992                                            Comedy|Fantasy     56
## 8399  1968                                                    Comedy     56
## 8400  1998                                      Comedy|Drama|Fantasy     56
## 8401  1997                                  Comedy|Drama|Romance|War     56
## 8402  1998                                               Crime|Drama     56
## 8403  1998                                              Comedy|Drama     56
## 8404  1984                                                     Drama     56
## 8405  1999                                              Comedy|Crime     56
## 8406  1998                                     Comedy|Crime|Thriller     56
## 8407  1999                                            Comedy|Romance     56
## 8408  1999                                                    Comedy     56
## 8409  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     56
## 8410  1999                                                    Comedy     56
## 8411  1999                                  Animation|Comedy|Musical     56
## 8412  1984                                      Action|Comedy|Sci-Fi     56
## 8413  1986                                     Comedy|Horror|Musical     56
## 8414  1999                 Adventure|Animation|Children|Drama|Sci-Fi     56
## 8415  1980                                                    Comedy     56
## 8416  1988                              Comedy|Drama|Fantasy|Romance     56
## 8417  1983                                           Children|Comedy     56
## 8418  1999                                             Drama|Romance     56
## 8419  1964                                  Adventure|Comedy|Musical     56
## 8420  1986                                                    Comedy     56
## 8421  1970                                                     Drama     56
## 8422  1964                                 Action|Adventure|Thriller     56
## 8423  1964                                            Action|Western     56
## 8424  1992                                           Children|Comedy     56
## 8425  1999                               Action|Crime|Drama|Thriller     56
## 8426  1973               Adventure|Animation|Children|Comedy|Musical     56
## 8427  1983                                                    Comedy     56
## 8428  1987                                            Comedy|Romance     56
## 8429  1999                                      Comedy|Drama|Romance     56
## 8430  1934                           Children|Comedy|Fantasy|Musical     56
## 8431  1948                                                     Drama     56
## 8432  1984                                                     Drama     56
## 8433  1988                              Action|Comedy|Crime|Thriller     56
## 8434  1999               Adventure|Animation|Children|Comedy|Fantasy     56
## 8435  1971                                                     Drama     56
## 8436  1999                                                     Drama     56
## 8437  1982                                      Comedy|Drama|Romance     56
## 8438  1992                                                    Comedy     56
## 8439  1992                                              Comedy|Drama     56
## 8440  1992                                             Action|Comedy     56
## 8441  1986                                             Drama|Romance     56
## 8442  1988                                      Comedy|Drama|Romance     56
## 8443  1956                                             Drama|Western     56
## 8444  1978                                                    Comedy     56
## 8445  1989                                                     Drama     56
## 8446  1961                                                     Drama     56
## 8447  1986                                             Drama|Romance     56
## 8448  1991                                  Adventure|Comedy|Fantasy     56
## 8449  1976                                              Comedy|Drama     56
## 8450  1980                                                    Comedy     56
## 8451  1949                                    Comedy|Musical|Romance     56
## 8452  1985                                          Adventure|Comedy     56
## 8453  1966                                               Documentary     56
## 8454  1974                                            Comedy|Western     56
## 8455  1984                                     Crime|Drama|Film-Noir     56
## 8456  2000                                 Animation|Children|Comedy     56
## 8457  1998                                               Crime|Drama     56
## 8458  1984                                                     Drama     56
## 8459  1988                               Action|Comedy|Crime|Romance     56
## 8460  2000                                                     Drama     56
## 8461  2000                                                     Drama     56
## 8462  1994                                             Action|Comedy     56
## 8463  2000                                   Children|Comedy|Fantasy     56
## 8464  2000               Adventure|Animation|Children|Comedy|Fantasy     56
## 8465  2000                                                     Drama     56
## 8466  2000                                    Adventure|Comedy|Crime     56
## 8467  2000                                      Crime|Drama|Thriller     56
## 8468  2001                                             Drama|Romance     56
## 8469  1984                                 Action|Comedy|Crime|Drama     56
## 8470  1987                                            Comedy|Romance     56
## 8471  1987                                        Comedy|Documentary     56
## 8472  2000                                          Mystery|Thriller     56
## 8473  1983                                        Action|Crime|Drama     56
## 8474  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     56
## 8475  2001                                    Adventure|Drama|Sci-Fi     56
## 8476  1962                                       Crime|Drama|Western     56
## 8477  2001                                            Comedy|Romance     56
## 8478  1989                                   Adventure|Comedy|Sci-Fi     56
## 8479  2001                                                    Comedy     56
## 8480  2001                                                     Drama     56
## 8481  2001                                      Crime|Drama|Thriller     56
## 8482  2001                                                    Comedy     56
## 8483  2001                    Crime|Drama|Film-Noir|Mystery|Thriller     56
## 8484  2001                             Drama|Mystery|Sci-Fi|Thriller     56
## 8485  2001                                               Crime|Drama     56
## 8486  2001               Adventure|Animation|Children|Comedy|Fantasy     56
## 8487  2001                                Adventure|Children|Fantasy     56
## 8488  2001                                            Comedy|Romance     56
## 8489  2001                                         Adventure|Fantasy     56
## 8490  1993                                     Children|Comedy|Drama     56
## 8491  2002                                      Comedy|Drama|Romance     56
## 8492  2002                                                    Comedy     56
## 8493  2002                                   Action|Mystery|Thriller     56
## 8494  2002                      Action|Crime|Mystery|Sci-Fi|Thriller     56
## 8495  2002                                      Comedy|Drama|Romance     56
## 8496  2002                                 Action|Comedy|Documentary     56
## 8497  2002                                         Adventure|Fantasy     56
## 8498  2002                                      Comedy|Drama|Romance     56
## 8499  2002                                         Adventure|Fantasy     56
## 8500  1991                                      Comedy|Drama|Romance     56
## 8501  2002                                                 Drama|War     56
## 8502  2002                               Comedy|Crime|Drama|Thriller     56
## 8503  2002                     Action|Adventure|Crime|Drama|Thriller     56
## 8504  2003                                                    Comedy     56
## 8505  2003                              Comedy|Drama|Fantasy|Romance     56
## 8506  2003                       Adventure|Animation|Children|Comedy     56
## 8507  2001                                             Action|Comedy     56
## 8508  1969                                    Comedy|Musical|Romance     56
## 8509  1991                                               Crime|Drama     56
## 8510  2003                                            Comedy|Musical     56
## 8511  2003                                              Comedy|Drama     56
## 8512  2003                                       Crime|Drama|Mystery     56
## 8513  2003                                            Comedy|Romance     56
## 8514  2003                                     Action|Crime|Thriller     56
## 8515  2003                                               Crime|Drama     56
## 8516  2003                                   Children|Comedy|Fantasy     56
## 8517  2003                                      Comedy|Drama|Romance     56
## 8518  1991                                              Comedy|Drama     56
## 8519  1990                                      Crime|Drama|Thriller     56
## 8520  2000                              Action|Drama|Horror|Thriller     56
## 8521  1985                                            Comedy|Fantasy     56
## 8522  1939                              Action|Drama|Romance|Western     56
## 8523  1935                                    Comedy|Musical|Romance     56
## 8524  2003                                     Drama|Fantasy|Romance     56
## 8525  2003                            Action|Adventure|Drama|Fantasy     56
## 8526  2004                                                     Drama     56
## 8527  2004                                      Drama|Romance|Sci-Fi     56
## 8528  2004                                     Action|Drama|Thriller     56
## 8529  2004                                                    Comedy     56
## 8530  2004       Adventure|Animation|Children|Comedy|Musical|Romance     56
## 8531  2004                                    Adventure|Fantasy|IMAX     56
## 8532  2004                                                    Comedy     56
## 8533  2004                                                    Comedy     56
## 8534  2004                                                    Comedy     56
## 8535  2004                                     Action|Crime|Thriller     56
## 8536  2004                                      Comedy|Drama|Romance     56
## 8537  2004                                          Adventure|Comedy     56
## 8538  2004                                             Comedy|Horror     56
## 8539  2004                                              Drama|Sci-Fi     56
## 8540  2004                         Action|Adventure|Animation|Comedy     56
## 8541  2004                Action|Adventure|Animation|Children|Comedy     56
## 8542  2004                   Action|Adventure|Drama|Mystery|Thriller     56
## 8543  1962                           Children|Comedy|Musical|Romance     56
## 8544  1983                                        Comedy|Documentary     56
## 8545  2000                                 Animation|Children|Comedy     56
## 8546  2003                                          Mystery|Thriller     56
## 8547  2005                   Action|Crime|Film-Noir|Mystery|Thriller     56
## 8548  2005                                            Comedy|Romance     56
## 8549  2004                                               Crime|Drama     56
## 8550  2005                                                    Comedy     56
## 8551  2005                                             Drama|Romance     56
## 8552  2005                                         Action|Crime|IMAX     56
## 8553  2005                                              Comedy|Drama     56
## 8554  2005                                            Comedy|Romance     56
## 8555  2005                                              Comedy|Drama     56
## 8556  2005                                            Comedy|Romance     56
## 8557  2005                               Action|Crime|Drama|Thriller     56
## 8558  2005                       Adventure|Animation|Children|Comedy     56
## 8559  2005                             Comedy|Crime|Mystery|Thriller     56
## 8560  2005                                              Comedy|Drama     56
## 8561  2005                                               Crime|Drama     56
## 8562  2005                                             Drama|Romance     56
## 8563  2005                           Adventure|Fantasy|Thriller|IMAX     56
## 8564  2005                                Adventure|Children|Fantasy     56
## 8565  2006                               Action|Sci-Fi|Thriller|IMAX     56
## 8566  2006                                      Crime|Drama|Thriller     56
## 8567  2006                                    Adventure|Comedy|Drama     56
## 8568  2006                        Animation|Children|Fantasy|Mystery     56
## 8569  2006                                             Action|Comedy     56
## 8570  2006                                                     Drama     56
## 8571  2006                                        Comedy|Documentary     56
## 8572  2006                                      Crime|Drama|Thriller     56
## 8573  2006                                               Documentary     56
## 8574  2006                                          Animation|Comedy     56
## 8575  2006                                 Action|Adventure|Thriller     56
## 8576  2006                                                     Drama     56
## 8577  2007                                  Animation|Children|Drama     56
## 8578  2007                               Action|Comedy|Crime|Mystery     56
## 8579  2007                                      Crime|Drama|Thriller     56
## 8580  2007                                   Action|Fantasy|War|IMAX     56
## 8581  2007                                            Comedy|Romance     56
## 8582  1966                          Animation|Comedy|Fantasy|Musical     56
## 8583  2006                                     Drama|Musical|Romance     56
## 8584  2007                           Action|Adventure|Comedy|Fantasy     56
## 8585  2007                              Adventure|Drama|Fantasy|IMAX     56
## 8586  2007                                                    Comedy     56
## 8587  2007                                     Action|Crime|Thriller     56
## 8588  2007                                                    Comedy     56
## 8589  2007                                               Documentary     56
## 8590  2007                                         Drama|Romance|War     56
## 8591  2007                                      Crime|Drama|Thriller     56
## 8592  2007                                    Action|Adventure|Drama     56
## 8593  2007                                      Crime|Drama|Thriller     56
## 8594  2007                                      Crime|Drama|Thriller     56
## 8595  2007                                               Crime|Drama     56
## 8596  2007                        Action|Horror|Sci-Fi|Thriller|IMAX     56
## 8597  2007                                              Comedy|Drama     56
## 8598  2007                                      Comedy|Drama|Romance     56
## 8599  2007                             Drama|Horror|Musical|Thriller     56
## 8600  2007                                             Drama|Western     56
## 8601  2008                                                    Comedy     56
## 8602  2008                               Comedy|Crime|Drama|Thriller     56
## 8603  2008                    Action|Adventure|Drama|Sci-Fi|Thriller     56
## 8604  2008                                   Action|Crime|Drama|IMAX     56
## 8605  2008                                              Comedy|Drama     56
## 8606  2008                                   Action|Adventure|Sci-Fi     56
## 8607  2008                               Action|Crime|Drama|Thriller     56
## 8608  2009                 Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     56
## 8609  2008                                                    Comedy     56
## 8610  2008                                      Comedy|Drama|Romance     56
## 8611  2008                                       Action|Comedy|Crime     56
## 8612  2008                               Action|Adventure|Comedy|War     56
## 8613  2008                                       Crime|Drama|Romance     56
## 8614  2008                                 Action|Adventure|Thriller     56
## 8615  2008                                                    Comedy     56
## 8616  2008                                                    Comedy     56
## 8617  2008                                        Drama|Thriller|War     56
## 8618  2008                                               Documentary     56
## 8619  2009                                                    Comedy     56
## 8620  2009                                              Comedy|Drama     56
## 8621  2009                                                    Comedy     56
## 8622  2009                                          Action|Drama|War     56
## 8623  2009                        Adventure|Animation|Children|Drama     56
## 8624  2009                                              Comedy|Crime     56
## 8625  2009                                      Crime|Drama|Thriller     56
## 8626  2009                    Adventure|Fantasy|Mystery|Romance|IMAX     56
## 8627  2009                                   Mystery|Sci-Fi|Thriller     56
## 8628  2009                                      Comedy|Drama|Romance     56
## 8629  2009                              Action|Comedy|Drama|Thriller     56
## 8630  2009                           Animation|Children|Fantasy|IMAX     56
## 8631  2009                                              Comedy|Drama     56
## 8632  2009                                      Action|Comedy|Horror     56
## 8633  2009                                             Drama|Romance     56
## 8634  2009                                             Drama|Romance     56
## 8635  2009                                             Action|Comedy     56
## 8636  2009                 Adventure|Animation|Children|Comedy|Crime     56
## 8637  2009                                                     Drama     56
## 8638  2009                                             Drama|Romance     56
## 8639  2009                                      Comedy|Drama|Romance     56
## 8640  2009                                                     Drama     56
## 8641  2003                                      Comedy|Drama|Romance     56
## 8642  2010                                              Comedy|Drama     56
## 8643  2009                                             Drama|Mystery     56
## 8644  2010                                             Action|Comedy     56
## 8645  2010          Adventure|Animation|Children|Comedy|Fantasy|IMAX     56
## 8646  2010                           Animation|Children|Comedy|Crime     56
## 8647  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     56
## 8648  2010                                             Action|Comedy     56
## 8649  2010                                         Crime|Documentary     56
## 8650  2010                     Action|Comedy|Fantasy|Musical|Romance     56
## 8651  2010                                                     Drama     56
## 8652  2010                                            Comedy|Romance     56
## 8653  2010                                 Action|Comedy|Documentary     56
## 8654  2010                                  Adventure|Drama|Thriller     56
## 8655  2010                                            Drama|Thriller     56
## 8656  2010                             Action|Adventure|Fantasy|IMAX     56
## 8657  2010                                     Drama|Musical|Romance     56
## 8658  2010                                              Comedy|Drama     56
## 8659  2010                                                     Drama     56
## 8660  2011                      Action|Drama|Mystery|Sci-Fi|Thriller     56
## 8661  2011                                             Drama|Romance     56
## 8662  2010                                              Comedy|Drama     56
## 8663  2011                                                     Drama     56
## 8664  2011                                                    Comedy     56
## 8665  2011                      Action|Adventure|Sci-Fi|Thriller|War     56
## 8666  2010                                                     Drama     56
## 8667  2011                                      Comedy|Drama|Romance     56
## 8668  2011                                              Comedy|Crime     56
## 8669  2011               Action|Adventure|Drama|Fantasy|Mystery|IMAX     56
## 8670  2011                              Action|Drama|Sci-Fi|Thriller     56
## 8671  2011                                                     Drama     56
## 8672  2011                                       Action|Comedy|Crime     56
## 8673  2011                                                     Drama     56
## 8674  2011                                                     Drama     56
## 8675  2011                                            Drama|Thriller     56
## 8676  2011                                            Drama|Thriller     56
## 8677  2011                                     Action|Crime|Thriller     56
## 8678  2011                                                     Drama     56
## 8679  2011                                             Drama|Romance     56
## 8680  2012                               Action|Adventure|Crime|IMAX     56
## 8681  2012                                    Action|Sci-Fi|Thriller     56
## 8682  2012                                                    Comedy     56
## 8683  2011                                                    Comedy     56
## 8684  2011                                              Comedy|Drama     56
## 8685  2012                                       Action|Comedy|Crime     56
## 8686  2012                                              Comedy|Drama     56
## 8687  2011                                               Documentary     56
## 8688  2011                                        Comedy|Crime|Drama     56
## 8689  2012                                      Comedy|Drama|Romance     56
## 8690  2012                                              Comedy|Drama     56
## 8691  2012                                            Comedy|Fantasy     56
## 8692  2012                              Action|Adventure|Sci-Fi|IMAX     56
## 8693  2012                            Action|Adventure|Thriller|IMAX     56
## 8694  2012                                                    Comedy     56
## 8695  2012                                              Comedy|Drama     56
## 8696  2012                                                     Drama     56
## 8697  2012                                                     Drama     56
## 8698  2012                                             Drama|Romance     56
## 8699  2012                                              Comedy|Crime     56
## 8700  2012                                             Action|Comedy     56
## 8701  2012                                               Documentary     56
## 8702  2012                                              Comedy|Drama     56
## 8703  2012                                                     Drama     56
## 8704  2012                                      Adventure|Drama|IMAX     56
## 8705  2012                                      Action|Drama|Western     56
## 8706  2012                                                     Drama     56
## 8707  2012                     Animation|Comedy|Drama|Fantasy|Sci-Fi     56
## 8708  2013                                   Romance|Sci-Fi|Thriller     56
## 8709  2012                                                     Drama     56
## 8710  2012                                               Documentary     56
## 8711  2013                                  Action|Adventure|Romance     56
## 8712  2013                                             Action|Comedy     56
## 8713  2012                                              Comedy|Drama     56
## 8714  2013                                              Comedy|Drama     56
## 8715  2013                                Adventure|Animation|Comedy     56
## 8716  2012                                                     Drama     56
## 8717  2013                                                     Drama     56
## 8718  2013                                           Horror|Thriller     56
## 8719  2013                                                     Drama     56
## 8720  2013                                           Adventure|Drama     56
## 8721  2013                                               Documentary     56
## 8722  2010                                            Comedy|Romance     56
## 8723  2013                                                     Drama     56
## 8724  2013                                                    Comedy     56
## 8725  2013                                                     Drama     56
## 8726  2013                                                     Drama     56
## 8727  2013                                               Documentary     56
## 8728  2013                                              Comedy|Drama     56
## 8729  2013                                               Crime|Drama     56
## 8730  2013                                      Drama|Romance|Sci-Fi     56
## 8731  2013                                              Comedy|Drama     56
## 8732  2013                                                    Comedy     56
## 8733  2013                                                     Drama     56
## 8734  2014                                             Action|Comedy     56
## 8735  2014        Action|Adventure|Animation|Children|Comedy|Fantasy     56
## 8736  2013                                     Children|Comedy|Drama     56
## 8737  2014                                   Action|Adventure|Sci-Fi     56
## 8738  2014                                                    Comedy     56
## 8739  2014                                       Action|Comedy|Crime     56
## 8740  2014                                              Comedy|Drama     56
## 8741  2014                                      Comedy|Drama|Mystery     56
## 8742  2014                                     Drama|Horror|Thriller     56
## 8743  2014                                                     Drama     56
## 8744  2014                                            Drama|Thriller     56
## 8745  2014                                   Action|Adventure|Sci-Fi     56
## 8746  2014                                              Comedy|Drama     56
## 8747  2014                                              Comedy|Crime     56
## 8748  2014                                                     Drama     56
## 8749  2014                                      Comedy|Drama|Romance     56
## 8750  2014                                                  Thriller     56
## 8751  2014                                                     Drama     56
## 8752  2014                                                     Drama     56
## 8753  2014                                               Documentary     56
## 8754  2014                                      Crime|Drama|Thriller     56
## 8755  2014                                        Drama|Thriller|War     56
## 8756  2015                          Action|Adventure|Sci-Fi|Thriller     56
## 8757  2015                      Action|Adventure|Fantasy|Sci-Fi|IMAX     56
## 8758  2015                                             Drama|Romance     56
## 8759  2015                                               Documentary     56
## 8760  2015                                              Comedy|Drama     56
## 8761  2015                                                    Comedy     56
## 8762  2015                                                   Western     56
## 8763  2015                                        (no genres listed)     56
## 8764  2014                                                     Drama     56
## 8765  2015                                     Comedy|Romance|Sci-Fi     56
## 8766  2015                              Action|Comedy|Fantasy|Sci-Fi     56
## 8767  2015         Adventure|Animation|Children|Comedy|Drama|Fantasy     56
## 8768  2016                           Action|Adventure|Fantasy|Sci-Fi     56
## 8769  2014                                               Documentary     56
## 8770  2015                                           Adventure|Drama     56
## 8771  2015                                               Documentary     56
## 8772  2015                                                     Drama     56
## 8773  2015                                                 Drama|War     56
## 8774  2015                                                    Comedy     56
## 8775  2015                                                  Thriller     56
## 8776  2015                                                     Drama     56
## 8777  2015                                                     Drama     56
## 8778  2015                                          Animation|Comedy     56
## 8779  2016                Action|Adventure|Animation|Children|Comedy     56
## 8780  2016                                                     Drama     56
## 8781  2016                                                    Comedy     56
## 8782  2013                                        (no genres listed)     56
## 8783  1995                                      Comedy|Drama|Romance     57
## 8784  1995                                             Drama|Romance     57
## 8785  1995                                     Comedy|Crime|Thriller     57
## 8786  1995                                            Children|Drama     57
## 8787  1995                                          Action|Drama|War     57
## 8788  1995                                  Action|Drama|Romance|War     57
## 8789  1995                                    Action|Romance|Western     57
## 8790  1995                          Crime|Film-Noir|Mystery|Thriller     57
## 8791  1977                                   Action|Adventure|Sci-Fi     57
## 8792  1992                                     Drama|Fantasy|Romance     57
## 8793  1994                               Action|Crime|Drama|Thriller     57
## 8794  1994                                               Crime|Drama     57
## 8795  1993                                                     Drama     57
## 8796  1994                                    Drama|Mystery|Thriller     57
## 8797  1994                                  Comedy|Drama|Romance|War     57
## 8798  1994                                            Comedy|Romance     57
## 8799  1994                  Action|Adventure|Comedy|Romance|Thriller     57
## 8800  1993                                            Comedy|Romance     57
## 8801  1995                                            Comedy|Romance     57
## 8802  1993                                            Comedy|Romance     57
## 8803  1993                                             Drama|Romance     57
## 8804  1993                                                 Drama|War     57
## 8805  1993                                             Drama|Romance     57
## 8806  1993                                                     Drama     57
## 8807  1993                                            Crime|Thriller     57
## 8808  1990                                   Adventure|Drama|Western     57
## 8809  1989                                     Action|Crime|Thriller     57
## 8810  1996                               Comedy|Crime|Drama|Thriller     57
## 8811  1996                                              Comedy|Drama     57
## 8812  1996                         Action|Adventure|Mystery|Thriller     57
## 8813  1995                                                    Comedy     57
## 8814  1996                                     Drama|Mystery|Western     57
## 8815  1972                                               Crime|Drama     57
## 8816  1964                              Comedy|Drama|Musical|Romance     57
## 8817  1982                                                    Comedy     57
## 8818  1975                                   Children|Comedy|Western     57
## 8819  1975                                Adventure|Children|Fantasy     57
## 8820  1964                           Children|Comedy|Fantasy|Musical     57
## 8821  1965                                           Musical|Romance     57
## 8822  1988                                     Action|Crime|Thriller     57
## 8823  1971                           Children|Comedy|Fantasy|Musical     57
## 8824  1988                                              Comedy|Crime     57
## 8825  1979                                                    Comedy     57
## 8826  1982                                    Comedy|Musical|Romance     57
## 8827  1987                                     Drama|Musical|Romance     57
## 8828  1989                                                    Comedy     57
## 8829  1992                                    Crime|Mystery|Thriller     57
## 8830  1992                                    Drama|Romance|Thriller     57
## 8831  1982                                     Children|Drama|Sci-Fi     57
## 8832  1986                                            Action|Romance     57
## 8833  1981                                                     Drama     57
## 8834  1975                                              Comedy|Crime     57
## 8835  1989                          Action|Adventure|Sci-Fi|Thriller     57
## 8836  1980                                                    Horror     57
## 8837  1981                          Action|Adventure|Sci-Fi|Thriller     57
## 8838  1980                                            Horror|Mystery     57
## 8839  1980                                                    Comedy     57
## 8840  1975                                  Adventure|Comedy|Fantasy     57
## 8841  1993                           Animation|Children|Comedy|Crime     57
## 8842  1989                                                     Drama     57
## 8843  1989                                                     Drama     57
## 8844  1975                                                     Drama     57
## 8845  1978                                                    Comedy     57
## 8846  1980                                   Action|Adventure|Sci-Fi     57
## 8847  1987                   Action|Adventure|Comedy|Fantasy|Romance     57
## 8848  1981                                          Action|Adventure     57
## 8849  1986                            Action|Adventure|Horror|Sci-Fi     57
## 8850  1979                                          Action|Drama|War     57
## 8851  1979                                             Horror|Sci-Fi     57
## 8852  1980                                     Action|Comedy|Musical     57
## 8853  1974                                               Crime|Drama     57
## 8854  1987                                                 Drama|War     57
## 8855  1989                                  Action|Drama|Romance|War     57
## 8856  1984                                                     Drama     57
## 8857  1984                                               Crime|Drama     57
## 8858  1973                                              Comedy|Crime     57
## 8859  1984                                    Action|Sci-Fi|Thriller     57
## 8860  1989                                                 Drama|War     57
## 8861  1990                                              Comedy|Drama     57
## 8862  1989                                                     Drama     57
## 8863  1974                          Crime|Film-Noir|Mystery|Thriller     57
## 8864  1980                                                    Horror     57
## 8865  1986                                           Adventure|Drama     57
## 8866  1978                                                 Drama|War     57
## 8867  1993                                    Comedy|Fantasy|Romance     57
## 8868  1985                                   Adventure|Comedy|Sci-Fi     57
## 8869  1970                                                 Drama|War     57
## 8870  1986                                  Action|Adventure|Fantasy     57
## 8871  1974                                            Comedy|Fantasy     57
## 8872  1980                                             Drama|Romance     57
## 8873  1984                                                    Comedy     57
## 8874  1989                                          Action|Adventure     57
## 8875  1986                                             Drama|Romance     57
## 8876  1984                                                 Drama|War     57
## 8877  1989                                    Children|Drama|Fantasy     57
## 8878  1989                                            Comedy|Romance     57
## 8879  1981                                    Comedy|Horror|Thriller     57
## 8880  1983                                                    Horror     57
## 8881  1982                                                    Horror     57
## 8882  1979                             Drama|Horror|Mystery|Thriller     57
## 8883  1976                             Drama|Fantasy|Horror|Thriller     57
## 8884  1982                                      Drama|Fantasy|Horror     57
## 8885  1984                                           Horror|Thriller     57
## 8886  1976                                   Horror|Mystery|Thriller     57
## 8887  1996                                             Drama|Romance     57
## 8888  1996                                                     Drama     57
## 8889  1988                                     Action|Comedy|Western     57
## 8890  1978                                    Comedy|Musical|Romance     57
## 8891  1975                                             Action|Horror     57
## 8892  1996                                             Drama|Romance     57
## 8893  1987                                                    Comedy     57
## 8894  1992                                Action|Romance|War|Western     57
## 8895  1997                              Crime|Drama|Mystery|Thriller     57
## 8896  1997                                          Mystery|Thriller     57
## 8897  1997                                              Comedy|Drama     57
## 8898  1982                                  Action|Adventure|Fantasy     57
## 8899  1997                               Action|Crime|Drama|Thriller     57
## 8900  1997                            Drama|Mystery|Romance|Thriller     57
## 8901  1997                          Crime|Film-Noir|Mystery|Thriller     57
## 8902  1997                                    Drama|Mystery|Thriller     57
## 8903  1997                                              Comedy|Drama     57
## 8904  1997                                    Drama|Mystery|Thriller     57
## 8905  1981                                                Comedy|War     57
## 8906  1985                                    Drama|Romance|Thriller     57
## 8907  1997                                             Drama|Romance     57
## 8908  1997                                                     Drama     57
## 8909  1997                                             Drama|Romance     57
## 8910  1998                                              Comedy|Crime     57
## 8911  1998                              Crime|Drama|Fantasy|Thriller     57
## 8912  1997                                      Comedy|Drama|Romance     57
## 8913  1998                                                  Thriller     57
## 8914  1998                      Action|Crime|Mystery|Sci-Fi|Thriller     57
## 8915  1998                                              Comedy|Drama     57
## 8916  1998                            Action|Romance|Sci-Fi|Thriller     57
## 8917  1998                              Action|Comedy|Crime|Thriller     57
## 8918  1998                                            Comedy|Romance     57
## 8919  1961                                     Drama|Musical|Romance     57
## 8920  1968                                             Drama|Musical     57
## 8921  1971                                     Action|Crime|Thriller     57
## 8922  1976                                                     Drama     57
## 8923  1979                                                     Drama     57
## 8924  1980                                                     Drama     57
## 8925  1981                                                     Drama     57
## 8926  1983                                              Comedy|Drama     57
## 8927  1988                                                     Drama     57
## 8928  1989                                                     Drama     57
## 8929  1971                                             Drama|Mystery     57
## 8930  1986                                 Adventure|Fantasy|Musical     57
## 8931  1985                                              Comedy|Drama     57
## 8932  1980                                   Horror|Mystery|Thriller     57
## 8933  1981                                                    Horror     57
## 8934  1984                                                    Horror     57
## 8935  1985                                                    Horror     57
## 8936  1986                                                    Horror     57
## 8937  1989                                                    Horror     57
## 8938  1978                                                    Horror     57
## 8939  1981                                                    Horror     57
## 8940  1982                                                    Horror     57
## 8941  1980                                                    Horror     57
## 8942  1982                                           Horror|Thriller     57
## 8943  1986                                           Horror|Thriller     57
## 8944  1988                                           Horror|Thriller     57
## 8945  1973                                            Horror|Mystery     57
## 8946  1987                                 Action|Comedy|Crime|Drama     57
## 8947  1989                                 Action|Comedy|Crime|Drama     57
## 8948  1984                                             Comedy|Horror     57
## 8949  1985                  Action|Adventure|Children|Comedy|Fantasy     57
## 8950  1998                                     Action|Comedy|Romance     57
## 8951  1973                             Drama|Mystery|Sci-Fi|Thriller     57
## 8952  1972                                    Action|Adventure|Drama     57
## 8953  1988                                             Drama|Romance     57
## 8954  1998                                              Comedy|Crime     57
## 8955  1998                                          Action|Drama|War     57
## 8956  1977                                 Adventure|Children|Comedy     57
## 8957  1981                                            Comedy|Fantasy     57
## 8958  1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     57
## 8959  1983                                     Drama|Romance|Western     57
## 8960  1980                                  Adventure|Comedy|Musical     57
## 8961  1983                   Children|Drama|Fantasy|Mystery|Thriller     57
## 8962  1984                                    Comedy|Fantasy|Romance     57
## 8963  1979                                                    Comedy     57
## 8964  1982                                     Comedy|Crime|Thriller     57
## 8965  1983                                                    Comedy     57
## 8966  1983                                                     Drama     57
## 8967  1984                                  Action|Adventure|Fantasy     57
## 8968  1983                                                  Thriller     57
## 8969  1983                                           Horror|Thriller     57
## 8970  1984                                           Horror|Thriller     57
## 8971  1998                                      Comedy|Drama|Romance     57
## 8972  1980                                       Crime|Drama|Romance     57
## 8973  1985                                 Adventure|Fantasy|Romance     57
## 8974  1984                                            Comedy|Romance     57
## 8975  1998                                          Action|Adventure     57
## 8976  1984                                Adventure|Children|Fantasy     57
## 8977  1978                                             Comedy|Horror     57
## 8978  1988                                            Comedy|Fantasy     57
## 8979  1972                                                  Thriller     57
## 8980  1988                                  Action|Adventure|Fantasy     57
## 8981  1987                                        Action|Crime|Drama     57
## 8982  1980                                                     Drama     57
## 8983  1988                                      Comedy|Drama|Romance     57
## 8984  1992                                      Crime|Drama|Thriller     57
## 8985  1982                             Action|Horror|Sci-Fi|Thriller     57
## 8986  1990                                     Drama|Fantasy|Romance     57
## 8987  1968                                                    Comedy     57
## 8988  1981                                            Comedy|Musical     57
## 8989  1992                                                    Comedy     57
## 8990  1980                                                     Drama     57
## 8991  1970                                          Comedy|Drama|War     57
## 8992  1995                                      Comedy|Drama|Romance     58
## 8993  1995                                                    Comedy     58
## 8994  1995                                      Adventure|Drama|IMAX     58
## 8995  1994                                                    Comedy     58
## 8996  1993                                   Children|Comedy|Fantasy     58
## 8997  1993                                           Comedy|Thriller     58
## 8998  1970                                        Animation|Children     58
## 8999  1996                                    Action|Sci-Fi|Thriller     58
## 9000  1960                                      Comedy|Drama|Romance     58
## 9001  1968                                    Adventure|Drama|Sci-Fi     58
## 9002  1938                                  Action|Adventure|Romance     58
## 9003  1956                                          Adventure|Comedy     58
## 9004  1935                                    Drama|Mystery|Thriller     58
## 9005  1951                              Adventure|Comedy|Romance|War     58
## 9006  1996                                           Crime|Film-Noir     58
## 9007  1975                                   Children|Comedy|Western     58
## 9008  1954                                    Adventure|Drama|Sci-Fi     58
## 9009  1994                                           Children|Comedy     58
## 9010  1989                          Action|Adventure|Sci-Fi|Thriller     58
## 9011  1986                            Action|Adventure|Horror|Sci-Fi     58
## 9012  1957                                                     Drama     58
## 9013  1979                                             Horror|Sci-Fi     58
## 9014  1984                                                     Drama     58
## 9015  1977                                            Comedy|Romance     58
## 9016  1944                                   Comedy|Mystery|Thriller     58
## 9017  1992                             Action|Horror|Sci-Fi|Thriller     58
## 9018  1981                                    Comedy|Horror|Thriller     58
## 9019  1996                                 Adventure|Children|Comedy     58
## 9020  1997                                          Mystery|Thriller     58
## 9021  1997                                 Action|Adventure|Thriller     58
## 9022  1997                                   Action|Adventure|Comedy     58
## 9023  1997                                           Action|Thriller     58
## 9024  1997                                      Action|Horror|Sci-Fi     58
## 9025  1997                                      Comedy|Drama|Romance     58
## 9026  1998                            Action|Romance|Sci-Fi|Thriller     58
## 9027  1930                                          Action|Drama|War     58
## 9028  1961                                   Children|Comedy|Fantasy     58
## 9029  1979                                   Children|Comedy|Western     58
## 9030  1989                                                    Comedy     58
## 9031  1961                              Adventure|Animation|Children     58
## 9032  1991                                   Children|Comedy|Fantasy     58
## 9033  1987                                          Adventure|Comedy     58
## 9034  1998                                          Action|Adventure     58
## 9035  1978                                             Comedy|Horror     58
## 9036  1966                                                  Thriller     58
## 9037  1944                                                 Drama|War     58
## 9038  1984                                                    Sci-Fi     58
## 9039  1986                                   Action|Mystery|Thriller     58
## 9040  1999                                    Drama|Mystery|Thriller     58
## 9041  1970                                                     Drama     58
## 9042  1977                                                     Drama     58
## 9043  1988                                     Drama|Horror|Thriller     58
## 9044  1999                                   Action|Adventure|Comedy     58
## 9045  1971                                                    Comedy     58
## 9046  1980                                                    Comedy     58
## 9047  1982                                                    Comedy     58
## 9048  1992                                                    Action     58
## 9049  1999                                    Horror|Sci-Fi|Thriller     58
## 9050  1986                           Adventure|Children|Comedy|Drama     58
## 9051  1984                                   Adventure|Comedy|Sci-Fi     58
## 9052  1958                                  Action|Adventure|Fantasy     58
## 9053  1985                                             Drama|Mystery     58
## 9054  1979                                            Drama|Thriller     58
## 9055  1978                                                    Comedy     58
## 9056  2000                                            Drama|Thriller     58
## 9057  1981                                            Comedy|Romance     58
## 9058  2000                             Crime|Horror|Mystery|Thriller     58
## 9059  2000                                       Action|Thriller|War     58
## 9060  1980                                                     Drama     58
## 9061  1974                                        Adventure|Children     58
## 9062  1988                               Crime|Drama|Sci-Fi|Thriller     58
## 9063  1987                         Film-Noir|Horror|Mystery|Thriller     58
## 9064  1988                              Action|Comedy|Crime|Thriller     58
## 9065  1995                                      Comedy|Drama|Romance     59
## 9066  1995                                   Mystery|Sci-Fi|Thriller     59
## 9067  1995                                    Crime|Mystery|Thriller     59
## 9068  1976                                      Crime|Drama|Thriller     59
## 9069  1995                                      Adventure|Drama|IMAX     59
## 9070  1994                                                    Comedy     59
## 9071  1994                                          Adventure|Comedy     59
## 9072  1995                              Action|Drama|Sci-Fi|Thriller     59
## 9073  1994                               Comedy|Crime|Drama|Thriller     59
## 9074  1994                                                     Drama     59
## 9075  1994                                               Crime|Drama     59
## 9076  1994                               Action|Comedy|Crime|Fantasy     59
## 9077  1994                  Action|Adventure|Comedy|Romance|Thriller     59
## 9078  1993                                   Children|Comedy|Fantasy     59
## 9079  1993                                                     Drama     59
## 9080  1993                          Action|Adventure|Sci-Fi|Thriller     59
## 9081  1993                                                 Drama|War     59
## 9082  1982                                    Action|Sci-Fi|Thriller     59
## 9083  1990                                           Children|Comedy     59
## 9084  1990                                   Adventure|Drama|Western     59
## 9085  1991                                     Crime|Horror|Thriller     59
## 9086  1996                                Adventure|Animation|Comedy     59
## 9087  1995                                 Animation|Children|Comedy     59
## 9088  1972                                               Crime|Drama     59
## 9089  1942                                             Drama|Romance     59
## 9090  1939                        Adventure|Children|Fantasy|Musical     59
## 9091  1975                                  Adventure|Comedy|Fantasy     59
## 9092  1993                           Animation|Children|Comedy|Crime     59
## 9093  1975                                                     Drama     59
## 9094  1990                                               Crime|Drama     59
## 9095  1974                                               Crime|Drama     59
## 9096  1996                          Action|Adventure|Sci-Fi|Thriller     59
## 9097  1997                                                     Drama     59
## 9098  1997                                 Action|Adventure|Thriller     59
## 9099  1998                                            Comedy|Romance     59
## 9100  1988                                                     Drama     59
## 9101  1985                                              Comedy|Drama     59
## 9102  1998                                          Action|Drama|War     59
## 9103  1982                                   Action|Adventure|Sci-Fi     59
## 9104  1984                                Adventure|Children|Fantasy     59
## 9105  1998                                    Action|Horror|Thriller     59
## 9106  1988                                  Action|Adventure|Fantasy     59
## 9107  1987                                        Action|Crime|Drama     59
## 9108  1992                                                    Comedy     59
## 9109  1998                                               Crime|Drama     59
## 9110  1998                                      Comedy|Drama|Romance     59
## 9111  1986                                          Adventure|Comedy     59
## 9112  1998                                     Comedy|Crime|Thriller     59
## 9113  1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     59
## 9114  1978                                   Action|Adventure|Sci-Fi     59
## 9115  1999                                            Comedy|Romance     59
## 9116  1999                                   Action|Adventure|Comedy     59
## 9117  1998                                              Action|Crime     59
## 9118  1984                                      Action|Comedy|Sci-Fi     59
## 9119  1999                                            Action|Mystery     59
## 9120  1988                              Comedy|Drama|Fantasy|Romance     59
## 9121  1999                                             Drama|Romance     59
## 9122  1999                               Action|Crime|Drama|Thriller     59
## 9123  1999                                      Comedy|Drama|Fantasy     59
## 9124  1992                                                    Comedy     59
## 9125  2000                                    Action|Adventure|Drama     59
## 9126  2000                                 Action|Adventure|Thriller     59
## 9127  2000                                 Animation|Children|Comedy     59
## 9128  2000                                                    Comedy     59
## 9129  2000                                                    Comedy     59
## 9130  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     59
## 9131  2001                                         Adventure|Fantasy     59
## 9132  1970                                          Comedy|Drama|War     59
## 9133  2002                          Action|Adventure|Sci-Fi|Thriller     59
## 9134  2002                                         Adventure|Fantasy     59
## 9135  1976                                            Drama|Thriller     59
## 9136  1985                               Action|Crime|Drama|Thriller     59
## 9137  2003                            Action|Adventure|Drama|Fantasy     59
## 9138  2004                                      Drama|Romance|Sci-Fi     59
## 9139  2004                Action|Adventure|Animation|Children|Comedy     59
## 9140  1990                                                     Drama     59
## 9141  2005                                         Action|Crime|IMAX     59
## 9142  2005                                               Documentary     59
## 9143  1995                                               Crime|Drama     60
## 9144  1995                                     Comedy|Crime|Thriller     60
## 9145  1976                                      Crime|Drama|Thriller     60
## 9146  1995                                    Action|Romance|Western     60
## 9147  1995                                       Action|Crime|Sci-Fi     60
## 9148  1994                                              Comedy|Drama     60
## 9149  1993                                         Action|Comedy|War     60
## 9150  1982                                    Action|Sci-Fi|Thriller     60
## 9151  1996                               Comedy|Crime|Drama|Thriller     60
## 9152  1996                                  Action|Adventure|Fantasy     60
## 9153  1996                                Adventure|Animation|Comedy     60
## 9154  1995                                 Animation|Children|Comedy     60
## 9155  1972                                               Crime|Drama     60
## 9156  1979                                                    Comedy     60
## 9157  1986                                                 Drama|War     60
## 9158  1979                                          Action|Drama|War     60
## 9159  1968                                      Action|Drama|Western     60
## 9160  1960                                              Crime|Horror     60
## 9161  1974                                               Crime|Drama     60
## 9162  1978                                    Comedy|Musical|Romance     60
## 9163  1997                                                    Comedy     60
## 9164  1997                                     Drama|Sci-Fi|Thriller     60
## 9165  1997                                                     Drama     60
## 9166  1998                                              Comedy|Crime     60
## 9167  1990                           Adventure|Comedy|Sci-Fi|Western     60
## 9168  1984                                  Action|Adventure|Fantasy     60
## 9169  1988                                            Comedy|Fantasy     60
## 9170  1997                                  Comedy|Drama|Romance|War     60
## 9171  1978                                   Action|Adventure|Sci-Fi     60
## 9172  1999                                     Drama|Horror|Thriller     60
## 9173  1988                              Comedy|Drama|Fantasy|Romance     60
## 9174  1985                                      Comedy|Horror|Sci-Fi     60
## 9175  1999                                                     Drama     60
## 9176  1985                                          Adventure|Comedy     60
## 9177  1976                                           Action|Thriller     60
## 9178  2000                                                     Drama     60
## 9179  2001                                            Comedy|Romance     60
## 9180  1970                                          Comedy|Drama|War     60
## 9181  2001                               Adventure|Animation|Fantasy     60
## 9182  1988                                       Animation|Drama|War     60
## 9183  2002                                              Comedy|Drama     60
## 9184  2002                                         Adventure|Fantasy     60
## 9185  2002                                      Crime|Drama|Thriller     60
## 9186  2002                                                 Drama|War     60
## 9187  1986        Action|Adventure|Animation|Children|Fantasy|Sci-Fi     60
## 9188  2002                                      Action|Horror|Sci-Fi     60
## 9189  2003                                              Comedy|Crime     60
## 9190  2004                                      Drama|Romance|Sci-Fi     60
## 9191  1978                                       Action|Drama|Horror     60
## 9192  2004                                             Drama|Romance     60
## 9193  2004                                             Drama|Romance     60
## 9194  2003                                          Mystery|Thriller     60
## 9195  2003                                           Action|Thriller     60
## 9196  2004                                                     Drama     60
## 9197  2004                                                 Drama|War     60
## 9198  1995                                Adventure|Children|Fantasy     61
## 9199  1995                                            Children|Drama     61
## 9200  1995                  Animation|Children|Drama|Musical|Romance     61
## 9201  1995                                    Crime|Mystery|Thriller     61
## 9202  1996                                                    Comedy     61
## 9203  1995                                        Adventure|Children     61
## 9204  1994                                          Adventure|Comedy     61
## 9205  1994                                      Comedy|Drama|Fantasy     61
## 9206  1994           Adventure|Animation|Children|Drama|Musical|IMAX     61
## 9207  1993                                              Comedy|Drama     61
## 9208  1993                        Animation|Children|Fantasy|Musical     61
## 9209  1995                                                    Comedy     61
## 9210  1990                                           Children|Comedy     61
## 9211  1990                     Comedy|Drama|Fantasy|Romance|Thriller     61
## 9212  1992               Adventure|Animation|Children|Comedy|Musical     61
## 9213  1989                                     Action|Crime|Thriller     61
## 9214  1991                                     Crime|Horror|Thriller     61
## 9215  1937                  Animation|Children|Drama|Fantasy|Musical     61
## 9216  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     61
## 9217  1940                        Animation|Children|Fantasy|Musical     61
## 9218  1970                                        Animation|Children     61
## 9219  1996              Adventure|Animation|Children|Fantasy|Musical     61
## 9220  1996        Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     61
## 9221  1996                                           Children|Comedy     61
## 9222  1939                        Adventure|Children|Fantasy|Musical     61
## 9223  1946                            Children|Drama|Fantasy|Romance     61
## 9224  1969                                           Children|Comedy     61
## 9225  1950                Animation|Children|Fantasy|Musical|Romance     61
## 9226  1964                           Children|Comedy|Fantasy|Musical     61
## 9227  1941                          Animation|Children|Drama|Musical     61
## 9228  1965                                           Musical|Romance     61
## 9229  1996                                             Drama|Romance     61
## 9230  1971                           Children|Comedy|Fantasy|Musical     61
## 9231  1982                                     Children|Drama|Sci-Fi     61
## 9232  1975                                  Adventure|Comedy|Fantasy     61
## 9233  1987                   Action|Adventure|Comedy|Fantasy|Romance     61
## 9234  1962                                                     Drama     61
## 9235  1980                                     Action|Comedy|Musical     61
## 9236  1996                                 Adventure|Children|Comedy     61
## 9237  1978                                    Comedy|Musical|Romance     61
## 9238  1997                                      Comedy|Crime|Romance     61
## 9239  1997                                      Action|Comedy|Sci-Fi     61
## 9240  1998                                            Comedy|Romance     61
## 9241  1998 Adventure|Animation|Children|Comedy|Drama|Musical|Romance     61
## 9242  1976                                                     Drama     61
## 9243  1985                                              Comedy|Drama     61
## 9244  1942                                  Animation|Children|Drama     61
## 9245  1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     61
## 9246  1967                         Animation|Children|Comedy|Musical     61
## 9247  1955                         Animation|Children|Comedy|Romance     61
## 9248  1989                 Animation|Children|Comedy|Musical|Romance     61
## 9249  1961                              Adventure|Animation|Children     61
## 9250  1953                        Animation|Children|Fantasy|Musical     61
## 9251  1989                   Animation|Children|Comedy|Drama|Fantasy     61
## 9252  1984                                            Comedy|Romance     61
## 9253  1984                                Adventure|Children|Fantasy     61
## 9254  1988                                            Comedy|Fantasy     61
## 9255  1998                              Action|Comedy|Crime|Thriller     61
## 9256  1968                                                    Comedy     61
## 9257  1998                       Adventure|Animation|Children|Comedy     61
## 9258  1998                                  Adventure|Children|Drama     61
## 9259  1999                                              Comedy|Crime     61
## 9260  1999                                    Action|Sci-Fi|Thriller     61
## 9261  1999                                            Comedy|Romance     61
## 9262  1984                                      Action|Comedy|Sci-Fi     61
## 9263  1999                 Adventure|Animation|Children|Drama|Sci-Fi     61
## 9264  1983                                           Children|Comedy     61
## 9265  1968                Adventure|Animation|Comedy|Fantasy|Musical     61
## 9266  1986                                                    Comedy     61
## 9267  1992                                           Children|Comedy     61
## 9268  1999               Adventure|Animation|Children|Comedy|Fantasy     61
## 9269  1968                                             Drama|Romance     61
## 9270  2000                                 Animation|Children|Comedy     61
## 9271  2000                                   Children|Comedy|Fantasy     61
## 9272  2000               Adventure|Animation|Children|Comedy|Fantasy     61
## 9273  2000                                              Comedy|Crime     61
## 9274  2001                          Action|Adventure|Children|Comedy     61
## 9275  2001                                      Comedy|Drama|Romance     61
## 9276  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     61
## 9277  1987                                              Comedy|Crime     61
## 9278  2001                                             Action|Comedy     61
## 9279  2001               Adventure|Animation|Children|Comedy|Fantasy     61
## 9280  2001                                    Comedy|Fantasy|Romance     61
## 9281  2001                                Adventure|Children|Fantasy     61
## 9282  2001                                         Adventure|Fantasy     61
## 9283  2002                                            Comedy|Romance     61
## 9284  2002                          Action|Adventure|Sci-Fi|Thriller     61
## 9285  2002                       Adventure|Animation|Children|Sci-Fi     61
## 9286  2002                                            Comedy|Romance     61
## 9287  2002                                      Action|Comedy|Sci-Fi     61
## 9288  2002                                                    Comedy     61
## 9289  2001                               Adventure|Animation|Fantasy     61
## 9290  1977                                      Comedy|Drama|Romance     61
## 9291  2002                                         Adventure|Fantasy     61
## 9292  2002                                         Adventure|Fantasy     61
## 9293  1988                          Animation|Children|Drama|Fantasy     61
## 9294  2002                                      Comedy|Drama|Romance     61
## 9295  1986        Action|Adventure|Animation|Children|Fantasy|Sci-Fi     61
## 9296  2003                              Comedy|Drama|Fantasy|Romance     61
## 9297  2003                       Adventure|Animation|Children|Comedy     61
## 9298  2003                           Action|Adventure|Comedy|Fantasy     61
## 9299  1942                                         Adventure|Fantasy     61
## 9300  2003                                            Comedy|Musical     61
## 9301  2003                                   Children|Comedy|Fantasy     61
## 9302  1990                              Action|Comedy|Crime|Thriller     61
## 9303  2003                            Action|Adventure|Drama|Fantasy     61
## 9304  2003                                           Children|Comedy     61
## 9305  2004                                                    Comedy     61
## 9306  2004       Adventure|Animation|Children|Comedy|Musical|Romance     61
## 9307  2004                                    Adventure|Fantasy|IMAX     61
## 9308  2004                                                    Comedy     61
## 9309  2004                                  Comedy|Documentary|Drama     61
## 9310  1972                                             Comedy|Sci-Fi     61
## 9311  2004                Action|Adventure|Animation|Children|Comedy     61
## 9312  2004                                                     Drama     61
## 9313  1989                Adventure|Animation|Children|Drama|Fantasy     61
## 9314  2004                         Adventure|Children|Comedy|Fantasy     61
## 9315  2005                    Adventure|Children|Comedy|Fantasy|IMAX     61
## 9316  2005                                   Adventure|Comedy|Sci-Fi     61
## 9317  2005                       Adventure|Animation|Children|Comedy     61
## 9318  2005                                             Drama|Romance     61
## 9319  2005                           Action|Adventure|Comedy|Romance     61
## 9320  2005                                         Action|Crime|IMAX     61
## 9321  2005                                   Action|Adventure|Sci-Fi     61
## 9322  2005                                            Comedy|Romance     61
## 9323  2005                                             Drama|Romance     61
## 9324  2005                           Adventure|Fantasy|Thriller|IMAX     61
## 9325  2005                                Adventure|Children|Fantasy     61
## 9326  2006                               Action|Sci-Fi|Thriller|IMAX     61
## 9327  2006                                              Comedy|Drama     61
## 9328  2006                       Adventure|Animation|Children|Comedy     61
## 9329  2006                                 Animation|Children|Comedy     61
## 9330  2006                                              Comedy|Drama     61
## 9331  2006                                  Action|Adventure|Fantasy     61
## 9332  2006                                    Adventure|Comedy|Drama     61
## 9333  2006                                             Action|Comedy     61
## 9334  2006                                Action|Comedy|Fantasy|IMAX     61
## 9335  2006                              Comedy|Drama|Fantasy|Romance     61
## 9336  2006                             Drama|Fantasy|Mystery|Romance     61
## 9337  2006                                    Drama|Fantasy|Thriller     61
## 9338  2006                             Drama|Mystery|Sci-Fi|Thriller     61
## 9339  2007                                  Animation|Children|Drama     61
## 9340  2007                                      Comedy|Drama|Romance     61
## 9341  2007               Adventure|Animation|Children|Comedy|Fantasy     61
## 9342  2007                           Action|Adventure|Comedy|Fantasy     61
## 9343  2007                                            Crime|Thriller     61
## 9344  2007                                   Action|Adventure|Sci-Fi     61
## 9345  2007                               Action|Sci-Fi|Thriller|IMAX     61
## 9346  2007                              Adventure|Drama|Fantasy|IMAX     61
## 9347  2007                                          Animation|Comedy     61
## 9348  2007                                              Comedy|Drama     61
## 9349  2008                                                    Comedy     61
## 9350  2007                                               Documentary     61
## 9351  2007                                Adventure|Children|Fantasy     61
## 9352  2007                        Action|Horror|Sci-Fi|Thriller|IMAX     61
## 9353  2007                                      Comedy|Drama|Romance     61
## 9354  2007                             Drama|Horror|Musical|Thriller     61
## 9355  2008                           Action|Adventure|Fantasy|Sci-Fi     61
## 9356  2008                               Comedy|Crime|Drama|Thriller     61
## 9357  2008                    Action|Adventure|Drama|Sci-Fi|Thriller     61
## 9358  2008                                   Action|Crime|Drama|IMAX     61
## 9359  2008                                            Comedy|Romance     61
## 9360  2008                                   Action|Adventure|Sci-Fi     61
## 9361  2008               Adventure|Animation|Children|Romance|Sci-Fi     61
## 9362  2008                     Action|Adventure|Comedy|Crime|Fantasy     61
## 9363  2008                                             Action|Comedy     61
## 9364  1976                                      Crime|Drama|Thriller     62
## 9365  1977                                   Action|Adventure|Sci-Fi     62
## 9366  1994                                               Crime|Drama     62
## 9367  1980                                   Action|Adventure|Sci-Fi     62
## 9368  1983                                   Action|Adventure|Sci-Fi     62
## 9369  1985                                   Adventure|Comedy|Sci-Fi     62
## 9370  1998                                          Action|Drama|War     62
## 9371  1986                                                    Comedy     62
## 9372  1999                               Action|Crime|Drama|Thriller     62
## 9373  2000                                          Mystery|Thriller     62
## 9374  2002                                   Action|Mystery|Thriller     62
## 9375  2002                     Action|Adventure|Crime|Drama|Thriller     62
## 9376  2004                                     Action|Crime|Thriller     62
## 9377  2006                    Action|Adventure|Drama|Sci-Fi|Thriller     62
## 9378  2006                 Action|Adventure|Crime|Drama|Thriller|War     62
## 9379  2007                                     Action|Crime|Thriller     62
## 9380  2008                                   Action|Crime|Drama|IMAX     62
## 9381  2009                                          Action|Drama|War     62
## 9382  2009                             Drama|Mystery|Sci-Fi|Thriller     62
## 9383  2008                                 Action|Drama|Thriller|War     62
## 9384  2009                                   Mystery|Sci-Fi|Thriller     62
## 9385  2008                                               Documentary     62
## 9386  2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     62
## 9387  2010                                            Drama|Thriller     62
## 9388  2011                      Action|Drama|Mystery|Sci-Fi|Thriller     62
## 9389  2012                      Action|Adventure|Drama|Thriller|IMAX     62
## 9390  2011                                              Comedy|Drama     62
## 9391  2012                                            Drama|Thriller     62
## 9392  2013                              Action|Adventure|Sci-Fi|IMAX     62
## 9393  2011                                               Documentary     62
## 9394  2013                              Action|Adventure|Sci-Fi|IMAX     62
## 9395  2013                                     Drama|Fantasy|Romance     62
## 9396  2013                                        Action|Sci-Fi|IMAX     62
## 9397  2013                                        Comedy|Crime|Drama     62
## 9398  2013                                      Drama|Romance|Sci-Fi     62
## 9399  2014                                               Sci-Fi|IMAX     62
## 9400  2014                                        Action|Sci-Fi|IMAX     62
## 9401  2014                                              Comedy|Drama     62
## 9402  2014                                                     Drama     62
## 9403  2014                                                     Drama     62
## 9404  2014                                                Action|War     62
## 9405  2014                                           Action|Thriller     62
## 9406  2014                                      Crime|Drama|Thriller     62
## 9407  2015                                     Drama|Sci-Fi|Thriller     62
## 9408  2015                             Action|Adventure|Comedy|Crime     62
## 9409  2015                       Action|Crime|Drama|Mystery|Thriller     62
## 9410  2015                          Action|Adventure|Sci-Fi|Thriller     62
## 9411  2015                                   Action|Adventure|Sci-Fi     62
## 9412  2015                                    Adventure|Drama|Sci-Fi     62
## 9413  2015         Adventure|Animation|Children|Comedy|Drama|Fantasy     62
## 9414  2015                                       Crime|Drama|Mystery     62
## 9415  2015                                                     Drama     62
## 9416  2016                                                    Action     62
## 9417  1995               Adventure|Animation|Children|Comedy|Fantasy     63
## 9418  1995                                      Comedy|Drama|Romance     63
## 9419  1995                                               Crime|Drama     63
## 9420  1994                                      Comedy|Drama|Romance     63
## 9421  1995                             Action|Adventure|Comedy|Crime     63
## 9422  1995                                      Adventure|Drama|IMAX     63
## 9423  1995                                  Action|Drama|Romance|War     63
## 9424  1994                                               Documentary     63
## 9425  1977                                   Action|Adventure|Sci-Fi     63
## 9426  1994                                     Action|Drama|Thriller     63
## 9427  1994                                               Crime|Drama     63
## 9428  1994                  Action|Adventure|Comedy|Romance|Thriller     63
## 9429  1994                                  Adventure|Comedy|Western     63
## 9430  1993                                                  Thriller     63
## 9431  1993                          Action|Adventure|Sci-Fi|Thriller     63
## 9432  1993                                             Drama|Romance     63
## 9433  1993                                                    Comedy     63
## 9434  1989                                     Action|Crime|Thriller     63
## 9435  1991                                     Crime|Horror|Thriller     63
## 9436  1996                                Adventure|Animation|Comedy     63
## 9437  1996                                            Crime|Thriller     63
## 9438  1993                                  Adventure|Children|Drama     63
## 9439  1996                                             Drama|Romance     63
## 9440  1979                                                    Comedy     63
## 9441  1996                                                    Horror     63
## 9442  1975                                                     Drama     63
## 9443  1981                                          Action|Adventure     63
## 9444  1979                                             Horror|Sci-Fi     63
## 9445  1974                                               Crime|Drama     63
## 9446  1977                                            Comedy|Romance     63
## 9447  1973                                              Comedy|Crime     63
## 9448  1986                                           Adventure|Drama     63
## 9449  1969                                            Action|Western     63
## 9450  1989                                            Comedy|Romance     63
## 9451  1996                          Action|Adventure|Sci-Fi|Thriller     63
## 9452  1991                                     Action|Mystery|Sci-Fi     63
## 9453  1982                          Action|Adventure|Sci-Fi|Thriller     63
## 9454  1986                                   Adventure|Comedy|Sci-Fi     63
## 9455  1992                                Action|Romance|War|Western     63
## 9456  1997                                           Children|Comedy     63
## 9457  1997                                                    Comedy     63
## 9458  1997                                   Action|Adventure|Comedy     63
## 9459  1997                               Action|Crime|Drama|Thriller     63
## 9460  1990                                 Action|Adventure|Thriller     63
## 9461  1997                                      Comedy|Drama|Romance     63
## 9462  1997                                              Comedy|Drama     63
## 9463  1998                            Action|Romance|Sci-Fi|Thriller     63
## 9464  1976                                                     Drama     63
## 9465  1988                                                     Drama     63
## 9466  1990                                             Comedy|Horror     63
## 9467  1986                                 Adventure|Children|Sci-Fi     63
## 9468  1978                      Adventure|Animation|Children|Fantasy     63
## 9469  1988                                            Comedy|Fantasy     63
## 9470  1992                                      Crime|Drama|Thriller     63
## 9471  1992                                                    Comedy     63
## 9472  1998                               Action|Drama|Romance|Sci-Fi     63
## 9473  1999                                    Action|Sci-Fi|Thriller     63
## 9474  1999                                   Action|Adventure|Sci-Fi     63
## 9475  1978                                   Action|Adventure|Sci-Fi     63
## 9476  1990                                             Comedy|Horror     63
## 9477  1999                                     Drama|Horror|Thriller     63
## 9478  1999                                      Drama|Horror|Mystery     63
## 9479  1980                                                    Comedy     63
## 9480  1988                              Comedy|Drama|Fantasy|Romance     63
## 9481  1999                                             Drama|Romance     63
## 9482  1986                                                    Comedy     63
## 9483  1999                               Action|Crime|Drama|Thriller     63
## 9484  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     63
## 9485  1999                                      Comedy|Drama|Fantasy     63
## 9486  1999               Adventure|Animation|Children|Comedy|Fantasy     63
## 9487  1999                                    Drama|Mystery|Thriller     63
## 9488  1999                                               Crime|Drama     63
## 9489  2000                                                     Drama     63
## 9490  1977                                    Adventure|Drama|Sci-Fi     63
## 9491  2000                                      Comedy|Drama|Romance     63
## 9492  2000                                    Action|Adventure|Drama     63
## 9493  2000                                 Animation|Children|Comedy     63
## 9494  2000                                   Action|Adventure|Sci-Fi     63
## 9495  1988                               Action|Comedy|Crime|Romance     63
## 9496  1991                                                    Comedy     63
## 9497  2000                                                     Drama     63
## 9498  2000                                      Action|Drama|Romance     63
## 9499  2000                                                     Drama     63
## 9500  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     63
## 9501  2001                                          Action|Adventure     63
## 9502  2001                                     Action|Crime|Thriller     63
## 9503  2001                        Adventure|Animation|Fantasy|Sci-Fi     63
## 9504  1993                                             Action|Comedy     63
## 9505  2001                                         Adventure|Fantasy     63
## 9506  2002                          Action|Adventure|Sci-Fi|Thriller     63
## 9507  2002                                         Adventure|Fantasy     63
## 9508  2003                          Action|Adventure|Sci-Fi|Thriller     63
## 9509  2003                                     Action|Fantasy|Sci-Fi     63
## 9510  2003                                      Comedy|Drama|Romance     63
## 9511  2003                                            Comedy|Musical     63
## 9512  2003                            Action|Adventure|Drama|Fantasy     63
## 9513  2004                                                     Drama     63
## 9514  1995                                          Action|Drama|War     64
## 9515  1995                                      Adventure|Drama|IMAX     64
## 9516  1995                             Action|Adventure|Comedy|Crime     64
## 9517  1995                                     Action|Crime|Thriller     64
## 9518  1995                                      Action|Drama|Romance     64
## 9519  1994                                          Adventure|Comedy     64
## 9520  1994                                              Drama|Horror     64
## 9521  1994                                 Drama|Romance|War|Western     64
## 9522  1994                               Comedy|Crime|Drama|Thriller     64
## 9523  1994                                               Crime|Drama     64
## 9524  1994                                    Adventure|Drama|Sci-Fi     64
## 9525  1994                                                    Comedy     64
## 9526  1994                               Action|Crime|Drama|Thriller     64
## 9527  1994                                  Comedy|Drama|Romance|War     64
## 9528  1994                  Action|Adventure|Comedy|Romance|Thriller     64
## 9529  1993                                 Action|Adventure|Thriller     64
## 9530  1993                                                  Thriller     64
## 9531  1990                                   Adventure|Drama|Western     64
## 9532  1989                                     Action|Crime|Thriller     64
## 9533  1991                                     Crime|Horror|Thriller     64
## 9534  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     64
## 9535  1977                                   Action|Adventure|Sci-Fi     65
## 9536  1972                                               Crime|Drama     65
## 9537  1960                                      Comedy|Drama|Romance     65
## 9538  1939                                         Drama|Romance|War     65
## 9539  1968                                    Adventure|Drama|Sci-Fi     65
## 9540  1973                                             Comedy|Sci-Fi     65
## 9541  1971                                                Comedy|War     65
## 9542  1967                                               Crime|Drama     65
## 9543  1983                                   Action|Adventure|Sci-Fi     65
## 9544  1974                                               Crime|Drama     65
## 9545  1977                                            Comedy|Romance     65
## 9546  1983                                                    Comedy     65
## 9547  1933                                        Comedy|Musical|War     65
## 9548  1985                                   Adventure|Comedy|Sci-Fi     65
## 9549  1974                                            Comedy|Fantasy     65
## 9550  1984                                                    Comedy     65
## 9551  1979                                              Comedy|Drama     65
## 9552  1984                                                 Drama|War     65
## 9553  1969                                            Action|Western     65
## 9554  1969                                                     Drama     65
## 9555  1980                                                     Drama     65
## 9556  1989                                               Documentary     65
## 9557  1992                                        Comedy|Crime|Drama     65
## 9558  1964                                  Adventure|Comedy|Musical     65
## 9559  1972                                  Adventure|Drama|Thriller     65
## 9560  1979                                     Drama|Fantasy|Musical     65
## 9561  1970                                          Comedy|Drama|War     65
## 9562  1995                                     Comedy|Crime|Thriller     66
## 9563  1995                       Crime|Drama|Horror|Mystery|Thriller     66
## 9564  1995                                             Drama|Romance     66
## 9565  1995                                          Action|Drama|War     66
## 9566  1977                                   Action|Adventure|Sci-Fi     66
## 9567  1994                                  Comedy|Drama|Romance|War     66
## 9568  1994                                   Action|Romance|Thriller     66
## 9569  1993                                                  Thriller     66
## 9570  1993                          Action|Adventure|Sci-Fi|Thriller     66
## 9571  1991                                             Action|Sci-Fi     66
## 9572  1991                                     Crime|Horror|Thriller     66
## 9573  1996                               Comedy|Crime|Drama|Thriller     66
## 9574  1996                                            Crime|Thriller     66
## 9575  1972                                               Crime|Drama     66
## 9576  1959                 Action|Adventure|Mystery|Romance|Thriller     66
## 9577  1988                                     Action|Crime|Thriller     66
## 9578  1992                                    Crime|Mystery|Thriller     66
## 9579  1981                          Action|Adventure|Sci-Fi|Thriller     66
## 9580  1990                                     Crime|Drama|Film-Noir     66
## 9581  1980                                   Action|Adventure|Sci-Fi     66
## 9582  1981                                          Action|Adventure     66
## 9583  1986                            Action|Adventure|Horror|Sci-Fi     66
## 9584  1957                                                     Drama     66
## 9585  1984                                    Action|Sci-Fi|Thriller     66
## 9586  1990                             Action|Crime|Romance|Thriller     66
## 9587  1985                                   Adventure|Comedy|Sci-Fi     66
## 9588  1986                                  Action|Adventure|Fantasy     66
## 9589  1997                               Action|Crime|Drama|Thriller     66
## 9590  1997                                      Action|Comedy|Sci-Fi     66
## 9591  1997                                    Drama|Mystery|Thriller     66
## 9592  1998                                              Comedy|Crime     66
## 9593  1976                                                     Drama     66
## 9594  1987                                 Action|Comedy|Crime|Drama     66
## 9595  1998                       Action|Crime|Drama|Mystery|Thriller     66
## 9596  1984                                              Drama|Sci-Fi     66
## 9597  1987                                        Action|Crime|Drama     66
## 9598  1992                                      Crime|Drama|Thriller     66
## 9599  1998                                      Crime|Drama|Thriller     66
## 9600  1986                              Drama|Horror|Sci-Fi|Thriller     66
## 9601  1989                                             Horror|Sci-Fi     66
## 9602  1999                                    Action|Sci-Fi|Thriller     66
## 9603  1999                                            Crime|Thriller     66
## 9604  1999                                             Drama|Romance     66
## 9605  1964                                 Action|Adventure|Thriller     66
## 9606  1987                        Action|Crime|Drama|Sci-Fi|Thriller     66
## 9607  1987                                    Action|Sci-Fi|Thriller     66
## 9608  1969                         Action|Adventure|Romance|Thriller     66
## 9609  1986                                     Action|Crime|Thriller     66
## 9610  1971                                              Action|Drama     66
## 9611  1995               Adventure|Animation|Children|Comedy|Fantasy     67
## 9612  1995                                     Action|Crime|Thriller     67
## 9613  1995                                             Comedy|Horror     67
## 9614  1995                                               Crime|Drama     67
## 9615  1995                                             Drama|Romance     67
## 9616  1995                                                    Comedy     67
## 9617  1995                                             Drama|Romance     67
## 9618  1995                                            Children|Drama     67
## 9619  1995                                        Action|Crime|Drama     67
## 9620  1995                                                     Drama     67
## 9621  1995                                Adventure|Children|Fantasy     67
## 9622  1995                                                     Drama     67
## 9623  1996                                    Action|Adventure|Drama     67
## 9624  1996                                                    Comedy     67
## 9625  1996                                      Comedy|Drama|Romance     67
## 9626  1996                                 Action|Adventure|Thriller     67
## 9627  1996                                                    Comedy     67
## 9628  1996                         Adventure|Children|Comedy|Musical     67
## 9629  1995                                          Action|Drama|War     67
## 9630  1995                             Action|Adventure|Comedy|Crime     67
## 9631  1996                                                    Comedy     67
## 9632  1995                                  Action|Drama|Romance|War     67
## 9633  1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller     67
## 9634  1995                                        Adventure|Children     67
## 9635  1977                                   Action|Adventure|Sci-Fi     67
## 9636  1992                                     Drama|Fantasy|Romance     67
## 9637  1994                                 Drama|Romance|War|Western     67
## 9638  1994                                              Comedy|Drama     67
## 9639  1994                                                     Drama     67
## 9640  1995                                                     Drama     67
## 9641  1995                                            Drama|Thriller     67
## 9642  1994                                                     Drama     67
## 9643  1994                                     Action|Crime|Thriller     67
## 9644  1994                               Action|Crime|Drama|Thriller     67
## 9645  1995                                            Comedy|Romance     67
## 9646  1994                               Comedy|Crime|Drama|Thriller     67
## 9647  1994                            Children|Drama|Fantasy|Mystery     67
## 9648  1994                                   Action|Adventure|Sci-Fi     67
## 9649  1994                                               Crime|Drama     67
## 9650  1993                                                     Drama     67
## 9651  1994                                    Drama|Mystery|Thriller     67
## 9652  1994                             Action|Crime|Fantasy|Thriller     67
## 9653  1994                                  Comedy|Drama|Romance|War     67
## 9654  1994                                Adventure|Children|Romance     67
## 9655  1994           Adventure|Animation|Children|Drama|Musical|IMAX     67
## 9656  1994                                  Adventure|Comedy|Western     67
## 9657  1994                                                   Western     67
## 9658  1993                                                     Drama     67
## 9659  1993                                               Crime|Drama     67
## 9660  1993                                 Action|Adventure|Thriller     67
## 9661  1994                                                     Drama     67
## 9662  1993                                            Drama|Thriller     67
## 9663  1993                                                  Thriller     67
## 9664  1993                                           Action|Thriller     67
## 9665  1993                                                     Drama     67
## 9666  1993                          Action|Adventure|Sci-Fi|Thriller     67
## 9667  1993                                                     Drama     67
## 9668  1993                                        Action|Crime|Drama     67
## 9669  1993                                             Drama|Romance     67
## 9670  1993                                             Drama|Romance     67
## 9671  1993                                                     Drama     67
## 9672  1993                                            Children|Drama     67
## 9673  1982                                    Action|Sci-Fi|Thriller     67
## 9674  1993                                      Action|Drama|Western     67
## 9675  1990                                           Children|Comedy     67
## 9676  1990                     Comedy|Drama|Fantasy|Romance|Thriller     67
## 9677  1991                                             Action|Sci-Fi     67
## 9678  1990                                   Adventure|Drama|Western     67
## 9679  1989                                     Action|Crime|Thriller     67
## 9680  1991                                     Crime|Horror|Thriller     67
## 9681  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     67
## 9682  1990                                            Comedy|Romance     67
## 9683  1996                                        Adventure|Children     67
## 9684  1981                  Action|Adventure|Animation|Horror|Sci-Fi     67
## 9685  1996                                             Drama|Romance     67
## 9686  1970                                        Animation|Children     67
## 9687  1996                              Crime|Drama|Mystery|Thriller     67
## 9688  1996      Adventure|Animation|Children|Fantasy|Musical|Romance     67
## 9689  1996                                                    Comedy     67
## 9690  1996                         Action|Adventure|Mystery|Thriller     67
## 9691  1996                                                     Drama     67
## 9692  1996                                  Action|Adventure|Fantasy     67
## 9693  1996                                                    Comedy     67
## 9694  1996                                        Action|Crime|Drama     67
## 9695  1996                                      Crime|Drama|Thriller     67
## 9696  1996                                            Comedy|Romance     67
## 9697  1988               Adventure|Animation|Children|Comedy|Musical     67
## 9698  1996                                        Adventure|Children     67
## 9699  1996                                                    Comedy     67
## 9700  1996                             Drama|Fantasy|Horror|Thriller     67
## 9701  1996                                 Action|Adventure|Thriller     67
## 9702  1996                         Action|Adventure|Romance|Thriller     67
## 9703  1996                                                    Comedy     67
## 9704  1996                          Action|Adventure|Sci-Fi|Thriller     67
## 9705  1996                                           Comedy|Thriller     67
## 9706  1996                             Comedy|Fantasy|Romance|Sci-Fi     67
## 9707  1996                          Action|Adventure|Sci-Fi|Thriller     67
## 9708  1996                                      Comedy|Drama|Romance     67
## 9709  1991                                           Adventure|Drama     67
## 9710  1965                                           Musical|Romance     67
## 9711  1971                           Children|Comedy|Fantasy|Musical     67
## 9712  1967                                               Crime|Drama     67
## 9713  1982                                     Children|Drama|Sci-Fi     67
## 9714  1995               Adventure|Animation|Children|Comedy|Fantasy     68
## 9715  1995                                Adventure|Children|Fantasy     68
## 9716  1995                                      Comedy|Drama|Romance     68
## 9717  1995                                      Adventure|Drama|IMAX     68
## 9718  1977                                   Action|Adventure|Sci-Fi     68
## 9719  1994                                      Comedy|Drama|Fantasy     68
## 9720  1994                                               Crime|Drama     68
## 9721  1994                                  Comedy|Drama|Romance|War     68
## 9722  1994                               Action|Comedy|Crime|Fantasy     68
## 9723  1994                  Action|Adventure|Comedy|Romance|Thriller     68
## 9724  1993                                            Drama|Thriller     68
## 9725  1993                                                  Thriller     68
## 9726  1995                                            Comedy|Romance     68
## 9727  1993                          Action|Adventure|Sci-Fi|Thriller     68
## 9728  1993                                              Comedy|Drama     68
## 9729  1993                                                 Drama|War     68
## 9730  1993                                      Comedy|Drama|Romance     68
## 9731  1982                                    Action|Sci-Fi|Thriller     68
## 9732  1990                                           Children|Comedy     68
## 9733  1990                     Comedy|Drama|Fantasy|Romance|Thriller     68
## 9734  1990                                   Adventure|Drama|Western     68
## 9735  1989                                     Action|Crime|Thriller     68
## 9736  1990                                            Comedy|Romance     68
## 9737  1996                                        Comedy|Crime|Drama     68
## 9738  1996                          Action|Adventure|Sci-Fi|Thriller     68
## 9739  1954                                          Mystery|Thriller     68
## 9740  1959                 Action|Adventure|Mystery|Romance|Thriller     68
## 9741  1942                                             Drama|Romance     68
## 9742  1964                              Comedy|Drama|Musical|Romance     68
## 9743  1955                            Crime|Mystery|Romance|Thriller     68
## 9744  1950                                                    Comedy     68
## 9745  1946                            Children|Drama|Fantasy|Romance     68
## 9746  1965                                           Musical|Romance     68
## 9747  1971                           Children|Comedy|Fantasy|Musical     68
## 9748  1982                                     Children|Drama|Sci-Fi     68
## 9749  1989                                                     Drama     68
## 9750  1980                                   Action|Adventure|Sci-Fi     68
## 9751  1987                   Action|Adventure|Comedy|Fantasy|Romance     68
## 9752  1981                                          Action|Adventure     68
## 9753  1986                            Action|Adventure|Horror|Sci-Fi     68
## 9754  1983                                                     Drama     68
## 9755  1993                                    Comedy|Fantasy|Romance     68
## 9756  1985                                   Adventure|Comedy|Sci-Fi     68
## 9757  1974                                            Comedy|Fantasy     68
## 9758  1989                                          Action|Adventure     68
## 9759  1979                                              Comedy|Drama     68
## 9760  1989                                    Children|Drama|Fantasy     68
## 9761  1986                                   Adventure|Comedy|Sci-Fi     68
## 9762  1996                                             Drama|Romance     68
## 9763  1996                              Comedy|Drama|Fantasy|Romance     68
## 9764  1997                                      Action|Comedy|Sci-Fi     68
## 9765  1997                                           Action|Thriller     68
## 9766  1997                                             Drama|Romance     68
## 9767  1998                                            Comedy|Romance     68
## 9768  1968                                             Drama|Musical     68
## 9769  1985                                             Drama|Romance     68
## 9770  1988                                            Comedy|Fantasy     68
## 9771  1998                                  Adventure|Children|Drama     68
## 9772  1984                                                     Drama     68
## 9773  1986                            Action|Comedy|Romance|Thriller     68
## 9774  1986                                              Comedy|Drama     68
## 9775  1984                                      Action|Comedy|Sci-Fi     68
## 9776  1986                                     Comedy|Horror|Musical     68
## 9777  1999                                      Drama|Horror|Mystery     68
## 9778  1978                                                    Comedy     68
## 9779  1980                                                    Comedy     68
## 9780  1988                              Comedy|Drama|Fantasy|Romance     68
## 9781  1986                                                    Comedy     68
## 9782  1981                           Adventure|Comedy|Fantasy|Sci-Fi     68
## 9783  1987                                            Comedy|Romance     68
## 9784  1999                                                     Drama     68
## 9785  1992                                              Comedy|Crime     68
## 9786  2000                                            Drama|Thriller     68
## 9787  2000                                    Action|Adventure|Drama     68
## 9788  1984                            Adventure|Drama|Romance|Sci-Fi     68
## 9789  2000                                            Drama|Thriller     68
## 9790  1963                                                     Drama     68
## 9791  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     68
## 9792  2001               Adventure|Animation|Children|Comedy|Fantasy     68
## 9793  2001                                            Crime|Thriller     68
## 9794  2001                                            Comedy|Romance     68
## 9795  2001                                         Adventure|Fantasy     68
## 9796  2001                                             Drama|Romance     68
## 9797  2002                       Adventure|Animation|Children|Comedy     68
## 9798  2002                                            Comedy|Romance     68
## 9799  2002                          Action|Adventure|Sci-Fi|Thriller     68
## 9800  2002                                   Action|Mystery|Thriller     68
## 9801  2002                                         Adventure|Fantasy     68
## 9802  2002                                         Adventure|Fantasy     68
## 9803  2002                                               Crime|Drama     68
## 9804  2002                                                 Drama|War     68
## 9805  2002                                      Comedy|Drama|Romance     68
## 9806  2003                         Adventure|Children|Comedy|Mystery     68
## 9807  2003                              Comedy|Drama|Fantasy|Romance     68
## 9808  2003                       Adventure|Animation|Children|Comedy     68
## 9809  2003                           Action|Adventure|Comedy|Fantasy     68
## 9810  2003                                            Comedy|Musical     68
## 9811  2003                                     Action|Crime|Thriller     68
## 9812  2003                                     Drama|Fantasy|Romance     68
## 9813  2003                            Action|Adventure|Drama|Fantasy     68
## 9814  2004                                      Drama|Romance|Sci-Fi     68
## 9815  2004       Adventure|Animation|Children|Comedy|Musical|Romance     68
## 9816  2004                                      Comedy|Drama|Romance     68
## 9817  1987                                            Comedy|Romance     68
## 9818  2004                              Action|Adventure|Sci-Fi|IMAX     68
## 9819  2004                                   Action|Adventure|Sci-Fi     68
## 9820  2004                Action|Adventure|Animation|Children|Comedy     68
## 9821  2004                   Action|Adventure|Drama|Mystery|Thriller     68
## 9822  1957                                           Adventure|Drama     68
## 9823  1985                                                     Drama     68
## 9824  2004                                                     Drama     68
## 9825  2004                                                 Drama|War     68
## 9826  2004                                                     Drama     68
## 9827  1954                                      Comedy|Drama|Romance     68
## 9828  2004                       Adventure|Animation|Fantasy|Romance     68
## 9829  2005                                            Comedy|Romance     68
## 9830  2005                                   Adventure|Comedy|Sci-Fi     68
## 9831  2006                       Adventure|Animation|Children|Comedy     68
## 9832  2006                                 Animation|Children|Comedy     68
## 9833  2006                                     Drama|Fantasy|Romance     68
## 9834  2006                              Comedy|Drama|Fantasy|Romance     68
## 9835  2007                          Adventure|Comedy|Fantasy|Romance     68
## 9836  2007                                      Comedy|Drama|Romance     68
## 9837  1995               Adventure|Animation|Children|Comedy|Fantasy     69
## 9838  1995                                Adventure|Children|Fantasy     69
## 9839  1995                                                    Comedy     69
## 9840  1995                                                    Comedy     69
## 9841  1995                                            Children|Drama     69
## 9842  1995                                            Comedy|Romance     69
## 9843  1995                  Animation|Children|Drama|Musical|Romance     69
## 9844  1996                                                    Comedy     69
## 9845  1995                                        Adventure|Children     69
## 9846  1994                                          Adventure|Comedy     69
## 9847  1995                                            Children|Drama     69
## 9848  1994                               Comedy|Crime|Drama|Thriller     69
## 9849  1994                                               Crime|Drama     69
## 9850  1994                                                    Comedy     69
## 9851  1994                                  Comedy|Drama|Romance|War     69
## 9852  1994                                            Comedy|Romance     69
## 9853  1994           Adventure|Animation|Children|Drama|Musical|IMAX     69
## 9854  1994                                           Children|Comedy     69
## 9855  1993                                   Children|Comedy|Fantasy     69
## 9856  1993                                              Comedy|Drama     69
## 9857  1993                                                 Drama|War     69
## 9858  1990                                           Children|Comedy     69
## 9859  1990                     Comedy|Drama|Fantasy|Romance|Thriller     69
## 9860  1991           Animation|Children|Fantasy|Musical|Romance|IMAX     69
## 9861  1940                        Animation|Children|Fantasy|Musical     69
## 9862  1990                                            Comedy|Romance     69
## 9863  1996                             Comedy|Fantasy|Romance|Sci-Fi     69
## 9864  1939                        Adventure|Children|Fantasy|Musical     69
## 9865  1950                                                    Comedy     69
## 9866  1993                                                    Comedy     69
## 9867  1964                           Children|Comedy|Fantasy|Musical     69
## 9868  1965                                           Musical|Romance     69
## 9869  1971                           Children|Comedy|Fantasy|Musical     69
## 9870  1975                                                     Drama     69
## 9871  1993                                    Comedy|Fantasy|Romance     69
## 9872  1985                                   Adventure|Comedy|Sci-Fi     69
## 9873  1997                                                    Comedy     69
## 9874  1998                                       Comedy|Drama|Sci-Fi     69
## 9875  1997                                             Drama|Romance     69
## 9876  1997                                             Drama|Romance     69
## 9877  1976                                                     Drama     69
## 9878  1985                                              Comedy|Drama     69
## 9879  1989                                   Adventure|Comedy|Sci-Fi     69
## 9880  1990                           Adventure|Comedy|Sci-Fi|Western     69
## 9881  1998                                          Action|Drama|War     69
## 9882  1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     69
## 9883  1998                                   Children|Comedy|Romance     69
## 9884  1963                                             Comedy|Sci-Fi     69
## 9885  1980                                                     Drama     69
## 9886  1992                                                    Comedy     69
## 9887  1998                                      Comedy|Drama|Fantasy     69
## 9888  1998                       Adventure|Animation|Children|Comedy     69
## 9889  1985                                              Comedy|Crime     69
## 9890  1999                                            Comedy|Romance     69
## 9891  1986                                                    Comedy     69
## 9892  1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     69
## 9893  1999               Adventure|Animation|Children|Comedy|Fantasy     69
## 9894  1992                                                    Comedy     69
## 9895  1968                                             Drama|Romance     69
## 9896  1984                                                     Drama     69
## 9897  2000                                                    Comedy     69
## 9898  2000                                                    Comedy     69
## 9899  2000                                             Action|Comedy     69
## 9900  2001                                              Comedy|Drama     69
## 9901  2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     69
## 9902  2001                             Drama|Mystery|Sci-Fi|Thriller     69
## 9903  2001               Adventure|Animation|Children|Comedy|Fantasy     69
## 9904  2001                                Adventure|Children|Fantasy     69
## 9905  2001                                         Adventure|Fantasy     69
## 9906  1987                                                    Comedy     69
## 9907  2002                          Action|Adventure|Sci-Fi|Thriller     69
## 9908  2002                                         Adventure|Fantasy     69
## 9909  2002                                         Adventure|Fantasy     69
## 9910  2003                       Adventure|Animation|Children|Comedy     69
## 9911  2003                           Action|Adventure|Comedy|Fantasy     69
## 9912  2003                            Action|Adventure|Drama|Fantasy     69
## 9913  2004                                      Drama|Romance|Sci-Fi     69
## 9914  2004                Action|Adventure|Animation|Children|Comedy     69
## 9915  2008                                      Comedy|Drama|Romance     69
## 9916  2009                              Crime|Drama|Mystery|Thriller     69
## 9917  2009                                      Comedy|Drama|Romance     69
## 9918  1995               Adventure|Animation|Children|Comedy|Fantasy     70
## 9919  1995                                            Comedy|Romance     70
## 9920  1995                                                    Comedy     70
## 9921  1995                                            Comedy|Romance     70
## 9922  1995                                                    Action     70
## 9923  1995                                             Comedy|Horror     70
## 9924  1995                                                     Drama     70
## 9925  1995                                             Drama|Romance     70
## 9926  1995                                             Drama|Romance     70
## 9927  1995                                                     Drama     70
## 9928  1995                                   Mystery|Sci-Fi|Thriller     70
## 9929  1995                                               Crime|Drama     70
## 9930  1995                                      Comedy|Drama|Romance     70
## 9931  1994                                      Comedy|Drama|Romance     70
## 9932  1996                                            Drama|Thriller     70
## 9933  1995                                                     Drama     70
## 9934  1996                                              Comedy|Crime     70
## 9935  1996                                                    Comedy     70
## 9936  1995                                    Action|Sci-Fi|Thriller     70
## 9937  1996                                            Drama|Thriller     70
## 9938  1995                                       Crime|Drama|Romance     70
## 9939  1995                                              Comedy|Drama     70
## 9940  1996                                    Action|Adventure|Drama     70
## 9941  1996                                                    Comedy     70
## 9942  1996                                     Drama|Horror|Thriller     70
## 9943  1996                                 Action|Adventure|Thriller     70
## 9944  1996                                            Drama|Thriller     70
## 9945  1996                                                    Comedy     70
## 9946  1996                         Adventure|Children|Comedy|Musical     70
## 9947  1995                             Action|Adventure|Comedy|Crime     70
## 9948  1996                                                    Comedy     70
## 9949  1996                                                    Comedy     70
## 9950  1994                                           Action|Thriller     70
## 9951  1996                                 Action|Adventure|Thriller     70
## 9952  1996                               Comedy|Crime|Drama|Thriller     70
## 9953  1996                                        Adventure|Children     70
## 9954  1996                                             Drama|Romance     70
## 9955  1996                              Crime|Drama|Mystery|Thriller     70
## 9956  1996      Adventure|Animation|Children|Fantasy|Musical|Romance     70
## 9957  1996                                                    Comedy     70
## 9958  1996                                            Drama|Thriller     70
## 9959  1996                         Action|Adventure|Mystery|Thriller     70
## 9960  1996                                  Action|Adventure|Fantasy     70
## 9961  1996              Adventure|Animation|Children|Fantasy|Musical     70
## 9962  1996                                                    Comedy     70
## 9963  1996                                                    Action     70
## 9964  1996                                             Comedy|Sci-Fi     70
## 9965  1996        Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     70
## 9966  1996                                        Action|Crime|Drama     70
## 9967  1996                                          Action|Adventure     70
## 9968  1996                                      Crime|Drama|Thriller     70
## 9969  1996                                            Comedy|Romance     70
## 9970  1996                                        Adventure|Children     70
## 9971  1996                                                    Comedy     70
## 9972  1996                             Drama|Fantasy|Horror|Thriller     70
## 9973  1996                                 Action|Adventure|Thriller     70
## 9974  1996                         Action|Adventure|Romance|Thriller     70
## 9975  1996                                             Action|Sci-Fi     70
## 9976  1996                                                    Comedy     70
## 9977  1995                                 Animation|Children|Comedy     70
## 9978  1996                                    Action|Sci-Fi|Thriller     70
## 9979  1996                                          Action|Adventure     70
## 9980  1996                                              Comedy|Crime     70
## 9981  1996                          Action|Adventure|Sci-Fi|Thriller     70
## 9982  1996                                           Comedy|Thriller     70
## 9983  1996                                                    Comedy     70
## 9984  1996                                     Action|Drama|Thriller     70
## 9985  1996                             Comedy|Fantasy|Romance|Sci-Fi     70
## 9986  1996                                    Comedy|Horror|Thriller     70
## 9987  1996                                             Drama|Romance     70
## 9988  1996                                            Drama|Thriller     70
## 9989  1996                                   Children|Comedy|Fantasy     70
## 9990  1996                                            Crime|Thriller     70
## 9991  1996                                           Action|Thriller     70
## 9992  1996                          Action|Adventure|Sci-Fi|Thriller     70
## 9993  1996                                      Comedy|Drama|Romance     70
## 9994  1996                                           Sci-Fi|Thriller     70
## 9995  1995                                           Horror|Thriller     70
## 9996  1996                                             Drama|Romance     70
## 9997  1996                                                  Thriller     70
## 9998  1971                           Children|Comedy|Fantasy|Musical     70
## 9999  1996                          Action|Adventure|Sci-Fi|Thriller     70
## 10000 1996                                 Adventure|Children|Comedy     70
## 10001 1995                                               Documentary     71
## 10002 1991                                             Action|Sci-Fi     71
## 10003 1959                 Action|Adventure|Mystery|Romance|Thriller     71
## 10004 1992                                                    Comedy     71
## 10005 1986                                           Adventure|Drama     71
## 10006 1946                                   Crime|Film-Noir|Mystery     71
## 10007 1997                          Crime|Film-Noir|Mystery|Thriller     71
## 10008 1997                                                     Drama     71
## 10009 1981                                                     Drama     71
## 10010 1999                                             Drama|Romance     71
## 10011 1984                                                     Drama     71
## 10012 1999                                                     Drama     71
## 10013 1999                                                     Drama     71
## 10014 1986                                            Comedy|Romance     71
## 10015 2000                                      Comedy|Drama|Romance     71
## 10016 1999                                                    Comedy     71
## 10017 1993                             Drama|Fantasy|Mystery|Romance     71
## 10018 1984                                              Comedy|Drama     71
## 10019 1954                                   Adventure|Horror|Sci-Fi     71
## 10020 1933                                             Horror|Sci-Fi     71
## 10021 1964                                                   Musical     71
## 10022 1946                                           Drama|Film-Noir     71
## 10023 1945                                           Crime|Film-Noir     71
## 10024 1995               Adventure|Animation|Children|Comedy|Fantasy     72
## 10025 1995                                Adventure|Children|Fantasy     72
## 10026 1995                                          Mystery|Thriller     72
## 10027 1995                                    Crime|Mystery|Thriller     72
## 10028 1995                                          Action|Drama|War     72
## 10029 1995                                      Adventure|Drama|IMAX     72
## 10030 1977                                   Action|Adventure|Sci-Fi     72
## 10031 1994                               Comedy|Crime|Drama|Thriller     72
## 10032 1994                                               Crime|Drama     72
## 10033 1994                                  Comedy|Drama|Romance|War     72
## 10034 1993                          Action|Adventure|Sci-Fi|Thriller     72
## 10035 1993                                                 Drama|War     72
## 10036 1982                                    Action|Sci-Fi|Thriller     72
## 10037 1991                                     Crime|Horror|Thriller     72
## 10038 1996                               Comedy|Crime|Drama|Thriller     72
## 10039 1996                                        Comedy|Crime|Drama     72
## 10040 1972                                               Crime|Drama     72
## 10041 1942                                             Drama|Romance     72
## 10042 1968                                    Adventure|Drama|Sci-Fi     72
## 10043 1988                                     Action|Crime|Thriller     72
## 10044 1980                                   Action|Adventure|Sci-Fi     72
## 10045 1986                            Action|Adventure|Horror|Sci-Fi     72
## 10046 1971                               Crime|Drama|Sci-Fi|Thriller     72
## 10047 1979                                          Action|Drama|War     72
## 10048 1990                                               Crime|Drama     72
## 10049 1974                                               Crime|Drama     72
## 10050 1987                                                 Drama|War     72
## 10051 1989                                                     Drama     72
## 10052 1980                                                    Horror     72
## 10053 1985                                   Adventure|Comedy|Sci-Fi     72
## 10054 1998                                       Comedy|Drama|Sci-Fi     72
## 10055 1988                                                     Drama     72
## 10056 1998                                     Action|Comedy|Romance     72
## 10057 1998                                          Action|Drama|War     72
## 10058 1997                                  Comedy|Drama|Romance|War     72
## 10059 1998                                              Comedy|Drama     72
## 10060 1999                                    Action|Sci-Fi|Thriller     72
## 10061 1999                                   Action|Adventure|Sci-Fi     72
## 10062 1998                                              Action|Crime     72
## 10063 1999                                      Drama|Horror|Mystery     72
## 10064 1999                                             Drama|Romance     72
## 10065 1986                                                    Comedy     72
## 10066 1999                               Action|Crime|Drama|Thriller     72
## 10067 1999               Adventure|Animation|Children|Comedy|Fantasy     72
## 10068 2000                                      Comedy|Drama|Romance     72
## 10069 2000                                    Action|Adventure|Drama     72
## 10070 2000                                              Action|Crime     72
## 10071 2000                                          Action|Drama|War     72
## 10072 2000                                   Action|Adventure|Sci-Fi     72
## 10073 2000                                                     Drama     72
## 10074 2000                                                     Drama     72
## 10075 2000                                      Action|Drama|Romance     72
## 10076 2000                                     Comedy|Crime|Thriller     72
## 10077 2000                                            Comedy|Romance     72
## 10078 2000                                                     Drama     72
## 10079 2000                                              Comedy|Crime     72
## 10080 2000                                    Adventure|Comedy|Crime     72
## 10081 2000                                          Mystery|Thriller     72
## 10082 2001                                      Comedy|Drama|Romance     72
## 10083 1983                                        Action|Crime|Drama     72
## 10084 2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     72
## 10085 2001                                            Comedy|Romance     72
## 10086 2001                             Drama|Horror|Mystery|Thriller     72
## 10087 2001                             Drama|Mystery|Sci-Fi|Thriller     72
## 10088 2001               Adventure|Animation|Children|Comedy|Fantasy     72
## 10089 2001                                            Crime|Thriller     72
## 10090 2001                                            Comedy|Romance     72
## 10091 2001                                              Comedy|Drama     72
## 10092 2001                                         Adventure|Fantasy     72
## 10093 2001                                             Drama|Romance     72
## 10094 2002                       Adventure|Animation|Children|Comedy     72
## 10095 2002                          Action|Adventure|Sci-Fi|Thriller     72
## 10096 2002                              Action|Adventure|Sci-Fi|IMAX     72
## 10097 2002                                   Action|Mystery|Thriller     72
## 10098 2002                      Action|Crime|Mystery|Sci-Fi|Thriller     72
## 10099 2002                                   Horror|Mystery|Thriller     72
## 10100 2002                                    Action|Sci-Fi|Thriller     72
## 10101 2002                                         Adventure|Fantasy     72
## 10102 2002                                               Crime|Drama     72
## 10103 2002                                                 Drama|War     72
## 10104 2003                          Action|Adventure|Sci-Fi|Thriller     72
## 10105 2003                       Adventure|Animation|Children|Comedy     72
## 10106 2002                                      Action|Horror|Sci-Fi     72
## 10107 2003                           Action|Adventure|Comedy|Fantasy     72
## 10108 2003                                      Comedy|Drama|Romance     72
## 10109 2003                                            Comedy|Musical     72
## 10110 2003                                     Action|Crime|Thriller     72
## 10111 2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     72
## 10112 2003                                Action|Adventure|Drama|War     72
## 10113 2003                                     Drama|Fantasy|Romance     72
## 10114 2003                            Action|Adventure|Drama|Fantasy     72
## 10115 2004                                     Drama|Sci-Fi|Thriller     72
## 10116 2004                                      Drama|Romance|Sci-Fi     72
## 10117 2004                                     Action|Drama|Thriller     72
## 10118 2004                                Action|Adventure|Drama|War     72
## 10119 2001                                          Action|Drama|War     72
## 10120 2004                          Action|Adventure|Sci-Fi|Thriller     72
## 10121 2004                                             Comedy|Horror     72
## 10122 2004                                    Drama|Mystery|Thriller     72
## 10123 2004                Action|Adventure|Animation|Children|Comedy     72
## 10124 2005                            Action|Fantasy|Horror|Thriller     72
## 10125 2005                                         Action|Crime|IMAX     72
## 10126 2005                           Action|Crime|Drama|Thriller|War     72
## 10127 2005                                Adventure|Children|Fantasy     72
## 10128 2006                               Action|Sci-Fi|Thriller|IMAX     72
## 10129 2006                                              Comedy|Drama     72
## 10130 2006                                    Drama|Mystery|Thriller     72
## 10131 2006                                    Adventure|Comedy|Drama     72
## 10132 2006                             Drama|Fantasy|Mystery|Romance     72
## 10133 2006                                                    Comedy     72
## 10134 2006                                    Drama|Fantasy|Thriller     72
## 10135 2006                                      Crime|Drama|Thriller     72
## 10136 2006                                 Action|Adventure|Thriller     72
## 10137 2007                                  Animation|Children|Drama     72
## 10138 2007                               Action|Comedy|Crime|Mystery     72
## 10139 2007                                      Crime|Drama|Thriller     72
## 10140 2007                                   Action|Fantasy|War|IMAX     72
## 10141 2007                       Action|Crime|Horror|Sci-Fi|Thriller     72
## 10142 2007                     Action|Adventure|Sci-Fi|Thriller|IMAX     72
## 10143 2007                                      Comedy|Drama|Romance     72
## 10144 2007                                    Horror|Sci-Fi|Thriller     72
## 10145 2007                           Action|Adventure|Comedy|Fantasy     72
## 10146 2007                                            Crime|Thriller     72
## 10147 2007                    Action|Adventure|Crime|Horror|Thriller     72
## 10148 2007                           Action|Adventure|Crime|Thriller     72
## 10149 2007                               Action|Sci-Fi|Thriller|IMAX     72
## 10150 2007                              Adventure|Drama|Fantasy|IMAX     72
## 10151 2007                          Adventure|Comedy|Fantasy|Romance     72
## 10152 2007                                          Animation|Comedy     72
## 10153 2007                                     Action|Crime|Thriller     72
## 10154 2007                                                    Comedy     72
## 10155 2007                                Action|Crime|Drama|Western     72
## 10156 2007                                    Action|Adventure|Drama     72
## 10157 2007                                    Adventure|Comedy|Drama     72
## 10158 2007                                      Crime|Drama|Thriller     72
## 10159 2007                                               Crime|Drama     72
## 10160 2007                        Action|Horror|Sci-Fi|Thriller|IMAX     72
## 10161 2007                                      Comedy|Drama|Romance     72
## 10162 2007                             Drama|Horror|Musical|Thriller     72
## 10163 2007                                             Drama|Western     72
## 10164 2008                                   Action|Crime|Drama|IMAX     72
## 10165 2008                                   Action|Adventure|Sci-Fi     72
## 10166 2008               Adventure|Animation|Children|Romance|Sci-Fi     72
## 10167 2008                                        Comedy|Crime|Drama     72
## 10168 2008                             Drama|Fantasy|Mystery|Romance     72
## 10169 2009                                          Action|Drama|War     72
## 10170 2009                                    Action|Sci-Fi|Thriller     72
## 10171 2009                              Action|Adventure|Sci-Fi|IMAX     72
## 10172 2009                        Adventure|Animation|Children|Drama     72
## 10173 2009                                              Comedy|Crime     72
## 10174 2009                              Action|Adventure|Sci-Fi|IMAX     72
## 10175 2010                                    Drama|Mystery|Thriller     72
## 10176 2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     72
## 10177 2010                     Action|Comedy|Fantasy|Musical|Romance     72
## 10178 2010                                  Adventure|Drama|Thriller     72
## 10179 2010                                            Drama|Thriller     72
## 10180 2010                                                   Western     72
## 10181 2011                                    Comedy|Fantasy|Romance     72
## 10182 2011                      Action|Adventure|Sci-Fi|Thriller|War     72
## 10183 2011                              Action|Drama|Sci-Fi|Thriller     72
## 10184 2011                                                     Drama     72
## 10185 2012                              Action|Adventure|Sci-Fi|IMAX     72
## 10186 2012                               Action|Adventure|Crime|IMAX     72
## 10187 2011                                              Comedy|Drama     72
## 10188 2012                                      Comedy|Drama|Romance     72
## 10189 2012                                         Drama|Sci-Fi|IMAX     72
## 10190 2012                                      Adventure|Drama|IMAX     72
## 10191 2012                                      Action|Drama|Western     72
## 10192 2013                              Action|Adventure|Sci-Fi|IMAX     72
## 10193 2013                                  Action|Drama|Horror|IMAX     72
## 10194 2013                                     Drama|Fantasy|Romance     72
## 10195 2013                                        Action|Sci-Fi|IMAX     72
## 10196 2013                                                     Drama     72
## 10197 2013                                                     Drama     72
## 10198 2013                                      Drama|Romance|Sci-Fi     72
## 10199 2014                                               Sci-Fi|IMAX     72
## 10200 2014                                                     Drama     72
## 10201 2014                                   Action|Adventure|Sci-Fi     72
## 10202 2014                                                Action|War     72
## 10203 2015                                     Drama|Sci-Fi|Thriller     72
## 10204 2014                                        Drama|Thriller|War     72
## 10205 2014                                             Drama|Romance     72
## 10206 2015                          Action|Adventure|Sci-Fi|Thriller     72
## 10207 2015                      Action|Adventure|Fantasy|Sci-Fi|IMAX     72
## 10208 2016                            Action|Adventure|Comedy|Sci-Fi     72
## 10209 2016                                    Action|Sci-Fi|Thriller     72
## 10210 2015                                    Adventure|Drama|Sci-Fi     72
## 10211 2016                           Action|Adventure|Fantasy|Sci-Fi     72
## 10212 2015                                           Adventure|Drama     72
## 10213 2015                                                  Thriller     72
## 10214 2016                            Action|Adventure|Drama|Fantasy     72
## 10215 1995               Adventure|Animation|Children|Comedy|Fantasy     73
## 10216 1995                                Adventure|Children|Fantasy     73
## 10217 1995                                     Action|Crime|Thriller     73
## 10218 1995                                 Action|Adventure|Thriller     73
## 10219 1995                                  Action|Adventure|Romance     73
## 10220 1995                                               Crime|Drama     73
## 10221 1995                                                    Comedy     73
## 10222 1995                                     Comedy|Crime|Thriller     73
## 10223 1995                                             Drama|Romance     73
## 10224 1995                                                     Drama     73
## 10225 1995                                   Mystery|Sci-Fi|Thriller     73
## 10226 1995                                            Children|Drama     73
## 10227 1995                                               Crime|Drama     73
## 10228 1995                                            Comedy|Romance     73
## 10229 1995                                  Action|Adventure|Fantasy     73
## 10230 1995                                          Mystery|Thriller     73
## 10231 1995                  Animation|Children|Drama|Musical|Romance     73
## 10232 1995                                    Crime|Mystery|Thriller     73
## 10233 1995                                Adventure|Children|Fantasy     73
## 10234 1996                                              Comedy|Crime     73
## 10235 1996                                                    Comedy     73
## 10236 1995                                                    Comedy     73
## 10237 1996                             Action|Comedy|Horror|Thriller     73
## 10238 1994                                           Action|Thriller     73
## 10239 1996                            Adventure|Comedy|Crime|Romance     73
## 10240 1996                                                    Comedy     73
## 10241 1996                         Adventure|Children|Comedy|Musical     73
## 10242 1995                                          Action|Drama|War     73
## 10243 1976                                      Crime|Drama|Thriller     73
## 10244 1995                             Action|Adventure|Comedy|Crime     73
## 10245 1995                        Action|Comedy|Crime|Drama|Thriller     73
## 10246 1995                                                     Drama     73
## 10247 1995                                      Adventure|Drama|IMAX     73
## 10248 1995                             Action|Adventure|Comedy|Crime     73
## 10249 1995                                        Adventure|Children     73
## 10250 1995                           Action|Adventure|Mystery|Sci-Fi     73
## 10251 1995                                    Action|Romance|Western     73
## 10252 1995                                     Action|Crime|Thriller     73
## 10253 1995                                      Action|Drama|Romance     73
## 10254 1995                                  Adventure|Children|Drama     73
## 10255 1995                                    Action|Sci-Fi|Thriller     73
## 10256 1995                                       Action|Crime|Sci-Fi     73
## 10257 1995                                                     Drama     73
## 10258 1995                                                    Horror     73
## 10259 1995                                            Comedy|Romance     73
## 10260 1995                                     Action|Crime|Thriller     73
## 10261 1995                                                     Drama     73
## 10262 1995                Action|Crime|Drama|Mystery|Sci-Fi|Thriller     73
## 10263 1995                                   Action|Adventure|Sci-Fi     73
## 10264 1995                                             Drama|Romance     73
## 10265 1995                                                    Comedy     73
## 10266 1994                                                    Comedy     73
## 10267 1994                                          Adventure|Comedy     73
## 10268 1994                                                     Drama     73
## 10269 1994                                              Comedy|Drama     73
## 10270 1995                         Animation|Children|Comedy|Romance     73
## 10271 1994                                               Documentary     73
## 10272 1994                                               Crime|Drama     73
## 10273 1994                                              Drama|Horror     73
## 10274 1994                                             Comedy|Sci-Fi     73
## 10275 1995                 Adventure|Children|Comedy|Fantasy|Romance     73
## 10276 1977                                   Action|Adventure|Sci-Fi     73
## 10277 1994                                 Drama|Romance|War|Western     73
## 10278 1995                                                    Comedy     73
## 10279 1994                                     Action|Crime|Thriller     73
## 10280 1995                              Action|Drama|Sci-Fi|Thriller     73
## 10281 1994                               Action|Crime|Drama|Thriller     73
## 10282 1994                               Comedy|Crime|Drama|Thriller     73
## 10283 1994                                                     Drama     73
## 10284 1994                                   Action|Adventure|Sci-Fi     73
## 10285 1994                                               Crime|Drama     73
## 10286 1994                                     Comedy|Drama|Thriller     73
## 10287 1995                                              Comedy|Drama     73
## 10288 1995                                      Action|Comedy|Sci-Fi     73
## 10289 1995                                                    Comedy     73
## 10290 1993                                                     Drama     73
## 10291 1995                                    Action|Sci-Fi|Thriller     73
## 10292 1994                                                    Comedy     73
## 10293 1994                               Action|Crime|Drama|Thriller     73
## 10294 1994                                              Comedy|Drama     73
## 10295 1994                             Action|Crime|Fantasy|Thriller     73
## 10296 1994                                  Comedy|Drama|Romance|War     73
## 10297 1994           Adventure|Animation|Children|Drama|Musical|IMAX     73
## 10298 1994                               Action|Comedy|Crime|Fantasy     73
## 10299 1994                                  Adventure|Comedy|Western     73
## 10300 1994                                           Children|Comedy     73
## 10301 1994                                   Action|Romance|Thriller     73
## 10302 1994                  Action|Adventure|Comedy|Romance|Thriller     73
## 10303 1995                                           Horror|Thriller     73
## 10304 1994                                               Crime|Drama     73
## 10305 1993                                   Children|Comedy|Fantasy     73
## 10306 1994                                                    Comedy     73
## 10307 1993                                                     Drama     73
## 10308 1993                                               Crime|Drama     73
## 10309 1993                                             Comedy|Sci-Fi     73
## 10310 1993                                                    Comedy     73
## 10311 1993                                   Action|Adventure|Sci-Fi     73
## 10312 1994                                      Crime|Drama|Thriller     73
## 10313 1993                                                  Thriller     73
## 10314 1993                                         Action|Comedy|War     73
## 10315 1994                                                    Comedy     73
## 10316 1993                                           Action|Thriller     73
## 10317 1993                          Action|Adventure|Sci-Fi|Thriller     73
## 10318 1993                                            Drama|Thriller     73
## 10319 1994                                      Crime|Drama|Thriller     73
## 10320 1993                           Action|Adventure|Comedy|Fantasy     73
## 10321 1993                                        Action|Crime|Drama     73
## 10322 1993                                            Comedy|Romance     73
## 10323 1993                                              Comedy|Drama     73
## 10324 1994                                   Action|Children|Romance     73
## 10325 1993                                      Crime|Drama|Thriller     73
## 10326 1993                                                     Drama     73
## 10327 1993                                                     Drama     73
## 10328 1994                                                    Comedy     73
## 10329 1993                                                    Comedy     73
## 10330 1992                                              Action|Drama     73
## 10331 1993                                                 Drama|War     73
## 10332 1982                                    Action|Sci-Fi|Thriller     73
## 10333 1993                        Animation|Children|Fantasy|Musical     73
## 10334 1993                                      Action|Drama|Western     73
## 10335 1993                                            Crime|Thriller     73
## 10336 1994                                           Children|Comedy     73
## 10337 1995                                                    Comedy     73
## 10338 1990                                           Children|Comedy     73
## 10339 1992               Adventure|Animation|Children|Comedy|Musical     73
## 10340 1991                                             Action|Sci-Fi     73
## 10341 1990                                   Adventure|Drama|Western     73
## 10342 1989                                     Action|Crime|Thriller     73
## 10343 1991                                     Crime|Horror|Thriller     73
## 10344 1937                  Animation|Children|Drama|Fantasy|Musical     73
## 10345 1991           Animation|Children|Fantasy|Musical|Romance|IMAX     73
## 10346 1940                        Animation|Children|Fantasy|Musical     73
## 10347 1990                                            Comedy|Romance     73
## 10348 1996                               Comedy|Crime|Drama|Thriller     73
## 10349 1981                  Action|Adventure|Animation|Horror|Sci-Fi     73
## 10350 1996                              Crime|Drama|Mystery|Thriller     73
## 10351 1996      Adventure|Animation|Children|Fantasy|Musical|Romance     73
## 10352 1996                         Action|Adventure|Mystery|Thriller     73
## 10353 1996                                  Action|Adventure|Fantasy     73
## 10354 1996        Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     73
## 10355 1996                                        Action|Crime|Drama     73
## 10356 1996                                          Action|Adventure     73
## 10357 1996                                            Comedy|Romance     73
## 10358 1996                                                    Comedy     73
## 10359 1996                                 Action|Adventure|Thriller     73
## 10360 1994                                                    Horror     73
## 10361 1996                         Action|Adventure|Romance|Thriller     73
## 10362 1996                                             Action|Sci-Fi     73
## 10363 1995                                          Animation|Sci-Fi     73
## 10364 1996                                           Horror|Thriller     73
## 10365 1995                                 Animation|Children|Comedy     73
## 10366 1996                                    Action|Sci-Fi|Thriller     73
## 10367 1996                                          Action|Adventure     73
## 10368 1996                                        Comedy|Crime|Drama     73
## 10369 1996                          Action|Adventure|Sci-Fi|Thriller     73
## 10370 1996                                           Comedy|Thriller     73
## 10371 1996                                                    Comedy     73
## 10372 1996                                     Action|Drama|Thriller     73
## 10373 1996                             Comedy|Fantasy|Romance|Sci-Fi     73
## 10374 1996                                    Comedy|Horror|Thriller     73
## 10375 1996                                             Drama|Romance     73
## 10376 1996                                            Crime|Thriller     73
## 10377 1996                          Action|Adventure|Sci-Fi|Thriller     73
## 10378 1972                                               Crime|Drama     73
## 10379 1996                                           Sci-Fi|Thriller     73
## 10380 1954                                          Mystery|Thriller     73
## 10381 1960                                      Comedy|Drama|Romance     73
## 10382 1939                        Adventure|Children|Fantasy|Musical     73
## 10383 1968                                    Adventure|Drama|Sci-Fi     73
## 10384 1938                                  Action|Adventure|Romance     73
## 10385 1968                                    Horror|Sci-Fi|Thriller     73
## 10386 1993                                  Adventure|Children|Drama     73
## 10387 1993                                                    Comedy     73
## 10388 1950                Animation|Children|Fantasy|Musical|Romance     73
## 10389 1963                        Animation|Children|Fantasy|Musical     73
## 10390 1991                                           Adventure|Drama     73
## 10391 1941                          Animation|Children|Drama|Musical     73
## 10392 1951              Adventure|Animation|Children|Fantasy|Musical     73
## 10393 1981                                  Animation|Children|Drama     73
## 10394 1988                                     Action|Crime|Thriller     73
## 10395 1996                                          Action|Adventure     73
## 10396 1996                                             Drama|Romance     73
## 10397 1996                                              Comedy|Drama     73
## 10398 1996                                                  Thriller     73
## 10399 1979                                                    Comedy     73
## 10400 1992                                    Crime|Mystery|Thriller     73
## 10401 1986                                                 Drama|War     73
## 10402 1991                                                     Drama     73
## 10403 1992                                    Drama|Romance|Thriller     73
## 10404 1982                                     Children|Drama|Sci-Fi     73
## 10405 1986                                            Action|Romance     73
## 10406 1996                                              Comedy|Drama     73
## 10407 1989                          Action|Adventure|Sci-Fi|Thriller     73
## 10408 1981                          Action|Adventure|Sci-Fi|Thriller     73
## 10409 1975                                  Adventure|Comedy|Fantasy     73
## 10410 1993                           Animation|Children|Comedy|Crime     73
## 10411 1989                                                     Drama     73
## 10412 1989                                                     Drama     73
## 10413 1975                                                     Drama     73
## 10414 1978                                                    Comedy     73
## 10415 1980                                   Action|Adventure|Sci-Fi     73
## 10416 1987                   Action|Adventure|Comedy|Fantasy|Romance     73
## 10417 1981                                          Action|Adventure     73
## 10418 1985                                            Fantasy|Sci-Fi     73
## 10419 1986                            Action|Adventure|Horror|Sci-Fi     73
## 10420 1966                                  Action|Adventure|Western     73
## 10421 1957                                                     Drama     73
## 10422 1962                                       Adventure|Drama|War     73
## 10423 1971                               Crime|Drama|Sci-Fi|Thriller     73
## 10424 1979                                          Action|Drama|War     73
## 10425 1983                                   Action|Adventure|Sci-Fi     73
## 10426 1990                                               Crime|Drama     73
## 10427 1979                                             Horror|Sci-Fi     73
## 10428 1993                    Action|Adventure|Comedy|Fantasy|Horror     73
## 10429 1989                               Action|Crime|Drama|Thriller     73
## 10430 1980                                     Action|Comedy|Musical     73
## 10431 1974                                               Crime|Drama     73
## 10432 1987                                                 Drama|War     73
## 10433 1984                                                     Drama     73
## 10434 1980                                                     Drama     73
## 10435 1984                                    Action|Sci-Fi|Thriller     73
## 10436 1992                                     Comedy|Fantasy|Horror     73
## 10437 1989                                                 Drama|War     73
## 10438 1990                            Crime|Drama|Film-Noir|Thriller     73
## 10439 1989                                                     Drama     73
## 10440 1974                          Crime|Film-Noir|Mystery|Thriller     73
## 10441 1987                                      Comedy|Horror|Sci-Fi     73
## 10442 1985                                            Comedy|Romance     73
## 10443 1980                                                    Horror     73
## 10444 1986                                           Adventure|Drama     73
## 10445 1987                              Action|Comedy|Fantasy|Horror     73
## 10446 1963                                Action|Adventure|Drama|War     73
## 10447 1978                                                 Drama|War     73
## 10448 1993                                    Comedy|Fantasy|Romance     73
## 10449 1992                                             Drama|Western     73
## 10450 1985                                   Adventure|Comedy|Sci-Fi     73
## 10451 1988                         Action|Adventure|Animation|Sci-Fi     73
## 10452 1986                                  Action|Adventure|Fantasy     73
## 10453 1940                        Animation|Children|Fantasy|Musical     73
## 10454 1989                                                    Comedy     73
## 10455 1984                                                    Comedy     73
## 10456 1989                                          Action|Adventure     73
## 10457 1982                                                     Drama     73
## 10458 1982                                             Drama|Musical     73
## 10459 1984                                                 Drama|War     73
## 10460 1989                                    Children|Drama|Fantasy     73
## 10461 1992                             Action|Horror|Sci-Fi|Thriller     73
## 10462 1981                                    Comedy|Horror|Thriller     73
## 10463 1992                           Fantasy|Horror|Romance|Thriller     73
## 10464 1992                                           Horror|Thriller     73
## 10465 1991                                                  Thriller     73
## 10466 1976                             Drama|Fantasy|Horror|Thriller     73
## 10467 1984                                           Horror|Thriller     73
## 10468 1976                                   Horror|Mystery|Thriller     73
## 10469 1996                          Action|Adventure|Sci-Fi|Thriller     73
## 10470 1996                                                     Drama     73
## 10471 1996                                           Children|Comedy     73
## 10472 1996                                 Adventure|Children|Comedy     73
## 10473 1990                                 Action|Adventure|Thriller     73
## 10474 1991                                     Action|Mystery|Sci-Fi     73
## 10475 1982                          Action|Adventure|Sci-Fi|Thriller     73
## 10476 1992                                              Action|Crime     73
## 10477 1978                                    Comedy|Musical|Romance     73
## 10478 1975                                             Action|Horror     73
## 10479 1996                                      Action|Comedy|Sci-Fi     73
## 10480 1996                                             Drama|Romance     73
## 10481 1987                                                    Comedy     73
## 10482 1992                          Action|Comedy|Crime|Drama|Sci-Fi     73
## 10483 1996                          Adventure|Animation|Comedy|Crime     73
## 10484 1996                            Comedy|Horror|Mystery|Thriller     73
## 10485 1992                                Action|Romance|War|Western     73
## 10486 1997                                           Action|Thriller     73
## 10487 1997                                                    Comedy     73
## 10488 1997             Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     73
## 10489 1997                                               Crime|Drama     73
## 10490 1997                            Action|Romance|Sci-Fi|Thriller     73
## 10491 1997                                                    Comedy     73
## 10492 1997                                 Action|Adventure|Thriller     73
## 10493 1997                                      Comedy|Crime|Romance     73
## 10494 1997                                     Action|Drama|Thriller     73
## 10495 1997                                   Action|Adventure|Comedy     73
## 10496 1997                            Action|Adventure|Comedy|Sci-Fi     73
## 10497 1997                          Action|Adventure|Sci-Fi|Thriller     73
## 10498 1997                                 Action|Adventure|Thriller     73
## 10499 1997                         Action|Adventure|Fantasy|Thriller     73
## 10500 1997               Adventure|Animation|Children|Comedy|Musical     73
## 10501 1997                               Action|Crime|Drama|Thriller     73
## 10502 1997                                      Action|Comedy|Sci-Fi     73
## 10503 1997                                              Drama|Sci-Fi     73
## 10504 1982                                  Action|Adventure|Fantasy     73
## 10505 1997                                    Horror|Sci-Fi|Thriller     73
## 10506 1997                          Action|Adventure|Sci-Fi|Thriller     73
## 10507 1997                                  Adventure|Children|Drama     73
## 10508 1997                            Drama|Mystery|Romance|Thriller     73
## 10509 1997                                                    Action     73
## 10510 1997                                    Horror|Sci-Fi|Thriller     73
## 10511 1997                                           Action|Thriller     73
## 10512 1997                          Crime|Film-Noir|Mystery|Thriller     73
## 10513 1997                                    Drama|Mystery|Thriller     73
## 10514 1997                                      Comedy|Drama|Romance     73
## 10515 1997                                   Horror|Mystery|Thriller     73
## 10516 1997                                    Drama|Mystery|Thriller     73
## 10517 1997                                     Drama|Sci-Fi|Thriller     73
## 10518 1997                                                     Drama     73
## 10519 1985                                    Drama|Romance|Thriller     73
## 10520 1997                                             Action|Sci-Fi     73
## 10521 1997                                  Action|Adventure|Fantasy     73
## 10522 1998                                       Comedy|Drama|Sci-Fi     73
## 10523 1997                                      Action|Horror|Sci-Fi     73
## 10524 1997                                             Drama|Romance     73
## 10525 1997                                           Children|Comedy     73
## 10526 1997                                             Drama|Romance     73
## 10527 1997                                      Crime|Drama|Thriller     73
## 10528 1998                                              Comedy|Crime     73
## 10529 1998                       Adventure|Film-Noir|Sci-Fi|Thriller     73
## 10530 1998                                     Action|Crime|Thriller     73
## 10531 1998                                                    Comedy     73
## 10532 1997                                                    Comedy     73
## 10533 1998                                      Action|Horror|Sci-Fi     73
## 10534 1998                                            Comedy|Romance     73
## 10535 1998                                           Sci-Fi|Thriller     73
## 10536 1997                                      Comedy|Drama|Romance     73
## 10537 1990                                            Crime|Thriller     73
## 10538 1998                                     Action|Crime|Thriller     73
## 10539 1998                                        Adventure|Children     73
## 10540 1998                                                     Drama     73
## 10541 1997                                             Action|Comedy     73
## 10542 1998                                             Horror|Sci-Fi     73
## 10543 1998                                     Drama|Sci-Fi|Thriller     73
## 10544 1998                                    Action|Sci-Fi|Thriller     73
## 10545 1998                                    Adventure|Comedy|Drama     73
## 10546 1998                      Action|Crime|Mystery|Sci-Fi|Thriller     73
## 10547 1998                                                    Comedy     73
## 10548 1998                       Comedy|Crime|Drama|Romance|Thriller     73
## 10549 1998                                             Drama|Romance     73
## 10550 1998                            Action|Romance|Sci-Fi|Thriller     73
## 10551 1998                            Animation|Children|Fantasy|War     73
## 10552 1998                                            Comedy|Romance     73
## 10553 1971                                     Action|Crime|Thriller     73
## 10554 1976                                                     Drama     73
## 10555 1988                                                     Drama     73
## 10556 1984                                             Comedy|Sci-Fi     73
## 10557 1986                                 Adventure|Fantasy|Musical     73
## 10558 1985                                              Comedy|Drama     73
## 10559 1980                                   Horror|Mystery|Thriller     73
## 10560 1978                                                    Horror     73
## 10561 1988                                           Horror|Thriller     73
## 10562 1982                                           Horror|Thriller     73
## 10563 1973                                            Horror|Mystery     73
## 10564 1987                                 Action|Comedy|Crime|Drama     73
## 10565 1984                                             Comedy|Horror     73
## 10566 1990                                             Comedy|Horror     73
## 10567 1985                  Action|Adventure|Children|Comedy|Fantasy     73
## 10568 1998                                     Action|Comedy|Romance     73
## 10569 1973                             Drama|Mystery|Sci-Fi|Thriller     73
## 10570 1989                                   Adventure|Comedy|Sci-Fi     73
## 10571 1990                           Adventure|Comedy|Sci-Fi|Western     73
## 10572 1942                                  Animation|Children|Drama     73
## 10573 1984                                          Adventure|Sci-Fi     73
## 10574 1990                              Crime|Drama|Mystery|Thriller     73
## 10575 1998                                          Action|Drama|War     73
## 10576 1985                      Adventure|Animation|Children|Fantasy     73
## 10577 1993                            Children|Comedy|Fantasy|Horror     73
## 10578 1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     73
## 10579 1998                       Action|Crime|Drama|Mystery|Thriller     73
## 10580 1998                                                    Comedy     73
## 10581 1986                                    Drama|Mystery|Thriller     73
## 10582 1967                         Animation|Children|Comedy|Musical     73
## 10583 1955                         Animation|Children|Comedy|Romance     73
## 10584 1989                 Animation|Children|Comedy|Musical|Romance     73
## 10585 1992                                           Children|Comedy     73
## 10586 1953                        Animation|Children|Fantasy|Musical     73
## 10587 1990                              Adventure|Animation|Children     73
## 10588 1977                  Adventure|Animation|Children|Crime|Drama     73
## 10589 1985                                Adventure|Children|Fantasy     73
## 10590 1959                                Animation|Children|Musical     73
## 10591 1982                                   Action|Adventure|Sci-Fi     73
## 10592 1984                                  Action|Adventure|Fantasy     73
## 10593 1989                   Animation|Children|Comedy|Drama|Fantasy     73
## 10594 1991                                   Children|Comedy|Fantasy     73
## 10595 1985                                     Comedy|Fantasy|Sci-Fi     73
## 10596 1978                Adventure|Animation|Children|Drama|Fantasy     73
## 10597 1982                        Adventure|Animation|Children|Drama     73
## 10598 1982                                         Adventure|Fantasy     73
## 10599 1991              Adventure|Animation|Children|Musical|Western     73
## 10600 1985                                 Adventure|Fantasy|Romance     73
## 10601 1984                                            Comedy|Romance     73
## 10602 1986                                     Comedy|Fantasy|Horror     73
## 10603 1980                                          Adventure|Comedy     73
## 10604 1986                                     Crime|Horror|Thriller     73
## 10605 1984                                Adventure|Children|Fantasy     73
## 10606 1987                                Action|Comedy|Drama|Horror     73
## 10607 1998                                    Action|Horror|Thriller     73
## 10608 1988                                            Comedy|Fantasy     73
## 10609 1988                                  Action|Adventure|Fantasy     73
## 10610 1987                                        Action|Crime|Drama     73
## 10611 1998                                                    Comedy     73
## 10612 1998                                                     Drama     73
## 10613 1997                            Horror|Mystery|Sci-Fi|Thriller     73
## 10614 1989                                      Comedy|Drama|Romance     73
## 10615 1992                                              Comedy|Drama     73
## 10616 1998                              Action|Comedy|Crime|Thriller     73
## 10617 1998                                     Action|Crime|Thriller     73
## 10618 1982                             Action|Horror|Sci-Fi|Thriller     73
## 10619 1992                                        Comedy|Crime|Drama     73
## 10620 1990                                     Drama|Fantasy|Romance     73
## 10621 1998               Adventure|Animation|Children|Comedy|Fantasy     73
## 10622 1992                                                    Comedy     73
## 10623 1998                                                     Drama     73
## 10624 1998                                    Comedy|Horror|Thriller     73
## 10625 1998                                              Comedy|Drama     73
## 10626 1998                                      Comedy|Drama|Fantasy     73
## 10627 1997                                  Comedy|Drama|Romance|War     73
## 10628 1990                                   Fantasy|Horror|Thriller     73
## 10629 1998                                               Crime|Drama     73
## 10630 1998                                                    Comedy     73
## 10631 1998                                                   Romance     73
## 10632 1998                                           Action|Thriller     73
## 10633 1998                       Adventure|Animation|Children|Comedy     73
## 10634 1998                                                     Drama     73
## 10635 1984                                              Comedy|Crime     73
## 10636 1998                                              Comedy|Crime     73
## 10637 1998                                      Crime|Drama|Thriller     73
## 10638 1998                                         Animation|Musical     73
## 10639 1998                                              Comedy|Drama     73
## 10640 1998                                      Comedy|Drama|Romance     73
## 10641 1985                                 Action|Adventure|Thriller     73
## 10642 1982                           Action|Adventure|Drama|Thriller     73
## 10643 1988                             Action|Adventure|Thriller|War     73
## 10644 1984                           Action|Adventure|Comedy|Romance     73
## 10645 1979                                              Action|Drama     73
## 10646 1982                                              Action|Drama     73
## 10647 1985                                              Action|Drama     73
## 10648 1990                                              Action|Drama     73
## 10649 1984                                                     Drama     73
## 10650 1986                                    Action|Adventure|Drama     73
## 10651 1989                           Action|Adventure|Children|Drama     73
## 10652 1998                                            Comedy|Romance     73
## 10653 1998                                          Action|Drama|War     73
## 10654 1998                                             Horror|Sci-Fi     73
## 10655 1998                   Action|Adventure|Drama|Fantasy|Thriller     73
## 10656 1998                                              Comedy|Drama     73
## 10657 1987                                                    Horror     73
## 10658 1986                              Drama|Horror|Sci-Fi|Thriller     73
## 10659 1974                                                    Horror     73
## 10660 1986                                                    Horror     73
## 10661 1986                              Crime|Drama|Mystery|Thriller     73
## 10662 1986                                          Adventure|Comedy     73
## 10663 1999                                           Action|Thriller     73
## 10664 1973                                          Animation|Sci-Fi     73
## 10665 1999                                              Comedy|Crime     73
## 10666 1976                                   Action|Adventure|Sci-Fi     73
## 10667 1968                                       Action|Drama|Sci-Fi     73
## 10668 1999                                                     Drama     73
## 10669 1998                                     Comedy|Crime|Thriller     73
## 10670 1988                                     Drama|Horror|Thriller     73
## 10671 1999                                                    Comedy     73
## 10672 1999                                           Horror|Thriller     73
## 10673 1999                                    Action|Sci-Fi|Thriller     73
## 10674 1999                                            Comedy|Romance     73
## 10675 1999                                              Comedy|Crime     73
## 10676 1992                                             Action|Comedy     73
## 10677 1998                                              Comedy|Drama     73
## 10678 1999                                                    Comedy     73
## 10679 1999                                            Crime|Thriller     73
## 10680 1999                                             Comedy|Horror     73
## 10681 1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     73
## 10682 1999                                   Action|Adventure|Sci-Fi     73
## 10683 1975                              Comedy|Horror|Musical|Sci-Fi     73
## 10684 1999                                            Comedy|Romance     73
## 10685 1999                                   Action|Adventure|Comedy     73
## 10686 1999                        Adventure|Animation|Children|Drama     73
## 10687 1998                                              Action|Crime     73
## 10688 1999                                                    Comedy     73
## 10689 1990                                             Comedy|Horror     73
## 10690 1999                                  Animation|Comedy|Musical     73
## 10691 1999                              Action|Comedy|Sci-Fi|Western     73
## 10692 1999                                            Comedy|Romance     73
## 10693 1999                                                  Thriller     73
## 10694 1999                                     Drama|Horror|Thriller     73
## 10695 1999                                    Drama|Mystery|Thriller     73
## 10696 1999                                           Horror|Thriller     73
## 10697 1984                                      Action|Comedy|Sci-Fi     73
## 10698 1989                                     Comedy|Fantasy|Sci-Fi     73
## 10699 1999                          Action|Adventure|Children|Comedy     73
## 10700 1999                             Action|Horror|Sci-Fi|Thriller     73
## 10701 1999                                     Action|Comedy|Fantasy     73
## 10702 1999                                            Comedy|Romance     73
## 10703 1960                                  Action|Drama|Romance|War     73
## 10704 1986                                  Adventure|Drama|Thriller     73
## 10705 1986                                     Comedy|Horror|Musical     73
## 10706 1999                 Adventure|Animation|Children|Drama|Sci-Fi     73
## 10707 1999                                      Drama|Horror|Mystery     73
## 10708 1999                                                    Comedy     73
## 10709 1980                                                    Comedy     73
## 10710 1988                              Comedy|Drama|Fantasy|Romance     73
## 10711 1990                                           Children|Comedy     73
## 10712 1983                                           Children|Comedy     73
## 10713 1992                                             Action|Sci-Fi     73
## 10714 1999                                   Horror|Mystery|Thriller     73
## 10715 1999                                             Drama|Romance     73
## 10716 1999                                                    Comedy     73
## 10717 1979                                                     Drama     73
## 10718 1985                                    Comedy|Horror|Thriller     73
## 10719 1972                                  Adventure|Drama|Thriller     73
## 10720 1981                                         Adventure|Fantasy     73
## 10721 1991                                   Action|Adventure|Comedy     73
## 10722 1999                         Action|Adventure|Comedy|Drama|War     73
## 10723 1988                                             Horror|Sci-Fi     73
## 10724 1979                                             Horror|Sci-Fi     73
## 10725 1983                                                    Comedy     73
## 10726 1990                          Action|Adventure|Sci-Fi|Thriller     73
## 10727 1986                                                    Comedy     73
## 10728 1973                                                   Western     73
## 10729 1978                                             Action|Comedy     73
## 10730 1964                                 Action|Adventure|Thriller     73
## 10731 1963                                 Action|Adventure|Thriller     73
## 10732 1964                                            Action|Western     73
## 10733 1996                                      Crime|Drama|Thriller     73
## 10734 1992                                           Children|Comedy     73
## 10735 1999                               Action|Crime|Drama|Thriller     73
## 10736 1981                           Adventure|Comedy|Fantasy|Sci-Fi     73
## 10737 1999                                           Horror|Thriller     73
## 10738 1987                        Action|Crime|Drama|Sci-Fi|Thriller     73
## 10739 1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     73
## 10740 1999                                      Comedy|Drama|Fantasy     73
## 10741 1999                                            Drama|Thriller     73
## 10742 1990                                             Comedy|Horror     73
## 10743 1982                                                    Horror     73
## 10744 1985                                      Comedy|Horror|Sci-Fi     73
## 10745 1989                                               Crime|Drama     73
## 10746 1993                                              Action|Drama     73
## 10747 1987                                             Comedy|Sci-Fi     73
## 10748 1973               Adventure|Animation|Children|Comedy|Musical     73
## 10749 1981                                           Adventure|Drama     73
## 10750 1999                                  Adventure|Comedy|Fantasy     73
## 10751 1984                                   Adventure|Comedy|Sci-Fi     73
## 10752 1999                            Fantasy|Horror|Mystery|Romance     73
## 10753 1999                                 Action|Adventure|Thriller     73
## 10754 1987                                            Drama|Thriller     73
## 10755 1988                              Action|Comedy|Crime|Thriller     73
## 10756 1991                              Comedy|Drama|Fantasy|Romance     73
## 10757 1999                    Action|Fantasy|Horror|Mystery|Thriller     73
## 10758 1999               Adventure|Animation|Children|Comedy|Fantasy     73
## 10759 1999                                                    Comedy     73
## 10760 1999                                               Crime|Drama     73
## 10761 1958                                  Action|Adventure|Fantasy     73
## 10762 1999                                                     Drama     73
## 10763 1999                                                     Drama     73
## 10764 1999                                              Comedy|Drama     73
## 10765 1999                                   Adventure|Comedy|Sci-Fi     73
## 10766 1999                                                     Drama     73
## 10767 1982                                      Comedy|Drama|Romance     73
## 10768 1993                                        Animation|Children     73
## 10769 1992                                                     Drama     73
## 10770 1992                                                    Comedy     73
## 10771 1993                                                    Comedy     73
## 10772 1992                                              Comedy|Drama     73
## 10773 1992                               Action|Crime|Drama|Thriller     73
## 10774 1992                                              Comedy|Drama     73
## 10775 1992                               Action|Crime|Drama|Thriller     73
## 10776 1992                             Action|Crime|Thriller|Western     73
## 10777 2000                            Comedy|Horror|Mystery|Thriller     73
## 10778 2000                               Action|Crime|Drama|Thriller     73
## 10779 2000                                      Crime|Drama|Thriller     73
## 10780 2000                                    Horror|Sci-Fi|Thriller     73
## 10781 1999                                               Crime|Drama     73
## 10782 1986                                             Drama|Romance     73
## 10783 1988                                      Comedy|Drama|Romance     73
## 10784 1975                                               Crime|Drama     73
## 10785 1973                                              Comedy|Drama     73
## 10786 1989                                                     Drama     73
## 10787 1991                                             Drama|Romance     73
## 10788 1990                     Action|Children|Comedy|Fantasy|Sci-Fi     73
## 10789 1991                                   Action|Children|Fantasy     73
## 10790 1993                  Action|Adventure|Children|Comedy|Fantasy     73
## 10791 1987                                          Comedy|Drama|War     73
## 10792 1977                                    Adventure|Drama|Sci-Fi     73
## 10793 1990                                            Horror|Mystery     73
## 10794 1985                                 Adventure|Fantasy|Romance     73
## 10795 2000                                      Comedy|Drama|Romance     73
## 10796 1991                                  Adventure|Comedy|Fantasy     73
## 10797 1990                                     Drama|Horror|Thriller     73
## 10798 1987                                    Action|Sci-Fi|Thriller     73
## 10799 2000                             Crime|Horror|Mystery|Thriller     73
## 10800 1980                                                    Comedy     73
## 10801 2000                                             Drama|Romance     73
## 10802 2000                                       Action|Thriller|War     73
## 10803 1995                                             Horror|Sci-Fi     73
## 10804 1996                                             Horror|Sci-Fi     73
## 10805 2000                                    Action|Adventure|Drama     73
## 10806 1999                                                    Comedy     73
## 10807 2000                                             Action|Sci-Fi     73
## 10808 2000                                                    Comedy     73
## 10809 2000                                 Action|Adventure|Thriller     73
## 10810 1974                                            Comedy|Western     73
## 10811 1965                             Action|Drama|Thriller|Western     73
## 10812 1988                        Adventure|Animation|Fantasy|Sci-Fi     73
## 10813 1982                                                    Comedy     73
## 10814 1986                             Comedy|Horror|Sci-Fi|Thriller     73
## 10815 1987                                             Action|Sci-Fi     73
## 10816 1979                                   Action|Adventure|Sci-Fi     73
## 10817 1981                          Action|Adventure|Sci-Fi|Thriller     73
## 10818 1985                                   Action|Adventure|Sci-Fi     73
## 10819 1987                         Film-Noir|Horror|Mystery|Thriller     73
## 10820 2000                                              Action|Crime     73
## 10821 1987                                            Horror|Western     73
## 10822 1992                            Crime|Drama|Film-Noir|Thriller     73
## 10823 1973                                               Crime|Drama     73
## 10824 1986                           Action|Adventure|Comedy|Fantasy     73
## 10825 2000                Action|Adventure|Animation|Children|Sci-Fi     73
## 10826 2000                                 Animation|Children|Comedy     73
## 10827 2000                                          Adventure|Comedy     73
## 10828 2000                                          Action|Drama|War     73
## 10829 2000                                            Drama|Thriller     73
## 10830 1993                               Action|Crime|Drama|Thriller     73
## 10831 2000                                             Comedy|Horror     73
## 10832 2000                                   Action|Adventure|Sci-Fi     73
## 10833 2000                                                    Comedy     73
## 10834 2000                                    Horror|Sci-Fi|Thriller     73
## 10835 1983                                                    Horror     73
## 10836 2000                                                    Comedy     73
## 10837 2000                                                    Comedy     73
## 10838 2000                                                    Comedy     73
## 10839 2000                                                     Drama     73
## 10840 2000                                                     Drama     73
## 10841 1987                                                    Horror     73
## 10842 2000                                                    Comedy     73
## 10843 2000                                                     Drama     73
## 10844 2000                                                     Drama     73
## 10845 2000                                                    Comedy     73
## 10846 1985                                                    Horror     73
## 10847 1987                                             Comedy|Horror     73
## 10848 2000                                                     Drama     73
## 10849 1981                                                    Horror     73
## 10850 1994                                             Action|Comedy     73
## 10851 2000                                             Action|Comedy     73
## 10852 2000                                                    Comedy     73
## 10853 2000                                    Action|Sci-Fi|Thriller     73
## 10854 2000                                              Drama|Sci-Fi     73
## 10855 2000                                      Action|Drama|Romance     73
## 10856 1987                                                    Comedy     73
## 10857 1986                       Adventure|Animation|Children|Sci-Fi     73
## 10858 1987                                                     Drama     73
## 10859 2000                                     Comedy|Crime|Thriller     73
## 10860 2000                                             Drama|Romance     73
## 10861 2000                                             Comedy|Sci-Fi     73
## 10862 2000                                            Comedy|Romance     73
## 10863 2000                                                     Drama     73
## 10864 2000                                                     Drama     73
## 10865 2000                                              Comedy|Crime     73
## 10866 2000                                    Adventure|Comedy|Crime     73
## 10867 2000                                      Crime|Drama|Thriller     73
## 10868 2001                                             Drama|Romance     73
## 10869 2001                                            Comedy|Romance     73
## 10870 1984                                 Action|Comedy|Crime|Drama     73
## 10871 1987                                Action|Adventure|Drama|War     73
## 10872 1981                                   Fantasy|Horror|Thriller     73
## 10873 1987                                    Comedy|Horror|Thriller     73
## 10874 1987                                   Adventure|Comedy|Horror     73
## 10875 2001                                           Horror|Thriller     73
## 10876 1984                                                    Comedy     73
## 10877 2001                                                 Drama|War     73
## 10878 2000                                          Mystery|Thriller     73
## 10879 2001                          Action|Adventure|Children|Comedy     73
## 10880 2001                                               Crime|Drama     73
## 10881 2001                                      Comedy|Drama|Romance     73
## 10882 2001                                                    Comedy     73
## 10883 1983                                        Action|Crime|Drama     73
## 10884 2001                          Action|Adventure|Comedy|Thriller     73
## 10885 1983                           Action|Adventure|Fantasy|Sci-Fi     73
## 10886 2001                                     Action|Comedy|Romance     73
## 10887 2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     73
## 10888 2001                                     Drama|Musical|Romance     73
## 10889 2001                                  Action|Drama|Romance|War     73
## 10890 2001                                                    Comedy     73
## 10891 2001                                             Comedy|Sci-Fi     73
## 10892 2001                                        Action|Crime|Drama     73
## 10893 1991                                     Action|Crime|Thriller     73
## 10894 1982                                            Comedy|Romance     73
## 10895 2001                                          Action|Adventure     73
## 10896 2001                                     Action|Crime|Thriller     73
## 10897 2001                                    Adventure|Drama|Sci-Fi     73
## 10898 2000                                               Crime|Drama     73
## 10899 2001                                                    Comedy     73
## 10900 1981                                                    Comedy     73
## 10901 1977                                                    Horror     73
## 10902 1972                             Action|Drama|Romance|Thriller     73
## 10903 1978                                                    Action     73
## 10904 1981                                    Action|Sci-Fi|Thriller     73
## 10905 1972                                              Action|Crime     73
## 10906 2001                                            Comedy|Romance     73
## 10907 2001                                              Action|Drama     73
## 10908 1998                               Animation|Drama|Sci-Fi|IMAX     73
## 10909 1988                                  Adventure|Comedy|Fantasy     73
## 10910 1988                                        Action|Crime|Drama     73
## 10911 1988                      Adventure|Animation|Children|Fantasy     73
## 10912 1985                                      Comedy|Horror|Sci-Fi     73
## 10913 1988                                    Action|Sci-Fi|Thriller     73
## 10914 1989                                   Adventure|Comedy|Sci-Fi     73
## 10915 1989                                                 Drama|War     73
## 10916 1989                                                    Action     73
## 10917 1989                                    Horror|Sci-Fi|Thriller     73
## 10918 1989                                                    Comedy     73
## 10919 1989                                            Comedy|Romance     73
## 10920 1989                                  Animation|Comedy|Musical     73
## 10921 2001                          Action|Adventure|Sci-Fi|Thriller     73
## 10922 2001                                              Comedy|Drama     73
## 10923 2000                                      Comedy|Drama|Musical     73
## 10924 2001                             Action|Adventure|Drama|Sci-Fi     73
## 10925 1982                                             Comedy|Horror     73
## 10926 2001                                             Action|Comedy     73
## 10927 1980                                              Drama|Sci-Fi     73
## 10928 2001                                                    Comedy     73
## 10929 2001                             Drama|Horror|Mystery|Thriller     73
## 10930 2001                                                    Comedy     73
## 10931 2001                                          Adventure|Comedy     73
## 10932 2001                                                    Horror     73
## 10933 2001                                     Drama|Musical|Romance     73
## 10934 2001                                      Crime|Drama|Thriller     73
## 10935 1937                   Action|Adventure|Drama|Romance|Thriller     73
## 10936 2001                                                    Comedy     73
## 10937 2001                                            Comedy|Romance     73
## 10938 1993                                             Action|Comedy     73
## 10939 2001                    Crime|Drama|Film-Noir|Mystery|Thriller     73
## 10940 1971                                     Action|Crime|Thriller     73
## 10941 2001                             Crime|Horror|Mystery|Thriller     73
## 10942 2001                                   Animation|Drama|Fantasy     73
## 10943 2001                              Drama|Fantasy|Mystery|Sci-Fi     73
## 10944 2001                             Drama|Mystery|Sci-Fi|Thriller     73
## 10945 2001               Adventure|Animation|Children|Comedy|Fantasy     73
## 10946 2001                                    Comedy|Fantasy|Romance     73
## 10947 2001                                Adventure|Children|Fantasy     73
## 10948 2001                                  Adventure|Comedy|Fantasy     73
## 10949 1982                                  Action|Adventure|Fantasy     73
## 10950 2001                                            Crime|Thriller     73
## 10951 2001                                                    Comedy     73
## 10952 2001                           Mystery|Romance|Sci-Fi|Thriller     73
## 10953 2001                                              Comedy|Drama     73
## 10954 1991                           Adventure|Comedy|Fantasy|Sci-Fi     73
## 10955 1983                                   Action|Adventure|Sci-Fi     73
## 10956 2001                                                    Comedy     73
## 10957 2001                                         Adventure|Fantasy     73
## 10958 2001                                             Drama|Romance     73
## 10959 2001                                          Action|Drama|War     73
## 10960 2001                                                     Drama     73
## 10961 2002                                                    Comedy     73
## 10962 1984                                  Action|Adventure|Fantasy     73
## 10963 1993                                              Action|Drama     73
## 10964 2002                           Action|Adventure|Drama|Thriller     73
## 10965 2002                                             Action|Sci-Fi     73
## 10966 1993                                     Children|Comedy|Drama     73
## 10967 2001                                      Comedy|Crime|Mystery     73
## 10968 1976                                                    Comedy     73
## 10969 2000                           Animation|Fantasy|Horror|Sci-Fi     73
## 10970 2002                                            Comedy|Romance     73
## 10971 2002                                          Action|Drama|War     73
## 10972 1992                         Animation|Children|Comedy|Musical     73
## 10973 1979                                                    Horror     73
## 10974 1980                                             Comedy|Horror     73
## 10975 1981                                                    Horror     73
## 10976 2002                       Adventure|Animation|Children|Comedy     73
## 10977 2002                             Action|Horror|Sci-Fi|Thriller     73
## 10978 1980                                          Action|Adventure     73
## 10979 2002                                                  Thriller     73
## 10980 2002                                                    Comedy     73
## 10981 2001                                      Crime|Drama|Thriller     73
## 10982 2002                                            Comedy|Romance     73
## 10983 2002                         Action|Adventure|Fantasy|Thriller     73
## 10984 2002                                      Crime|Drama|Thriller     73
## 10985 2002                          Action|Adventure|Sci-Fi|Thriller     73
## 10986 2002                              Action|Adventure|Sci-Fi|IMAX     73
## 10987 2002                       Action|Crime|Drama|Mystery|Thriller     73
## 10988 2002                                                    Comedy     73
## 10989 2002                                   Action|Mystery|Thriller     73
## 10990 2002                      Action|Crime|Mystery|Sci-Fi|Thriller     73
## 10991 2002                                            Comedy|Romance     73
## 10992 1993                                   Children|Comedy|Romance     73
## 10993 2002                                      Action|Comedy|Sci-Fi     73
## 10994 2002                                  Action|Adventure|Fantasy     73
## 10995 2002                                               Crime|Drama     73
## 10996 2002                                                    Comedy     73
## 10997 2002                                    Horror|Sci-Fi|Thriller     73
## 10998 2002                                        Adventure|Children     73
## 10999 2002                                     Action|Crime|Thriller     73
## 11000 2002                                   Adventure|Drama|Romance     73
## 11001 1981                          Action|Adventure|Fantasy|Romance     73
## 11002 1991                                 Action|Comedy|Romance|War     73
## 11003 2002                                                    Comedy     73
## 11004 2002                                              Action|Crime     73
## 11005 1991                                                    Comedy     73
## 11006 2002                                      Comedy|Drama|Romance     73
## 11007 2001                               Adventure|Animation|Fantasy     73
## 11008 2002                                             Action|Comedy     73
## 11009 2002                                    Crime|Mystery|Thriller     73
## 11010 2002                             Comedy|Drama|Romance|Thriller     73
## 11011 2002                                               Documentary     73
## 11012 2002                                      Comedy|Drama|Romance     73
## 11013 2002                                   Horror|Mystery|Thriller     73
## 11014 1988                                       Animation|Drama|War     73
## 11015 1993                                             Action|Horror     73
## 11016 1981                                        Documentary|Horror     73
## 11017 1978                                        Documentary|Horror     73
## 11018 1985                                        Documentary|Horror     73
## 11019 1990                                        Documentary|Horror     73
## 11020 1981                              Action|Horror|Mystery|Sci-Fi     73
## 11021 2002                                                     Drama     73
## 11022 2002                                         Adventure|Fantasy     73
## 11023 2002                  Adventure|Animation|Children|Sci-Fi|IMAX     73
## 11024 2002                                      Comedy|Drama|Romance     73
## 11025 2002                                    Action|Sci-Fi|Thriller     73
## 11026 2002                                                    Comedy     73
## 11027 2002                                            Comedy|Romance     73
## 11028 2002                                         Adventure|Fantasy     73
## 11029 2002                                               Crime|Drama     73
## 11030 2002                                                     Drama     73
## 11031 2002                                               Crime|Drama     73
## 11032 2002                                      Crime|Drama|Thriller     73
## 11033 2002                                               Crime|Drama     73
## 11034 2002                                Comedy|Crime|Drama|Musical     73
## 11035 2002                     Action|Adventure|Crime|Drama|Thriller     73
## 11036 1993                                                    Comedy     73
## 11037 2003                                            Comedy|Romance     73
## 11038 2003                                   Action|Adventure|Comedy     73
## 11039 2003                                              Action|Crime     73
## 11040 2003                                                    Comedy     73
## 11041 2003                                                    Comedy     73
## 11042 2003                                     Action|Drama|Thriller     73
## 11043 2002                                      Comedy|Drama|Romance     73
## 11044 2001                                        Comedy|Crime|Drama     73
## 11045 2002                                            Drama|Thriller     73
## 11046 2003                                                    Comedy     73
## 11047 2003                                              Comedy|Crime     73
## 11048 1971                                            Mystery|Sci-Fi     73
## 11049 2003                             Crime|Horror|Mystery|Thriller     73
## 11050 2003                          Action|Adventure|Sci-Fi|Thriller     73
## 11051 2003                                           Children|Comedy     73
## 11052 2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11053 2003                              Comedy|Drama|Fantasy|Romance     73
## 11054 2003                       Adventure|Animation|Children|Comedy     73
## 11055 2003                                              Action|Crime     73
## 11056 2003                                           Horror|Thriller     73
## 11057 2003                                     Action|Crime|Thriller     73
## 11058 1991                                            Drama|Thriller     73
## 11059 2002                                      Action|Horror|Sci-Fi     73
## 11060 2003                    Action|Adventure|Comedy|Crime|Thriller     73
## 11061 2003                                   Action|Adventure|Sci-Fi     73
## 11062 2003                                   Action|Adventure|Sci-Fi     73
## 11063 2003                           Action|Adventure|Comedy|Fantasy     73
## 11064 2003                              Action|Comedy|Crime|Thriller     73
## 11065 1994                                           Children|Comedy     73
## 11066 2003                  Action|Adventure|Comedy|Romance|Thriller     73
## 11067 2003                                                     Drama     73
## 11068 2003                                 Action|Adventure|Children     73
## 11069 1985                              Action|Comedy|Crime|Thriller     73
## 11070 2003                                                    Comedy     73
## 11071 2003                                   Children|Comedy|Fantasy     73
## 11072 2003                                           Action|Thriller     73
## 11073 1988                                             Comedy|Horror     73
## 11074 2003                                    Action|Horror|Thriller     73
## 11075 1990                                      Comedy|Horror|Sci-Fi     73
## 11076 1985                                          Action|Adventure     73
## 11077 2003                                           Horror|Thriller     73
## 11078 2002                                           Horror|Thriller     73
## 11079 2003                                        Comedy|Crime|Drama     73
## 11080 2003                                      Comedy|Drama|Romance     73
## 11081 1985                                    Horror|Sci-Fi|Thriller     73
## 11082 2003                                     Action|Fantasy|Horror     73
## 11083 2002                                             Comedy|Horror     73
## 11084 1983                            Fantasy|Horror|Sci-Fi|Thriller     73
## 11085 1991                                               Crime|Drama     73
## 11086 1985                                   Horror|Mystery|Thriller     73
## 11087 1983                                                    Comedy     73
## 11088 1987                                                    Comedy     73
## 11089 2000                                     Drama|Horror|Thriller     73
## 11090 1995                        Action|Adventure|Animation|Fantasy     73
## 11091 2003                                            Comedy|Musical     73
## 11092 2003                                       Crime|Drama|Mystery     73
## 11093 2003                                     Action|Crime|Thriller     73
## 11094 2003                                                     Drama     73
## 11095 2003                                             Comedy|Horror     73
## 11096 2002    Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller     73
## 11097 2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11098 2003                                   Children|Comedy|Fantasy     73
## 11099 2003                                       Adventure|Drama|War     73
## 11100 2003                                           Horror|Thriller     73
## 11101 2003                      Crime|Drama|Mystery|Romance|Thriller     73
## 11102 2003                                              Comedy|Crime     73
## 11103 1991                                        Action|Crime|Drama     73
## 11104 1978                            Horror|Mystery|Sci-Fi|Thriller     73
## 11105 1991                        Action|Comedy|Crime|Drama|Thriller     73
## 11106 2000                              Action|Drama|Horror|Thriller     73
## 11107 1985                                            Comedy|Fantasy     73
## 11108 1990                                          Children|Fantasy     73
## 11109 1987                            Comedy|Fantasy|Horror|Thriller     73
## 11110 1972                                           Adventure|Drama     73
## 11111 2002                                    Action|Adventure|Drama     73
## 11112 1984                  Adventure|Animation|Drama|Fantasy|Sci-Fi     73
## 11113 1993                                             Comedy|Horror     73
## 11114 2003                                      Comedy|Drama|Romance     73
## 11115 2003                                Action|Adventure|Drama|War     73
## 11116 2003                                     Drama|Fantasy|Romance     73
## 11117 2003                            Action|Adventure|Drama|Fantasy     73
## 11118 2003                                           Children|Comedy     73
## 11119 2001                 Action|Comedy|Crime|Drama|Horror|Thriller     73
## 11120 2004                                     Drama|Sci-Fi|Thriller     73
## 11121 2003                                                     Drama     73
## 11122 2004                                            Comedy|Romance     73
## 11123 1985                                          Adventure|Comedy     73
## 11124 2004                                          Adventure|Comedy     73
## 11125 2004                                                     Drama     73
## 11126 2004                                           Adventure|Drama     73
## 11127 2004                              Action|Comedy|Crime|Thriller     73
## 11128 2004                                            Comedy|Romance     73
## 11129 2004                              Action|Drama|Horror|Thriller     73
## 11130 2004                                      Drama|Romance|Sci-Fi     73
## 11131 2004                                              Comedy|Crime     73
## 11132 2004                           Action|Adventure|Fantasy|Horror     73
## 11133 1978                                       Action|Drama|Horror     73
## 11134 1987                                             Comedy|Horror     73
## 11135 1985                                           Comedy|Thriller     73
## 11136 2004                                     Action|Drama|Thriller     73
## 11137 2004                       Action|Crime|Drama|Mystery|Thriller     73
## 11138 2004                           Action|Adventure|Fantasy|Horror     73
## 11139 2004                                Action|Adventure|Drama|War     73
## 11140 1985                                    Adventure|Drama|Sci-Fi     73
## 11141 1973                                              Action|Crime     73
## 11142 2001                                          Action|Drama|War     73
## 11143 1990                                            Comedy|Romance     73
## 11144 1985                                 Adventure|Children|Sci-Fi     73
## 11145 1979                           Action|Adventure|Crime|Thriller     73
## 11146 2000                                      Drama|Fantasy|Sci-Fi     73
## 11147 1993                                             Action|Comedy     73
## 11148 1996                                      Comedy|Horror|Sci-Fi     73
## 11149 2001                                      Comedy|Horror|Sci-Fi     73
## 11150 1998                                   Action|Adventure|Comedy     73
## 11151 2002                                                     Drama     73
## 11152 1986                                             Horror|Sci-Fi     73
## 11153 1987                                                    Horror     73
## 11154 2001                                            Comedy|Romance     73
## 11155 1979                                            Drama|Thriller     73
## 11156 2004       Adventure|Animation|Children|Comedy|Musical|Romance     73
## 11157 2004                    Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11158 2004                                                    Comedy     73
## 11159 2004                                    Adventure|Fantasy|IMAX     73
## 11160 2004                                    Action|Sci-Fi|Thriller     73
## 11161 2004                                 Animation|Children|Comedy     73
## 11162 2004                                   Comedy|Fantasy|Thriller     73
## 11163 2004                                                    Comedy     73
## 11164 1932                                        Crime|Drama|Horror     73
## 11165 2004                                 Adventure|Children|Comedy     73
## 11166 2004                                                    Comedy     73
## 11167 2004                                      Comedy|Drama|Romance     73
## 11168 2004                                       Action|Comedy|Crime     73
## 11169 2004                                               Documentary     73
## 11170 2004                              Action|Adventure|Sci-Fi|IMAX     73
## 11171 2004                                             Drama|Romance     73
## 11172 2004                                Action|Adventure|Drama|War     73
## 11173 2004                                                    Comedy     73
## 11174 2004                          Action|Adventure|Sci-Fi|Thriller     73
## 11175 2004                                     Action|Crime|Thriller     73
## 11176 2004                                    Drama|Mystery|Thriller     73
## 11177 2004                                      Comedy|Drama|Romance     73
## 11178 2004                               Action|Crime|Drama|Thriller     73
## 11179 2004                                          Adventure|Comedy     73
## 11180 2004                             Action|Horror|Sci-Fi|Thriller     73
## 11181 2004                        Action|Adventure|Animation|Fantasy     73
## 11182 1988                                                    Horror     73
## 11183 2004                                                    Comedy     73
## 11184 2004                             Action|Horror|Sci-Fi|Thriller     73
## 11185 2004                                             Comedy|Horror     73
## 11186 1980                                                    Horror     73
## 11187 2004                                                    Comedy     73
## 11188 2004                                              Drama|Sci-Fi     73
## 11189 2004                         Action|Adventure|Animation|Comedy     73
## 11190 1967                                             Comedy|Horror     73
## 11191 2004                                   Horror|Mystery|Thriller     73
## 11192 2004                                      Comedy|Drama|Romance     73
## 11193 2004                                    Drama|Mystery|Thriller     73
## 11194 2004                                   Horror|Mystery|Thriller     73
## 11195 2004                Action|Adventure|Animation|Children|Comedy     73
## 11196 2004                   Action|Adventure|Drama|Mystery|Thriller     73
## 11197 2004                              Action|Comedy|Crime|Thriller     73
## 11198 1950                                  Action|Adventure|Romance     73
## 11199 1970                                           Fantasy|Western     73
## 11200 1977                                Animation|Children|Fantasy     73
## 11201 1983                                     Action|Mystery|Sci-Fi     73
## 11202 1985                              Action|Comedy|Crime|Thriller     73
## 11203 1986                                      Crime|Drama|Thriller     73
## 11204 1987                            Fantasy|Horror|Sci-Fi|Thriller     73
## 11205 1987                             Action|Fantasy|Horror|Romance     73
## 11206 1990                                             Comedy|Horror     73
## 11207 1990                                      Crime|Drama|Thriller     73
## 11208 1991                                               Documentary     73
## 11209 1991                                     Action|Crime|Thriller     73
## 11210 1993                             Action|Adventure|Comedy|Drama     73
## 11211 1998                         Action|Documentary|Drama|Thriller     73
## 11212 1998                                     Action|Crime|Thriller     73
## 11213 1998                   Action|Adventure|Comedy|Sci-Fi|Thriller     73
## 11214 1973                               Action|Crime|Drama|Thriller     73
## 11215 1999                     Drama|Horror|Mystery|Romance|Thriller     73
## 11216 2000                                          Animation|Comedy     73
## 11217 2002                                                    Comedy     73
## 11218 2002                                                    Comedy     73
## 11219 2001                                   Horror|Mystery|Thriller     73
## 11220 2003                                          Drama|Sci-Fi|War     73
## 11221 2003                                                     Drama     73
## 11222 2003                             Action|Animation|Drama|Sci-Fi     73
## 11223 2003                                 Action|Drama|Thriller|War     73
## 11224 2004                         Adventure|Children|Comedy|Fantasy     73
## 11225 2002                                                    Horror     73
## 11226 2003                                          Mystery|Thriller     73
## 11227 2004                                            Fantasy|Horror     73
## 11228 2004                                  Action|Horror|Sci-Fi|War     73
## 11229 2003                Adventure|Animation|Fantasy|Musical|Sci-Fi     73
## 11230 2003                                           Action|Thriller     73
## 11231 2004                                      Comedy|Drama|Romance     73
## 11232 2004                                      Crime|Drama|Thriller     73
## 11233 2006                   Animation|Drama|Mystery|Sci-Fi|Thriller     73
## 11234 2004                                                     Drama     73
## 11235 2004                                                 Drama|War     73
## 11236 2004                                  Adventure|Comedy|Fantasy     73
## 11237 2004                                                     Drama     73
## 11238 2004                                                     Drama     73
## 11239 2004                                                    Comedy     73
## 11240 1977                              Animation|Fantasy|Sci-Fi|War     73
## 11241 2005                                                     Drama     73
## 11242 1991                           Action|Adventure|Fantasy|Sci-Fi     73
## 11243 2005                                           Children|Comedy     73
## 11244 2005                             Drama|Horror|Mystery|Thriller     73
## 11245 2004                                                     Drama     73
## 11246 2005                                            Comedy|Romance     73
## 11247 2005                            Action|Fantasy|Horror|Thriller     73
## 11248 2004                                             Action|Comedy     73
## 11249 1995                        Adventure|Animation|Comedy|Fantasy     73
## 11250 1966                                              Action|Drama     73
## 11251 2005                   Action|Crime|Film-Noir|Mystery|Thriller     73
## 11252 2005                                   Action|Adventure|Comedy     73
## 11253 2005                                   Adventure|Comedy|Sci-Fi     73
## 11254 2005                                  Action|Drama|Romance|War     73
## 11255 2005                                           Horror|Thriller     73
## 11256 2004                                               Crime|Drama     73
## 11257 2004                                             Drama|Mystery     73
## 11258 2005                                   Action|Adventure|Sci-Fi     73
## 11259 2005                           Action|Adventure|Comedy|Romance     73
## 11260 2005                                         Action|Crime|IMAX     73
## 11261 2005                                    Action|Horror|Thriller     73
## 11262 2005                          Action|Adventure|Sci-Fi|Thriller     73
## 11263 2005                                   Action|Adventure|Sci-Fi     73
## 11264 2005                                            Comedy|Romance     73
## 11265 2005                                    Action|Sci-Fi|Thriller     73
## 11266 2005                                   Action|Adventure|Sci-Fi     73
## 11267 2005                                              Comedy|Drama     73
## 11268 2005                                                    Comedy     73
## 11269 2005                                            Comedy|Romance     73
## 11270 2005                                     Action|Crime|Thriller     73
## 11271 2005                           Action|Crime|Drama|Thriller|War     73
## 11272 2005                                Adventure|Animation|Comedy     73
## 11273 2005                                             Action|Sci-Fi     73
## 11274 2005                                               Crime|Drama     73
## 11275 2005                               Action|Crime|Drama|Thriller     73
## 11276 2005                             Comedy|Crime|Mystery|Thriller     73
## 11277 2005                                       Crime|Drama|Western     73
## 11278 2005                                           Horror|Thriller     73
## 11279 2005                                          Action|Drama|War     73
## 11280 2005                                        Action|Crime|Drama     73
## 11281 2005                                             Drama|Romance     73
## 11282 2005                           Adventure|Drama|Horror|Thriller     73
## 11283 2005                           Adventure|Fantasy|Thriller|IMAX     73
## 11284 2005                                       Crime|Drama|Romance     73
## 11285 2005                                Adventure|Children|Fantasy     73
## 11286 2005                   Action|Adventure|Drama|Fantasy|Thriller     73
## 11287 2005                               Action|Crime|Drama|Thriller     73
## 11288 2005                                              Comedy|Crime     73
## 11289 2005                                                    Horror     73
## 11290 2006                                                    Comedy     73
## 11291 1986                                     Comedy|Fantasy|Horror     73
## 11292 2006                                            Comedy|Romance     73
## 11293 2006                                     Action|Crime|Thriller     73
## 11294 2006                                            Crime|Thriller     73
## 11295 2006                               Action|Sci-Fi|Thriller|IMAX     73
## 11296 2006                                              Comedy|Drama     73
## 11297 2006                                      Crime|Drama|Thriller     73
## 11298 2000                                      Action|Comedy|Horror     73
## 11299 2006                                     Drama|Horror|Thriller     73
## 11300 2006                                       Crime|Drama|Mystery     73
## 11301 2005                             Crime|Drama|Film-Noir|Mystery     73
## 11302 2006                                             Comedy|Horror     73
## 11303 2005                                            Drama|Thriller     73
## 11304 2005                              Action|Comedy|Crime|Thriller     73
## 11305 2006                                 Action|Adventure|Thriller     73
## 11306 2006                                    Drama|Mystery|Thriller     73
## 11307 2005                                                     Drama     73
## 11308 2006                                                    Comedy     73
## 11309 2006                    Adventure|Comedy|Drama|Fantasy|Romance     73
## 11310 2006                                  Action|Adventure|Fantasy     73
## 11311 2006                                                    Comedy     73
## 11312 2006                                                    Comedy     73
## 11313 2006                                              Action|Drama     73
## 11314 2006                               Action|Crime|Drama|Thriller     73
## 11315 2006                                 Animation|Children|Comedy     73
## 11316 2006                                    Adventure|Comedy|Drama     73
## 11317 2006                                                    Comedy     73
## 11318 2006                             Action|Comedy|Horror|Thriller     73
## 11319 2006                                             Action|Comedy     73
## 11320 2006                                Action|Comedy|Fantasy|IMAX     73
## 11321 2006                              Comedy|Drama|Fantasy|Romance     73
## 11322 2006                                                     Drama     73
## 11323 2006                                           Action|Thriller     73
## 11324 2006                             Drama|Fantasy|Mystery|Romance     73
## 11325 2006                                                    Comedy     73
## 11326 2006                                              Action|Drama     73
## 11327 2006                          Adventure|Comedy|Sci-Fi|Thriller     73
## 11328 2006                                     Drama|Fantasy|Romance     73
## 11329 2006                                  Adventure|Drama|Thriller     73
## 11330 2006                                                    Comedy     73
## 11331 2006                                    Drama|Fantasy|Thriller     73
## 11332 2006                                      Crime|Drama|Thriller     73
## 11333 2006                             Drama|Horror|Mystery|Thriller     73
## 11334 2006                                             Drama|Romance     73
## 11335 2006                                      Comedy|Drama|Romance     73
## 11336 2006                    Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11337 2006                             Drama|Mystery|Sci-Fi|Thriller     73
## 11338 2006                                     Crime|Horror|Thriller     73
## 11339 2006                                 Action|Adventure|Thriller     73
## 11340 2006                                    Action|Sci-Fi|Thriller     73
## 11341 2006                                                    Comedy     73
## 11342 2006                   Adventure|Drama|Horror|Mystery|Thriller     73
## 11343 2006                 Action|Adventure|Crime|Drama|Thriller|War     73
## 11344 2006                                  Action|Adventure|Fantasy     73
## 11345 2006                                              Action|Drama     73
## 11346 1982                                 Adventure|Animation|Drama     73
## 11347 1977                                     Comedy|Fantasy|Horror     73
## 11348 2006                                                    Comedy     73
## 11349 2006                               Action|Crime|Drama|Thriller     73
## 11350 2007                                          Adventure|Comedy     73
## 11351 2007                                            Comedy|Romance     73
## 11352 2007                                  Animation|Children|Drama     73
## 11353 2007                               Action|Comedy|Crime|Mystery     73
## 11354 1978                                          Action|Adventure     73
## 11355 2007                                      Crime|Drama|Thriller     73
## 11356 2007                                   Action|Fantasy|War|IMAX     73
## 11357 2007                                                     Drama     73
## 11358 2007                                           Horror|Thriller     73
## 11359 2007                                            Comedy|Romance     73
## 11360 2007                       Action|Crime|Horror|Sci-Fi|Thriller     73
## 11361 2007                           Adventure|Drama|Sci-Fi|Thriller     73
## 11362 2007                                            Drama|Thriller     73
## 11363 2007  Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi     73
## 11364 2007                              Crime|Drama|Mystery|Thriller     73
## 11365 2007                     Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11366 2006                                                     Drama     73
## 11367 2007                                      Comedy|Drama|Romance     73
## 11368 2007                                    Horror|Sci-Fi|Thriller     73
## 11369 2007               Adventure|Animation|Children|Comedy|Fantasy     73
## 11370 2007                           Action|Adventure|Comedy|Fantasy     73
## 11371 2006                                      Comedy|Drama|Romance     73
## 11372 2007                                            Crime|Thriller     73
## 11373 2006                                    Comedy|Horror|Thriller     73
## 11374 2007                    Action|Adventure|Crime|Horror|Thriller     73
## 11375 2006                                Action|Adventure|Drama|War     73
## 11376 2007                           Action|Adventure|Crime|Thriller     73
## 11377 2007                               Action|Sci-Fi|Thriller|IMAX     73
## 11378 2007                              Adventure|Drama|Fantasy|IMAX     73
## 11379 2007                             Drama|Fantasy|Musical|Romance     73
## 11380 2007                                          Animation|Comedy     73
## 11381 2007                                     Action|Crime|Thriller     73
## 11382 2007                                                    Comedy     73
## 11383 2007                                     Comedy|Crime|Thriller     73
## 11384 2007                                                    Comedy     73
## 11385 2007                              Action|Comedy|Crime|Thriller     73
## 11386 2007                                              Comedy|Drama     73
## 11387 2007                                      Action|Horror|Sci-Fi     73
## 11388 2007                                Action|Crime|Drama|Western     73
## 11389 2007                                         Drama|Romance|War     73
## 11390 2007                                             Drama|Mystery     73
## 11391 2004                                              Comedy|Drama     73
## 11392 2007                             Action|Horror|Sci-Fi|Thriller     73
## 11393 2007                                            Comedy|Romance     73
## 11394 2007                                    Action|Adventure|Drama     73
## 11395 2007                                    Adventure|Comedy|Drama     73
## 11396 2007                                       Crime|Drama|Mystery     73
## 11397 2007                                     Crime|Horror|Thriller     73
## 11398 2007                               Action|Crime|Drama|Thriller     73
## 11399 2007                                      Crime|Drama|Thriller     73
## 11400 2007                                      Crime|Drama|Thriller     73
## 11401 2007                                               Crime|Drama     73
## 11402 2008                                                    Comedy     73
## 11403 2007                   Action|Adventure|Animation|Fantasy|IMAX     73
## 11404 2006                              Comedy|Drama|Sci-Fi|Thriller     73
## 11405 2007                                             Horror|Sci-Fi     73
## 11406 2007                        Action|Horror|Sci-Fi|Thriller|IMAX     73
## 11407 2007                                   Animation|Comedy|Sci-Fi     73
## 11408 2007                                      Comedy|Drama|Romance     73
## 11409 2007                                              Comedy|Drama     73
## 11410 2007                             Drama|Horror|Musical|Thriller     73
## 11411 2007                                          Action|Adventure     73
## 11412 2007                                             Drama|Western     73
## 11413 2007                                      Action|Horror|Sci-Fi     73
## 11414 2008                            Action|Mystery|Sci-Fi|Thriller     73
## 11415 2008                                 Action|Drama|Thriller|War     73
## 11416 2008                                                    Comedy     73
## 11417 2008                           Action|Adventure|Fantasy|Sci-Fi     73
## 11418 2008                               Comedy|Crime|Drama|Thriller     73
## 11419 2008                    Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11420 2008                                                    Comedy     73
## 11421 2008                                Adventure|Romance|Thriller     73
## 11422 2008                                     Action|Crime|Thriller     73
## 11423 2007                                            Drama|Thriller     73
## 11424 2008                                                    Comedy     73
## 11425 2007                                                     Drama     73
## 11426 2008                                   Action|Crime|Drama|IMAX     73
## 11427 2008                                                    Action     73
## 11428 2008                              Crime|Drama|Romance|Thriller     73
## 11429 2008                                           Horror|Thriller     73
## 11430 2008                                            Comedy|Romance     73
## 11431 2008                                      Action|Comedy|Sci-Fi     73
## 11432 2008                                          Adventure|Comedy     73
## 11433 2008                                   Action|Adventure|Sci-Fi     73
## 11434 2008                               Action|Crime|Drama|Thriller     73
## 11435 2006                                   Adventure|Drama|Fantasy     73
## 11436 2008                            Action|Adventure|Comedy|Sci-Fi     73
## 11437 2008                     Action|Animation|Children|Comedy|IMAX     73
## 11438 2008                                                    Comedy     73
## 11439 2007                                               Crime|Drama     73
## 11440 2008                                     Drama|Sci-Fi|Thriller     73
## 11441 2008               Adventure|Animation|Children|Romance|Sci-Fi     73
## 11442 2008                                           Action|Thriller     73
## 11443 2008                     Action|Adventure|Comedy|Crime|Fantasy     73
## 11444 2008                                             Action|Comedy     73
## 11445 2008                    Action|Animation|Comedy|Romance|Sci-Fi     73
## 11446 2008                                      Comedy|Drama|Romance     73
## 11447 1966                                 Animation|Children|Comedy     73
## 11448 2006                      Adventure|Crime|Drama|Horror|Mystery     73
## 11449 2009                 Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     73
## 11450 2008                                               Crime|Drama     73
## 11451 2008                                                    Comedy     73
## 11452 2008                                       Action|Comedy|Crime     73
## 11453 2008                               Action|Adventure|Comedy|War     73
## 11454 2008                          Action|Adventure|Sci-Fi|Thriller     73
## 11455 2008                                        Comedy|Crime|Drama     73
## 11456 2008                                                    Comedy     73
## 11457 2008                                                    Comedy     73
## 11458 2008                               Action|Crime|Drama|Thriller     73
## 11459 2008                                      Comedy|Drama|Romance     73
## 11460 1972                                              Action|Drama     73
## 11461 2008                                                   Musical     73
## 11462 2008          Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi     73
## 11463 2009                                  Adventure|Drama|Thriller     73
## 11464 2008                                       Crime|Drama|Romance     73
## 11465 2008                                 Action|Adventure|Thriller     73
## 11466 2008                                                    Comedy     73
## 11467 2008                                 Adventure|Children|Comedy     73
## 11468 2008                                    Action|Horror|Thriller     73
## 11469 2008                                                     Drama     73
## 11470 2008                            Drama|Fantasy|Romance|Thriller     73
## 11471 2008                                                     Drama     73
## 11472 2008                                         Action|Sci-Fi|War     73
## 11473 2008                                               Crime|Drama     73
## 11474 2008                                                     Drama     73
## 11475 2008                                                     Drama     73
## 11476 1990                   Action|Adventure|Fantasy|Horror|Romance     73
## 11477 2008                             Drama|Fantasy|Mystery|Romance     73
## 11478 2008                                        Drama|Thriller|War     73
## 11479 2008                                              Comedy|Drama     73
## 11480 2006                                     Comedy|Horror|Musical     73
## 11481 2008                                          Action|Drama|War     73
## 11482 2008                                   Action|Adventure|Sci-Fi     73
## 11483 2009                                                    Horror     73
## 11484 2008                                           Horror|Thriller     73
## 11485 2009                            Action|Animation|Comedy|Sci-Fi     73
## 11486 2009                                                 Animation     73
## 11487 2008                               Comedy|Drama|Musical|Sci-Fi     73
## 11488 2008                                                    Action     73
## 11489 2009                              Crime|Drama|Mystery|Thriller     73
## 11490 2008                                       Documentary|Musical     73
## 11491 2009                                             Action|Comedy     73
## 11492 2009                                              Comedy|Drama     73
## 11493 2009                               Action|Crime|Drama|Thriller     73
## 11494 2009                                              Comedy|Drama     73
## 11495 2009                                          Action|Drama|War     73
## 11496 2009                                      Crime|Drama|Thriller     73
## 11497 2009                             Drama|Mystery|Sci-Fi|Thriller     73
## 11498 2009                                    Action|Sci-Fi|Thriller     73
## 11499 2009                              Action|Adventure|Sci-Fi|IMAX     73
## 11500 2008                                                    Comedy     73
## 11501 2009                              Crime|Drama|Mystery|Thriller     73
## 11502 2007                                                     Drama     73
## 11503 2009                                             Comedy|Horror     73
## 11504 2009                        Adventure|Animation|Children|Drama     73
## 11505 2005                          Action|Adventure|Animation|Drama     73
## 11506 2009                                            Comedy|Musical     73
## 11507 2009                                              Comedy|Crime     73
## 11508 2009                                      Crime|Drama|Thriller     73
## 11509 2008                                 Action|Drama|Thriller|War     73
## 11510 2009                                      Crime|Drama|Thriller     73
## 11511 2002                                          Animation|Comedy     73
## 11512 2009                         Action|Adventure|Animation|Horror     73
## 11513 2009                                      Comedy|Drama|Romance     73
## 11514 2009                    Adventure|Fantasy|Mystery|Romance|IMAX     73
## 11515 2009                                   Mystery|Sci-Fi|Thriller     73
## 11516 2008                                        Action|Crime|Drama     73
## 11517 1990                                            Fantasy|Horror     73
## 11518 2009                                Adventure|Animation|Sci-Fi     73
## 11519 2009                                             Comedy|Sci-Fi     73
## 11520 2009                                    Horror|Sci-Fi|Thriller     73
## 11521 2009                                                    Comedy     73
## 11522 2009                                           Horror|Thriller     73
## 11523 2009                                              Comedy|Drama     73
## 11524 2009                                              Comedy|Drama     73
## 11525 2009                                                    Comedy     73
## 11526 2009                                       Action|Comedy|Crime     73
## 11527 2009                                      Action|Comedy|Horror     73
## 11528 2009                     Adventure|Children|Drama|Fantasy|IMAX     73
## 11529 2009                                            Drama|Thriller     73
## 11530 2009                                             Drama|Romance     73
## 11531 2009                                             Action|Comedy     73
## 11532 2009                 Adventure|Animation|Children|Comedy|Crime     73
## 11533 2009                                                 Animation     73
## 11534 2009                                                     Drama     73
## 11535 2009                                                     Drama     73
## 11536 2009                              Action|Adventure|Sci-Fi|IMAX     73
## 11537 2009                                             Drama|Romance     73
## 11538 2010                              Action|Drama|Horror|Thriller     73
## 11539 2010                                    Action|Adventure|Drama     73
## 11540 2006                                   Action|Animation|Horror     73
## 11541 2009                                                     Drama     73
## 11542 2010                                    Drama|Mystery|Thriller     73
## 11543 2010                                    Drama|Mystery|Thriller     73
## 11544 2010                                              Action|Crime     73
## 11545 2010                                      Crime|Drama|Thriller     73
## 11546 2009                                      Crime|Drama|Thriller     73
## 11547 2009                               Comedy|Crime|Drama|Thriller     73
## 11548 2009                                                    Comedy     73
## 11549 2010                                             Comedy|Sci-Fi     73
## 11550 2010                 Adventure|Animation|Children|Fantasy|IMAX     73
## 11551 2010                                             Action|Comedy     73
## 11552 2009                                      Crime|Drama|Thriller     73
## 11553 2010                     Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11554 2010                                              Comedy|Drama     73
## 11555 2010                                                     Drama     73
## 11556 2010                        Action|Adventure|Drama|Romance|War     73
## 11557 2010                                                    Comedy     73
## 11558 2009                                    Horror|Sci-Fi|Thriller     73
## 11559 2009                                          Mystery|Thriller     73
## 11560 2010                                    Action|Comedy|Thriller     73
## 11561 2010          Adventure|Animation|Children|Comedy|Fantasy|IMAX     73
## 11562 2010                                            Drama|Thriller     73
## 11563 2010                             Fantasy|Romance|Thriller|IMAX     73
## 11564 2008                                  Animation|Comedy|Fantasy     73
## 11565 2010                                    Action|Sci-Fi|Thriller     73
## 11566 2010                           Animation|Children|Comedy|Crime     73
## 11567 2010           Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     73
## 11568 2010                                              Comedy|Drama     73
## 11569 2010                                           Horror|Thriller     73
## 11570 2010                                          Action|Animation     73
## 11571 2009                              Drama|Fantasy|Romance|Sci-Fi     73
## 11572 2010                                                    Action     73
## 11573 2010                                 Action|Adventure|Thriller     73
## 11574 2010                     Action|Comedy|Fantasy|Musical|Romance     73
## 11575 2010                                               Crime|Drama     73
## 11576 2010                                    Action|Horror|Thriller     73
## 11577 1989                 Action|Adventure|Animation|Fantasy|Sci-Fi     73
## 11578 2010                    Action|Adventure|Comedy|Crime|Thriller     73
## 11579 2010                                                     Drama     73
## 11580 2010                                      Crime|Drama|Thriller     73
## 11581 2010                                              Comedy|Drama     73
## 11582 2010                                      Drama|Horror|Mystery     73
## 11583 2010                                   Horror|Mystery|Thriller     73
## 11584 2010                                             Comedy|Sci-Fi     73
## 11585 2010                                  Adventure|Drama|Thriller     73
## 11586 2010              Action|Animation|Children|Comedy|Sci-Fi|IMAX     73
## 11587 2010                                            Drama|Thriller     73
## 11588 1982                                             Action|Sci-Fi     73
## 11589 2010                              Crime|Drama|Romance|Thriller     73
## 11590 2010                             Action|Adventure|Fantasy|IMAX     73
## 11591 2010                                                     Drama     73
## 11592 2009                                                    Horror     73
## 11593 2010                                                   Western     73
## 11594 2010                                                     Drama     73
## 11595 2010                                            Crime|Thriller     73
## 11596 2010                                             Comedy|Horror     73
## 11597 2011                       Action|Sci-Fi|Thriller|Western|IMAX     73
## 11598 2011                                           Sci-Fi|Thriller     73
## 11599 2011                                   Adventure|Comedy|Sci-Fi     73
## 11600 2011        Action|Adventure|Animation|Children|Comedy|Western     73
## 11601 2010                                        Action|Crime|Drama     73
## 11602 2010                                       Action|Comedy|Drama     73
## 11603 2011                      Action|Drama|Mystery|Sci-Fi|Thriller     73
## 11604 2010                                   Fantasy|Horror|Thriller     73
## 11605 2011                                              Comedy|Drama     73
## 11606 2010                                                    Action     73
## 11607 2011                          Action|Crime|Drama|Thriller|IMAX     73
## 11608 2011                                    Comedy|Fantasy|Romance     73
## 11609 2011                                      Action|Comedy|Sci-Fi     73
## 11610 2011                      Action|Adventure|Sci-Fi|Thriller|War     73
## 11611 2010                                      Comedy|Drama|Romance     73
## 11612 2010                                              Comedy|Drama     73
## 11613 2011                              Mystery|Sci-Fi|Thriller|IMAX     73
## 11614 2011                                              Comedy|Crime     73
## 11615 2010                                      Crime|Drama|Thriller     73
## 11616 2011               Action|Adventure|Drama|Fantasy|Mystery|IMAX     73
## 11617 2011                            Crime|Drama|Film-Noir|Thriller     73
## 11618 2011                      Action|Adventure|Sci-Fi|Thriller|War     73
## 11619 2011                                      Comedy|Drama|Romance     73
## 11620 2011                              Action|Drama|Sci-Fi|Thriller     73
## 11621 2011                                      Drama|Romance|Sci-Fi     73
## 11622 2011                                            Drama|Thriller     73
## 11623 2011                              Action|Crime|Horror|Thriller     73
## 11624 2011                                      Sci-Fi|Thriller|IMAX     73
## 11625 2012                              Action|Adventure|Sci-Fi|IMAX     73
## 11626 2011                                                     Drama     73
## 11627 2011                                              Comedy|Drama     73
## 11628 2011                                            Drama|Thriller     73
## 11629 2011                                              Comedy|Drama     73
## 11630 2011                                            Drama|Thriller     73
## 11631 2011                                                     Drama     73
## 11632 2012                                          Action|Adventure     73
## 11633 2012                    Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11634 2012                               Action|Adventure|Crime|IMAX     73
## 11635 2011                            Action|Adventure|Thriller|IMAX     73
## 11636 2011                                            Drama|Thriller     73
## 11637 2012                                              Action|Drama     73
## 11638 2011                                           Horror|Thriller     73
## 11639 1999                                              Comedy|Crime     73
## 11640 2012                              Action|Adventure|Sci-Fi|IMAX     73
## 11641 2011                                              Comedy|Drama     73
## 11642 2012                                       Action|Comedy|Crime     73
## 11643 2012                                                    Comedy     73
## 11644 2011                                              Action|Crime     73
## 11645 2012                             Comedy|Horror|Sci-Fi|Thriller     73
## 11646 2011                                              Comedy|Drama     73
## 11647 2012                               Action|Sci-Fi|Thriller|IMAX     73
## 11648 2011                                              Comedy|Drama     73
## 11649 2012                                                    Comedy     73
## 11650 2012                       Adventure|Animation|Children|Comedy     73
## 11651 2012                                 Action|Horror|Sci-Fi|IMAX     73
## 11652 2012                                      Comedy|Drama|Romance     73
## 11653 2012                                              Comedy|Drama     73
## 11654 1987                       Action|Adventure|Animation|Children     73
## 11655 1990                Action|Adventure|Animation|Sci-Fi|Thriller     73
## 11656 1990                         Action|Adventure|Animation|Sci-Fi     73
## 11657 2012                                            Comedy|Fantasy     73
## 11658 1992                                Action|Adventure|Animation     73
## 11659 1991                                Action|Adventure|Animation     73
## 11660 1993                                Action|Adventure|Animation     73
## 11661 2012                              Action|Adventure|Sci-Fi|IMAX     73
## 11662 2012                                             Drama|Fantasy     73
## 11663 1994                                Action|Adventure|Animation     73
## 11664 1995                                Action|Adventure|Animation     73
## 11665 2012                                    Action|Sci-Fi|Thriller     73
## 11666 1995                                Action|Adventure|Animation     73
## 11667 1990                                Action|Adventure|Animation     73
## 11668 1993                                Action|Adventure|Animation     73
## 11669 1997                                Action|Adventure|Animation     73
## 11670 2012                            Action|Adventure|Thriller|IMAX     73
## 11671 2012                                                    Comedy     73
## 11672 2012                                Adventure|Animation|Comedy     73
## 11673 2012                                               Crime|Drama     73
## 11674 2012                                            Comedy|Musical     73
## 11675 2012                                       Action|Crime|Sci-Fi     73
## 11676 2012                                             Action|Sci-Fi     73
## 11677 2012                                      Crime|Drama|Thriller     73
## 11678 2012                                             Drama|Romance     73
## 11679 2012                                              Comedy|Crime     73
## 11680 2012                                         Drama|Sci-Fi|IMAX     73
## 11681 2012                                      Crime|Drama|Thriller     73
## 11682 2012                                          Animation|Comedy     73
## 11683 2012                                              Comedy|Drama     73
## 11684 2012                                                     Drama     73
## 11685 2012                                      Adventure|Drama|IMAX     73
## 11686 2009                                   Action|Animation|Sci-Fi     73
## 11687 2012                                    Adventure|Fantasy|IMAX     73
## 11688 1993                                            Action|Fantasy     73
## 11689 2012                                     Action|Drama|Thriller     73
## 11690 2012                                     Action|Crime|Thriller     73
## 11691 2012                                      Action|Drama|Western     73
## 11692 2012                                            Drama|Thriller     73
## 11693 2013                                        Action|Crime|Drama     73
## 11694 2012                                                    Comedy     73
## 11695 2013                              Crime|Drama|Mystery|Thriller     73
## 11696 2013                                             Drama|Romance     73
## 11697 2012                                               Crime|Drama     73
## 11698 2013                              Action|Adventure|Sci-Fi|IMAX     73
## 11699 2013                                       Action|Comedy|Crime     73
## 11700 2013                                             Action|Comedy     73
## 11701 2012                                     Adventure|Crime|Drama     73
## 11702 1982                                          Action|Adventure     73
## 11703 2013                                                     Drama     73
## 11704 2013                              Action|Adventure|Sci-Fi|IMAX     73
## 11705 2013                                Action|Crime|Thriller|IMAX     73
## 11706 2013                                              Comedy|Drama     73
## 11707 2013                      Action|Adventure|Fantasy|Sci-Fi|IMAX     73
## 11708 2013                                                    Comedy     73
## 11709 2013                              Action|Adventure|Sci-Fi|IMAX     73
## 11710 2013                                  Action|Drama|Horror|IMAX     73
## 11711 2013                                  Action|Drama|Sci-Fi|IMAX     73
## 11712 2013                             Action|Adventure|Western|IMAX     73
## 11713 2013                                                     Drama     73
## 11714 2013                                           Horror|Thriller     73
## 11715 2013                           Action|Adventure|Fantasy|Sci-Fi     73
## 11716 2013                                        Action|Sci-Fi|IMAX     73
## 11717 2013                                              Action|Drama     73
## 11718 2013                                                     Drama     73
## 11719 2013                                      Comedy|Drama|Romance     73
## 11720 2013                             Adventure|Drama|Thriller|IMAX     73
## 11721 2013                              Action|Adventure|Sci-Fi|IMAX     73
## 11722 2013                                 Animation|Children|Comedy     73
## 11723 2013                                                     Drama     73
## 11724 2013                              Action|Adventure|Sci-Fi|IMAX     73
## 11725 2013                                    Adventure|Fantasy|IMAX     73
## 11726 2013                                  Action|Adventure|Fantasy     73
## 11727 2013                                        Comedy|Crime|Drama     73
## 11728 2013                                               Crime|Drama     73
## 11729 2013                                    Adventure|Comedy|Drama     73
## 11730 2013                                      Drama|Romance|Sci-Fi     73
## 11731 2013                                 Action|Drama|Thriller|War     73
## 11732 2013                                                    Comedy     73
## 11733 2013                                       Action|Drama|Sci-Fi     73
## 11734 2013                             Action|Animation|Fantasy|IMAX     73
## 11735 1991                                        Animation|Children     73
## 11736 1996                       Action|Adventure|Animation|Children     73
## 11737 2014                             Adventure|Romance|Sci-Fi|IMAX     73
## 11738   NA                                                    Comedy     73
## 11739 2014        Action|Adventure|Animation|Children|Comedy|Fantasy     73
## 11740 2013                                             Drama|Mystery     73
## 11741 2012                                      Action|Crime|Fantasy     73
## 11742 2014                                              Comedy|Drama     73
## 11743 2014                                               Sci-Fi|IMAX     73
## 11744 2014                                   Action|Crime|Drama|IMAX     73
## 11745 2013                                                    Comedy     73
## 11746 2014                                      Adventure|Drama|IMAX     73
## 11747 2013                                              Comedy|Drama     73
## 11748 2014                                     Action|Crime|Thriller     73
## 11749 2013                                                     Drama     73
## 11750 2014                                             Action|Sci-Fi     73
## 11751 2014                                   Action|Adventure|Sci-Fi     73
## 11752 2014                              Action|Adventure|Sci-Fi|IMAX     73
## 11753 2014                                              Comedy|Drama     73
## 11754 2014                            Action|Adventure|Children|IMAX     73
## 11755 2014                                        Action|Sci-Fi|IMAX     73
## 11756 2015                                 Action|Adventure|Thriller     73
## 11757 2014                                             Drama|Romance     73
## 11758 2014                                              Comedy|Drama     73
## 11759 2014                                                     Drama     73
## 11760 2014                                     Drama|Horror|Thriller     73
## 11761 2014                                                     Drama     73
## 11762 2014                                            Drama|Thriller     73
## 11763 2014                                                    Sci-Fi     73
## 11764 2014                                    Action|Horror|Thriller     73
## 11765 2014                                   Action|Adventure|Sci-Fi     73
## 11766 2014                                    Comedy|Horror|Thriller     73
## 11767 2014                                   Action|Adventure|Comedy     73
## 11768 2014                                     Action|Crime|Thriller     73
## 11769 2014                                      Crime|Drama|Thriller     73
## 11770 2014                                     Action|Mystery|Sci-Fi     73
## 11771 2014                                                Action|War     73
## 11772 2014                                       Comedy|Drama|Horror     73
## 11773 2014                            Action|Mystery|Sci-Fi|Thriller     73
## 11774 2014                                             Comedy|Horror     73
## 11775 2014                                           Action|Thriller     73
## 11776 2014                                             Drama|Western     73
## 11777 2014                                      Crime|Drama|Thriller     73
## 11778 2015                                     Drama|Sci-Fi|Thriller     73
## 11779 2012                                          Animation|Comedy     73
## 11780 2005                                         Animation|Fantasy     73
## 11781 2014                                                  Thriller     73
## 11782 2014                                        Drama|Thriller|War     73
## 11783 2014                                 Adventure|Sci-Fi|Thriller     73
## 11784 2014                                              Comedy|Drama     73
## 11785 2014                                             Drama|Romance     73
## 11786 2015                    Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11787 2014                                     Comedy|Crime|Thriller     73
## 11788 2014                                         Adventure|Fantasy     73
## 11789 2015                             Action|Adventure|Comedy|Crime     73
## 11790 2015                                           Action|Thriller     73
## 11791 2014                                                    Horror     73
## 11792 2015                          Action|Adventure|Sci-Fi|Thriller     73
## 11793 2015                      Action|Adventure|Fantasy|Sci-Fi|IMAX     73
## 11794 2016                                  Action|Adventure|Fantasy     73
## 11795 2015                                   Action|Adventure|Sci-Fi     73
## 11796 2016                            Action|Adventure|Comedy|Sci-Fi     73
## 11797 2016                           Action|Adventure|Fantasy|Sci-Fi     73
## 11798 1948                                Animation|Children|Fantasy     73
## 11799 2015                                              Comedy|Drama     73
## 11800 2015                                                   Western     73
## 11801 2014                                     Drama|Horror|Thriller     73
## 11802 2015                                                    Horror     73
## 11803 2015                                     Comedy|Romance|Sci-Fi     73
## 11804 2015                                    Adventure|Drama|Sci-Fi     73
## 11805 2015                       Adventure|Animation|Children|Comedy     73
## 11806 2016                                   Adventure|Drama|Fantasy     73
## 11807 2007                  Action|Adventure|Animation|Drama|Fantasy     73
## 11808 2015                                           Adventure|Drama     73
## 11809 2015                                       Crime|Drama|Mystery     73
## 11810 2015                                                    Horror     73
## 11811 2015                                                     Drama     73
## 11812 2015                                             Comedy|Horror     73
## 11813 2015                                        (no genres listed)     73
## 11814 2015                                                     Drama     73
## 11815 2015                                                     Drama     73
## 11816 2016                                                  Thriller     73
## 11817 2016                                                    Comedy     73
## 11818 1971                                                    Horror     73
## 11819 2016                                                  Thriller     73
## 11820 2016                                    Crime|Mystery|Thriller     73
## 11821 1987                                                    Horror     73
## 11822 2016                                                    Horror     73
## 11823 2016           Action|Adventure|Animation|Drama|Fantasy|Sci-Fi     73
## 11824   NA                                                     Drama     73
## 11825 1995                                 Action|Adventure|Thriller     74
## 11826 1995                                               Crime|Drama     74
## 11827 1995                                             Drama|Romance     74
## 11828 1996                                                    Comedy     74
## 11829 1995                                          Action|Drama|War     74
## 11830 1995                             Action|Adventure|Comedy|Crime     74
## 11831 1977                                   Action|Adventure|Sci-Fi     74
## 11832 1994                                  Comedy|Drama|Romance|War     74
## 11833 1993                                                 Drama|War     74
## 11834 1989                                     Action|Crime|Thriller     74
## 11835 1996                                                    Comedy     74
## 11836 1942                                             Drama|Romance     74
## 11837 1996                                             Drama|Romance     74
## 11838 1979                                                    Comedy     74
## 11839 1982                                     Children|Drama|Sci-Fi     74
## 11840 1975                                  Adventure|Comedy|Fantasy     74
## 11841 1980                                   Action|Adventure|Sci-Fi     74
## 11842 1983                                   Action|Adventure|Sci-Fi     74
## 11843 1970                                                 Drama|War     74
## 11844 1989                                    Children|Drama|Fantasy     74
## 11845 1992                                              Action|Crime     74
## 11846 1997                         Action|Adventure|Fantasy|Thriller     74
## 11847 1997                                              Drama|Sci-Fi     74
## 11848 1997                                             Drama|Romance     74
## 11849 1997                                             Drama|Romance     74
## 11850 1997                                 Action|Adventure|Thriller     74
## 11851 1998                                     Drama|Sci-Fi|Thriller     74
## 11852 1998                            Action|Romance|Sci-Fi|Thriller     74
## 11853 1998                              Action|Comedy|Crime|Thriller     74
## 11854 1976                                                     Drama     74
## 11855 1988                                                     Drama     74
## 11856 1987                                 Action|Comedy|Crime|Drama     74
## 11857 1992                                 Action|Comedy|Crime|Drama     74
## 11858 1998                                          Action|Drama|War     74
## 11859 1993                                                 Drama|War     74
## 11860 1998                                    Action|Horror|Thriller     74
## 11861 1998                                                     Drama     74
## 11862 1998                                                     Drama     74
## 11863 1998                                      Comedy|Drama|Romance     74
## 11864 1999                                           Action|Thriller     74
## 11865 1999                                                     Drama     74
## 11866 1999                                             Action|Sci-Fi     74
## 11867 1999                                    Action|Sci-Fi|Thriller     74
## 11868 1999                                            Comedy|Romance     74
## 11869 1999                                   Action|Adventure|Sci-Fi     74
## 11870 1978                                   Action|Adventure|Sci-Fi     74
## 11871 1999                                  Animation|Comedy|Musical     74
## 11872 1999                                     Drama|Horror|Thriller     74
## 11873 1999                                      Drama|Horror|Mystery     74
## 11874 1995               Adventure|Animation|Children|Comedy|Fantasy     75
## 11875 1995                                            Comedy|Romance     75
## 11876 1995                                   Mystery|Sci-Fi|Thriller     75
## 11877 1995                                        Drama|Thriller|War     75
## 11878 1994                                              Drama|Horror     75
## 11879 1977                                   Action|Adventure|Sci-Fi     75
## 11880 1994                                   Action|Adventure|Sci-Fi     75
## 11881 1994                                               Crime|Drama     75
## 11882 1994                                    Drama|Mystery|Thriller     75
## 11883 1994                             Action|Crime|Fantasy|Thriller     75
## 11884 1994                                  Comedy|Drama|Romance|War     75
## 11885 1994                                  Adventure|Comedy|Western     75
## 11886 1994                                   Action|Romance|Thriller     75
## 11887 1994                                    Action|Sci-Fi|Thriller     75
## 11888 1993                                   Action|Adventure|Sci-Fi     75
## 11889 1993                          Action|Adventure|Sci-Fi|Thriller     75
## 11890 1993                                             Drama|Romance     75
## 11891 1993                                                    Comedy     75
## 11892 1993                                                 Drama|War     75
## 11893 1982                                    Action|Sci-Fi|Thriller     75
## 11894 1991                                             Action|Sci-Fi     75
## 11895 1989                                     Action|Crime|Thriller     75
## 11896 1996                                            Comedy|Romance     75
## 11897 1996                                     Action|Drama|Thriller     75
## 11898 1996                                     Drama|Mystery|Western     75
## 11899 1972                                               Crime|Drama     75
## 11900 1996                                           Sci-Fi|Thriller     75
## 11901 1952                                    Comedy|Musical|Romance     75
## 11902 1954                                          Mystery|Thriller     75
## 11903 1959                 Action|Adventure|Mystery|Romance|Thriller     75
## 11904 1941                                             Drama|Mystery     75
## 11905 1955                            Crime|Mystery|Romance|Thriller     75
## 11906 1946                            Children|Drama|Fantasy|Romance     75
## 11907 1938                                            Comedy|Romance     75
## 11908 1979                                                    Comedy     75
## 11909 1989                          Action|Adventure|Sci-Fi|Thriller     75
## 11910 1980                                   Action|Adventure|Sci-Fi     75
## 11911 1987                   Action|Adventure|Comedy|Fantasy|Romance     75
## 11912 1981                                          Action|Adventure     75
## 11913 1966                                  Action|Adventure|Western     75
## 11914 1962                                                     Drama     75
## 11915 1979                                          Action|Drama|War     75
## 11916 1979                                             Horror|Sci-Fi     75
## 11917 1960                                              Crime|Horror     75
## 11918 1974                                               Crime|Drama     75
## 11919 1984                                                     Drama     75
## 11920 1973                                              Comedy|Crime     75
## 11921 1984                                    Action|Sci-Fi|Thriller     75
## 11922 1951                                     Drama|Sci-Fi|Thriller     75
## 11923 1980                                                    Horror     75
## 11924 1986                                           Adventure|Drama     75
## 11925 1993                                    Comedy|Fantasy|Romance     75
## 11926 1985                                   Adventure|Comedy|Sci-Fi     75
## 11927 1970                                                 Drama|War     75
## 11928 1974                                            Comedy|Fantasy     75
## 11929 1984                                                    Comedy     75
## 11930 1989                                          Action|Adventure     75
## 11931 1985                                                    Comedy     75
## 11932 1996                          Action|Adventure|Sci-Fi|Thriller     75
## 11933 1996                                                     Drama     75
## 11934 1986                                   Adventure|Comedy|Sci-Fi     75
## 11935 1993                                            Comedy|Romance     75
## 11936 1997                                   Action|Adventure|Comedy     75
## 11937 1997                                      Action|Comedy|Sci-Fi     75
## 11938 1997                                              Drama|Sci-Fi     75
## 11939 1997                                                     Drama     75
## 11940 1997                                             Drama|Romance     75
## 11941 1998                            Action|Romance|Sci-Fi|Thriller     75
## 11942 1986                                 Adventure|Fantasy|Musical     75
## 11943 1982                                           Horror|Thriller     75
## 11944 1984                                             Comedy|Horror     75
## 11945 1985                  Action|Adventure|Children|Comedy|Fantasy     75
## 11946 1989                                   Adventure|Comedy|Sci-Fi     75
## 11947 1990                           Adventure|Comedy|Sci-Fi|Western     75
## 11948 1984                                  Action|Adventure|Fantasy     75
## 11949 1985                                     Comedy|Fantasy|Sci-Fi     75
## 11950 1984                                Adventure|Children|Fantasy     75
## 11951 1998                                    Action|Horror|Thriller     75
## 11952 1988                                            Comedy|Fantasy     75
## 11953 1948                                      Crime|Drama|Thriller     75
## 11954 1998                                                     Drama     75
## 11955 1968                                                    Comedy     75
## 11956 1992                                                    Comedy     75
## 11957 1984                                                    Sci-Fi     75
## 11958 1998                       Adventure|Animation|Children|Comedy     75
## 11959 1985                                      Comedy|Crime|Mystery     75
## 11960 1989                                                    Comedy     75
## 11961 1998                                            Comedy|Romance     75
## 11962 1986                              Drama|Horror|Sci-Fi|Thriller     75
## 11963 1999                                              Comedy|Crime     75
## 11964 1999                                    Action|Sci-Fi|Thriller     75
## 11965 1999                                    Action|Sci-Fi|Thriller     75
## 11966 1998                                              Action|Crime     75
## 11967 1999                                                  Thriller     75
## 11968 1999                                     Drama|Horror|Thriller     75
## 11969 1988                              Comedy|Drama|Fantasy|Romance     75
## 11970 1999                                   Horror|Mystery|Thriller     75
## 11971 1990                          Action|Adventure|Sci-Fi|Thriller     75
## 11972 1999                               Action|Crime|Drama|Thriller     75
## 11973 1973                                 Action|Adventure|Thriller     75
## 11974 1999                                               Documentary     75
## 11975 1993                                              Action|Drama     75
## 11976 1987                                             Comedy|Sci-Fi     75
## 11977 1988                                    Comedy|Fantasy|Romance     75
## 11978 1999                                               Crime|Drama     75
## 11979 1992                                                     Drama     75
## 11980 2000                                                     Drama     75
## 11981 2000                                            Drama|Thriller     75
## 11982 1974                                            Comedy|Western     75
## 11983 2000                                   Action|Adventure|Sci-Fi     75
## 11984 2000                                                    Comedy     75
## 11985 1960                                   Action|Adventure|Sci-Fi     75
## 11986 2001                                                 Drama|War     75
## 11987 2000                                          Mystery|Thriller     75
## 11988 2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     75
## 11989 1989                                   Adventure|Comedy|Sci-Fi     75
## 11990 1963                             Action|Adventure|Comedy|Crime     75
## 11991 2001                             Drama|Mystery|Sci-Fi|Thriller     75
## 11992 2001                                            Comedy|Romance     75
## 11993 2001                           Mystery|Romance|Sci-Fi|Thriller     75
## 11994 1991                           Adventure|Comedy|Fantasy|Sci-Fi     75
## 11995 2001                                         Adventure|Fantasy     75
## 11996 1983                                           Sci-Fi|Thriller     75
## 11997 2002                                   Action|Adventure|Sci-Fi     75
## 11998 2002                      Action|Crime|Mystery|Sci-Fi|Thriller     75
## 11999 1981                                     Action|Drama|Thriller     75
## 12000 2002                                         Adventure|Fantasy     75
## 12001 2003                             Crime|Horror|Mystery|Thriller     75
## 12002 2003                                   Action|Adventure|Sci-Fi     75
## 12003 2000                                     Drama|Horror|Thriller     75
## 12004 2003                            Action|Adventure|Drama|Fantasy     75
## 12005 2004                                     Drama|Sci-Fi|Thriller     75
## 12006 2004                                      Drama|Romance|Sci-Fi     75
## 12007 1985                                 Adventure|Children|Sci-Fi     75
## 12008 1999                                         Documentary|Drama     75
## 12009 2004                                             Drama|Romance     75
## 12010 2004                                   Horror|Mystery|Thriller     75
## 12011 2004                            Action|Fantasy|Horror|Thriller     75
## 12012 2005                             Drama|Mystery|Sci-Fi|Thriller     75
## 12013 2004                                               Crime|Drama     75
## 12014 2005                                         Action|Crime|IMAX     75
## 12015 2005                                    Action|Sci-Fi|Thriller     75
## 12016 2005                                           Horror|Thriller     75
## 12017 2005                                            Comedy|Musical     75
## 12018 2006                                     Drama|Horror|Thriller     75
## 12019 1995                                     Comedy|Drama|Thriller     76
## 12020 1995                                   Action|Thriller|Western     76
## 12021 1993                                            Children|Drama     76
## 12022 1954                                            Comedy|Romance     76
## 12023 1939                                                     Drama     76
## 12024 1982                                                     Drama     76
## 12025 1989                                                     Drama     76
## 12026 1944                                   Comedy|Mystery|Thriller     76
## 12027 1996                                                    Comedy     76
## 12028 1988                                             Drama|Romance     76
## 12029 1953                        Animation|Children|Fantasy|Musical     76
## 12030 1998                                                     Drama     76
## 12031 1963                                 Action|Adventure|Thriller     76
## 12032 1974                                            Comedy|Western     76
## 12033 2000                                                    Comedy     76
## 12034 2000                                   Children|Comedy|Fantasy     76
## 12035 1991                                            Comedy|Western     76
## 12036 2006                                              Comedy|Drama     76
## 12037 2006                 Action|Adventure|Crime|Drama|Thriller|War     76
## 12038 2007                          Adventure|Comedy|Fantasy|Romance     76
## 12039 1995               Adventure|Animation|Children|Comedy|Fantasy     77
## 12040 1995                                     Action|Crime|Thriller     77
## 12041 1995                                 Action|Adventure|Thriller     77
## 12042 1995                                   Mystery|Sci-Fi|Thriller     77
## 12043 1995                                            Children|Drama     77
## 12044 1995                                            Comedy|Romance     77
## 12045 1995                                          Mystery|Thriller     77
## 12046 1995                                                     Drama     77
## 12047 1996                             Action|Comedy|Horror|Thriller     77
## 12048 1995                                    Action|Sci-Fi|Thriller     77
## 12049 1996                                 Action|Adventure|Thriller     77
## 12050 1995                                          Action|Drama|War     77
## 12051 1976                                      Crime|Drama|Thriller     77
## 12052 1996                                                    Comedy     77
## 12053 1995                                        Drama|Thriller|War     77
## 12054 1995                                    Action|Romance|Western     77
## 12055 1995                                     Action|Crime|Thriller     77
## 12056 1995                                       Action|Crime|Sci-Fi     77
## 12057 1995                                     Action|Crime|Thriller     77
## 12058 1995                                   Action|Adventure|Sci-Fi     77
## 12059 1994                                                    Comedy     77
## 12060 1994                                          Adventure|Comedy     77
## 12061 1994                                              Drama|Horror     77
## 12062 1977                                   Action|Adventure|Sci-Fi     77
## 12063 1994                                     Action|Crime|Thriller     77
## 12064 1995                              Action|Drama|Sci-Fi|Thriller     77
## 12065 1994                               Action|Crime|Drama|Thriller     77
## 12066 1994                               Comedy|Crime|Drama|Thriller     77
## 12067 1994                                   Action|Adventure|Sci-Fi     77
## 12068 1994                                               Crime|Drama     77
## 12069 1994                                    Adventure|Drama|Sci-Fi     77
## 12070 1995                                            Comedy|Romance     77
## 12071 1994                                                    Comedy     77
## 12072 1994                               Action|Crime|Drama|Thriller     77
## 12073 1994                             Action|Crime|Fantasy|Thriller     77
## 12074 1994                                  Comedy|Drama|Romance|War     77
## 12075 1994           Adventure|Animation|Children|Drama|Musical|IMAX     77
## 12076 1994                               Action|Comedy|Crime|Fantasy     77
## 12077 1994                                   Action|Romance|Thriller     77
## 12078 1994                  Action|Adventure|Comedy|Romance|Thriller     77
## 12079 1994                                                    Comedy     77
## 12080 1993                                   Action|Adventure|Sci-Fi     77
## 12081 1993                                                  Thriller     77
## 12082 1993                          Action|Adventure|Sci-Fi|Thriller     77
## 12083 1993                                              Comedy|Drama     77
## 12084 1982                                    Action|Sci-Fi|Thriller     77
## 12085 1993                        Animation|Children|Fantasy|Musical     77
## 12086 1990                                           Children|Comedy     77
## 12087 1990                     Comedy|Drama|Fantasy|Romance|Thriller     77
## 12088 1992               Adventure|Animation|Children|Comedy|Musical     77
## 12089 1991                                             Action|Sci-Fi     77
## 12090 1990                                   Adventure|Drama|Western     77
## 12091 1989                                     Action|Crime|Thriller     77
## 12092 1991                                     Crime|Horror|Thriller     77
## 12093 1991           Animation|Children|Fantasy|Musical|Romance|IMAX     77
## 12094 1990                                            Comedy|Romance     77
## 12095 1996                               Comedy|Crime|Drama|Thriller     77
## 12096 1996                         Action|Adventure|Mystery|Thriller     77
## 12097 1996                                Adventure|Animation|Comedy     77
## 12098 1996                                 Action|Adventure|Thriller     77
## 12099 1996                         Action|Adventure|Romance|Thriller     77
## 12100 1995                                          Animation|Sci-Fi     77
## 12101 1995                                 Animation|Children|Comedy     77
## 12102 1964                                                Comedy|War     77
## 12103 1996                          Action|Adventure|Sci-Fi|Thriller     77
## 12104 1996                                           Action|Thriller     77
## 12105 1996                          Action|Adventure|Sci-Fi|Thriller     77
## 12106 1939                        Adventure|Children|Fantasy|Musical     77
## 12107 1968                                    Adventure|Drama|Sci-Fi     77
## 12108 1988                                     Action|Crime|Thriller     77
## 12109 1971                           Children|Comedy|Fantasy|Musical     77
## 12110 1988                                              Comedy|Crime     77
## 12111 1979                                                    Comedy     77
## 12112 1982                                     Children|Drama|Sci-Fi     77
## 12113 1981                          Action|Adventure|Sci-Fi|Thriller     77
## 12114 1975                                  Adventure|Comedy|Fantasy     77
## 12115 1993                           Animation|Children|Comedy|Crime     77
## 12116 1980                                   Action|Adventure|Sci-Fi     77
## 12117 1987                   Action|Adventure|Comedy|Fantasy|Romance     77
## 12118 1981                                          Action|Adventure     77
## 12119 1985                                            Fantasy|Sci-Fi     77
## 12120 1986                            Action|Adventure|Horror|Sci-Fi     77
## 12121 1971                               Crime|Drama|Sci-Fi|Thriller     77
## 12122 1979                                          Action|Drama|War     77
## 12123 1983                                   Action|Adventure|Sci-Fi     77
## 12124 1979                                             Horror|Sci-Fi     77
## 12125 1993                    Action|Adventure|Comedy|Fantasy|Horror     77
## 12126 1985                                                 Drama|War     77
## 12127 1980                                     Action|Comedy|Musical     77
## 12128 1987                                                 Drama|War     77
## 12129 1989                Adventure|Animation|Children|Comedy|Sci-Fi     77
## 12130 1984                                    Action|Sci-Fi|Thriller     77
## 12131 1980                                                    Horror     77
## 12132 1963                                Action|Adventure|Drama|War     77
## 12133 1993                                    Comedy|Fantasy|Romance     77
## 12134 1985                                   Adventure|Comedy|Sci-Fi     77
## 12135 1988                         Action|Adventure|Animation|Sci-Fi     77
## 12136 1974                                            Comedy|Fantasy     77
## 12137 1940                        Animation|Children|Fantasy|Musical     77
## 12138 1989                                          Action|Adventure     77
## 12139 1981                                    Comedy|Horror|Thriller     77
## 12140 1978                                    Comedy|Musical|Romance     77
## 12141 1975                                             Action|Horror     77
## 12142 1996                                             Drama|Romance     77
## 12143 1997                                   Action|Adventure|Comedy     77
## 12144 1997                            Action|Adventure|Comedy|Sci-Fi     77
## 12145 1997                                 Action|Adventure|Thriller     77
## 12146 1997                                      Action|Comedy|Sci-Fi     77
## 12147 1997                                              Drama|Sci-Fi     77
## 12148 1997                          Action|Adventure|Sci-Fi|Thriller     77
## 12149 1990                                 Action|Adventure|Thriller     77
## 12150 1997                                     Drama|Sci-Fi|Thriller     77
## 12151 1997                                             Action|Sci-Fi     77
## 12152 1998                                       Comedy|Drama|Sci-Fi     77
## 12153 1997                                             Drama|Romance     77
## 12154 1997                                             Drama|Romance     77
## 12155 1998                                              Comedy|Crime     77
## 12156 1998                                     Action|Comedy|Musical     77
## 12157 1998                                           Sci-Fi|Thriller     77
## 12158 1997                                      Comedy|Drama|Romance     77
## 12159 1998                            Action|Romance|Sci-Fi|Thriller     77
## 12160 1998                                            Comedy|Romance     77
## 12161 1988                                                     Drama     77
## 12162 1986                                 Adventure|Fantasy|Musical     77
## 12163 1985                                              Comedy|Drama     77
## 12164 1987                                 Action|Comedy|Crime|Drama     77
## 12165 1989                                 Action|Comedy|Crime|Drama     77
## 12166 1985                  Action|Adventure|Children|Comedy|Fantasy     77
## 12167 1989                                   Adventure|Comedy|Sci-Fi     77
## 12168 1990                           Adventure|Comedy|Sci-Fi|Western     77
## 12169 1984                                          Adventure|Sci-Fi     77
## 12170 1989                  Adventure|Children|Comedy|Fantasy|Sci-Fi     77
## 12171 1989                 Animation|Children|Comedy|Musical|Romance     77
## 12172 1982                                   Action|Adventure|Sci-Fi     77
## 12173 1984                                  Action|Adventure|Fantasy     77
## 12174 1982                        Adventure|Animation|Children|Drama     77
## 12175 1982                                         Adventure|Fantasy     77
## 12176 1998                                    Action|Horror|Thriller     77
## 12177 1988                                            Comedy|Fantasy     77
## 12178 1998                                   Action|Adventure|Sci-Fi     77
## 12179 1990                                     Drama|Fantasy|Romance     77
## 12180 1998                                      Comedy|Drama|Fantasy     77
## 12181 1998                       Adventure|Animation|Children|Comedy     77
## 12182 1998                                              Comedy|Drama     77
## 12183 1986                                   Adventure|Comedy|Sci-Fi     77
## 12184 1999                                              Comedy|Crime     77
## 12185 1976                                   Action|Adventure|Sci-Fi     77
## 12186 1968                                       Action|Drama|Sci-Fi     77
## 12187 1999                                                     Drama     77
## 12188 1998                                     Comedy|Crime|Thriller     77
## 12189 1999                                    Action|Sci-Fi|Thriller     77
## 12190 1999                                                    Comedy     77
## 12191 1999                                    Action|Sci-Fi|Thriller     77
## 12192 1999                                   Action|Adventure|Sci-Fi     77
## 12193 1978                                   Action|Adventure|Sci-Fi     77
## 12194 1980                                             Action|Sci-Fi     77
## 12195 1999                                            Comedy|Romance     77
## 12196 1999                                   Action|Adventure|Comedy     77
## 12197 1999                                  Animation|Comedy|Musical     77
## 12198 1999                                            Comedy|Romance     77
## 12199 1999                                           Children|Comedy     77
## 12200 1999                                     Drama|Horror|Thriller     77
## 12201 1984                                      Action|Comedy|Sci-Fi     77
## 12202 1999                                      Drama|Horror|Mystery     77
## 12203 1971                                                    Comedy     77
## 12204 1988                              Comedy|Drama|Fantasy|Romance     77
## 12205 1992                                             Action|Sci-Fi     77
## 12206 1999                                             Drama|Romance     77
## 12207 1990                          Action|Adventure|Sci-Fi|Thriller     77
## 12208 1986                                                    Comedy     77
## 12209 1999                               Action|Crime|Drama|Thriller     77
## 12210 1981                           Adventure|Comedy|Fantasy|Sci-Fi     77
## 12211 1987                        Action|Crime|Drama|Sci-Fi|Thriller     77
## 12212 1990                              Action|Crime|Sci-Fi|Thriller     77
## 12213 1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     77
## 12214 1997                  Action|Adventure|Animation|Drama|Fantasy     77
## 12215 1987                                             Comedy|Sci-Fi     77
## 12216 1999                                  Adventure|Comedy|Fantasy     77
## 12217 1984                                   Adventure|Comedy|Sci-Fi     77
## 12218 1999                            Fantasy|Horror|Mystery|Romance     77
## 12219 1999               Adventure|Animation|Children|Comedy|Fantasy     77
## 12220 1999                                               Crime|Drama     77
## 12221 1999                                                     Drama     77
## 12222 1999                                   Adventure|Comedy|Sci-Fi     77
## 12223 1953                                                 Drama|War     77
## 12224 1978                                   Action|Mystery|Thriller     77
## 12225 1992                                      Action|Comedy|Horror     77
## 12226 2000                               Action|Crime|Drama|Thriller     77
## 12227 1979                         Adventure|Children|Comedy|Musical     77
## 12228 1981                                           Children|Comedy     77
## 12229 1984                                   Children|Comedy|Musical     77
## 12230 2000                                                     Drama     77
## 12231 1991                                     Adventure|Crime|Drama     77
## 12232 1978                                                    Comedy     77
## 12233 1989                                          Animation|Comedy     77
## 12234 1990                     Action|Children|Comedy|Fantasy|Sci-Fi     77
## 12235 1991                                   Action|Children|Fantasy     77
## 12236 1977                                    Adventure|Drama|Sci-Fi     77
## 12237 1987                                    Action|Sci-Fi|Thriller     77
## 12238 2000                                    Action|Adventure|Drama     77
## 12239 2000                                 Action|Adventure|Thriller     77
## 12240 1974                                            Comedy|Western     77
## 12241 1979                                   Action|Adventure|Sci-Fi     77
## 12242 1981                          Action|Adventure|Sci-Fi|Thriller     77
## 12243 1985                                   Action|Adventure|Sci-Fi     77
## 12244 2000                                 Animation|Children|Comedy     77
## 12245 2000                                          Action|Drama|War     77
## 12246 2000                                   Action|Adventure|Sci-Fi     77
## 12247 2000                                                    Comedy     77
## 12248 2000                                                     Drama     77
## 12249 2000                                             Action|Comedy     77
## 12250 2000                                              Drama|Sci-Fi     77
## 12251 2000                                      Action|Drama|Romance     77
## 12252 2000                                     Comedy|Crime|Thriller     77
## 12253 2000                                    Adventure|Comedy|Crime     77
## 12254 1991                                                    Comedy     77
## 12255 1987                                            Romance|Sci-Fi     77
## 12256 2001                                      Comedy|Drama|Romance     77
## 12257 2001                          Action|Adventure|Comedy|Thriller     77
## 12258 2001       Adventure|Animation|Children|Comedy|Fantasy|Romance     77
## 12259 2001                        Adventure|Animation|Fantasy|Sci-Fi     77
## 12260 2001                                            Comedy|Romance     77
## 12261 1988                                  Adventure|Comedy|Fantasy     77
## 12262 1988                                                    Comedy     77
## 12263 1985                                      Comedy|Horror|Sci-Fi     77
## 12264 2001               Adventure|Animation|Children|Comedy|Fantasy     77
## 12265 2001                                Adventure|Children|Fantasy     77
## 12266 2001                                            Crime|Thriller     77
## 12267 2001                                              Comedy|Drama     77
## 12268 2001                                         Adventure|Fantasy     77
## 12269 2002                                   Action|Adventure|Sci-Fi     77
## 12270 2002                       Adventure|Animation|Children|Comedy     77
## 12271 2002                                    Action|Horror|Thriller     77
## 12272 2002                          Action|Adventure|Sci-Fi|Thriller     77
## 12273 2002                              Action|Adventure|Sci-Fi|IMAX     77
## 12274 2002                      Action|Crime|Mystery|Sci-Fi|Thriller     77
## 12275 2002                                    Horror|Sci-Fi|Thriller     77
## 12276 1975                                       Action|Drama|Sci-Fi     77
## 12277 2001                               Adventure|Animation|Fantasy     77
## 12278 1983                                                    Comedy     77
## 12279 2002                                               Documentary     77
## 12280 1981                                     Action|Drama|Thriller     77
## 12281 2002                                         Adventure|Fantasy     77
## 12282 2002                                    Action|Sci-Fi|Thriller     77
## 12283 1982                                Animation|Children|Fantasy     77
## 12284 2003                                              Action|Crime     77
## 12285 2002                                            Drama|Thriller     77
## 12286 1971                                            Mystery|Sci-Fi     77
## 12287 1966                                              Drama|Sci-Fi     77
## 12288 1978                 Adventure|Children|Comedy|Fantasy|Musical     77
## 12289 2003                          Action|Adventure|Sci-Fi|Thriller     77
## 12290 1986        Action|Adventure|Animation|Children|Fantasy|Sci-Fi     77
## 12291 2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     77
## 12292 2003                       Adventure|Animation|Children|Comedy     77
## 12293 2003                                   Action|Adventure|Sci-Fi     77
## 12294 2003                           Action|Adventure|Comedy|Fantasy     77
## 12295 2003                                     Action|Fantasy|Sci-Fi     77
## 12296 1971                             Action|Adventure|Drama|Sci-Fi     77
## 12297 1963                                              Comedy|Crime     77
## 12298 2002                                             Comedy|Horror     77
## 12299 1983                                                    Comedy     77
## 12300 1994                                                    Comedy     77
## 12301 2003                                     Action|Crime|Thriller     77
## 12302 2003                     Action|Adventure|Sci-Fi|Thriller|IMAX     77
## 12303 1984                  Adventure|Animation|Drama|Fantasy|Sci-Fi     77
## 12304 2003                                Action|Adventure|Drama|War     77
## 12305 2003                                     Drama|Fantasy|Romance     77
## 12306 2003                                    Action|Sci-Fi|Thriller     77
## 12307 1975                                                    Sci-Fi     77
## 12308 2004                              Action|Drama|Horror|Thriller     77
## 12309 2004                           Action|Adventure|Fantasy|Horror     77
## 12310 1978                                       Action|Drama|Horror     77
## 12311 2004                                     Action|Drama|Thriller     77
## 12312 1998                                          Adventure|Sci-Fi     77
## 12313 1967                                            Comedy|Fantasy     77
## 12314 1999                                          Adventure|Sci-Fi     77
## 12315 1998                                              Drama|Sci-Fi     77
## 12316 1998                                              Drama|Sci-Fi     77
## 12317 2003                                            Fantasy|Sci-Fi     77
## 12318 2000                                      Drama|Fantasy|Sci-Fi     77
## 12319 1998                                Animation|Fantasy|Thriller     77
## 12320 2004                                    Adventure|Fantasy|IMAX     77
## 12321 2003                Action|Adventure|Animation|Children|Sci-Fi     77
## 12322 2004                                               Documentary     77
## 12323 2004                              Action|Adventure|Sci-Fi|IMAX     77
## 12324 2004                          Action|Adventure|Sci-Fi|Thriller     77
## 12325 2004                                     Action|Crime|Thriller     77
## 12326 2004                                             Comedy|Horror     77
## 12327 2004                                                     Drama     77
## 12328 2004                Action|Adventure|Animation|Children|Comedy     77
## 12329 1983                            Fantasy|Horror|Sci-Fi|Thriller     77
## 12330 1990                                              Comedy|Crime     77
## 12331 2004                                                    Comedy     77
## 12332 2004                                      Crime|Drama|Thriller     77
## 12333 1977                              Animation|Fantasy|Sci-Fi|War     77
## 12334 2005                              Action|Adventure|Crime|Drama     77
## 12335 2004                       Adventure|Animation|Fantasy|Romance     77
## 12336 2004                                             Action|Comedy     77
## 12337 2005                   Action|Crime|Film-Noir|Mystery|Thriller     77
## 12338 2005                                   Action|Adventure|Sci-Fi     77
## 12339 2005                                         Action|Crime|IMAX     77
## 12340 2005                                    Action|Sci-Fi|Thriller     77
## 12341 2005                                   Action|Adventure|Sci-Fi     77
## 12342 2005                                Adventure|Animation|Comedy     77
## 12343 2005                  Animation|Comedy|Fantasy|Musical|Romance     77
## 12344 2005                          Adventure|Children|Drama|Fantasy     77
## 12345 2005                       Adventure|Animation|Children|Comedy     77
## 12346 2005                           Adventure|Drama|Horror|Thriller     77
## 12347 2005                                     Drama|Musical|Romance     77
## 12348 2006                               Action|Sci-Fi|Thriller|IMAX     77
## 12349 2006                                    Action|Sci-Fi|Thriller     77
## 12350 2006                                  Action|Adventure|Fantasy     77
## 12351 2006                                                     Drama     77
## 12352 2006                                                    Comedy     77
## 12353 2007                                         Documentary|Drama     77
## 12354 1995                                Adventure|Children|Fantasy     78
## 12355 1995                                 Action|Adventure|Thriller     78
## 12356 1995                                               Crime|Drama     78
## 12357 1995                                   Mystery|Sci-Fi|Thriller     78
## 12358 1995                                            Children|Drama     78
## 12359 1995                                            Comedy|Romance     78
## 12360 1995                                          Mystery|Thriller     78
## 12361 1995                                    Crime|Mystery|Thriller     78
## 12362 1995                                          Action|Drama|War     78
## 12363 1976                                      Crime|Drama|Thriller     78
## 12364 1996                                                    Comedy     78
## 12365 1995                                      Adventure|Drama|IMAX     78
## 12366 1995                                    Action|Sci-Fi|Thriller     78
## 12367 1995                                     Action|Crime|Thriller     78
## 12368 1995                                                     Drama     78
## 12369 1994                                                    Comedy     78
## 12370 1994                                              Drama|Horror     78
## 12371 1977                                   Action|Adventure|Sci-Fi     78
## 12372 1994                               Comedy|Crime|Drama|Thriller     78
## 12373 1994                                   Action|Adventure|Sci-Fi     78
## 12374 1994                                               Crime|Drama     78
## 12375 1994                                    Adventure|Drama|Sci-Fi     78
## 12376 1994                                              Comedy|Drama     78
## 12377 1994                               Action|Crime|Drama|Thriller     78
## 12378 1994                                  Comedy|Drama|Romance|War     78
## 12379 1994           Adventure|Animation|Children|Drama|Musical|IMAX     78
## 12380 1994                                   Action|Romance|Thriller     78
## 12381 1993                          Action|Adventure|Sci-Fi|Thriller     78
## 12382 1993                                              Comedy|Drama     78
## 12383 1993                                                     Drama     78
## 12384 1993                                                  Thriller     78
## 12385 1992               Adventure|Animation|Children|Comedy|Musical     78
## 12386 1991                                             Action|Sci-Fi     78
## 12387 1991                                     Crime|Horror|Thriller     78
## 12388 1996                         Action|Adventure|Mystery|Thriller     78
## 12389 1996                         Action|Adventure|Romance|Thriller     78
## 12390 1996                                        Comedy|Crime|Drama     78
## 12391 1996                          Action|Adventure|Sci-Fi|Thriller     78
## 12392 1996                             Comedy|Fantasy|Romance|Sci-Fi     78
## 12393 1972                                               Crime|Drama     78
## 12394 1939                        Adventure|Children|Fantasy|Musical     78
## 12395 1968                                    Adventure|Drama|Sci-Fi     78
## 12396 1996                                             Drama|Romance     78
## 12397 1992                                    Crime|Mystery|Thriller     78
## 12398 1992                                    Drama|Romance|Thriller     78
## 12399 1982                                     Children|Drama|Sci-Fi     78
## 12400 1975                                  Adventure|Comedy|Fantasy     78
## 12401 1980                                   Action|Adventure|Sci-Fi     78
## 12402 1986                            Action|Adventure|Horror|Sci-Fi     78
## 12403 1971                               Crime|Drama|Sci-Fi|Thriller     78
## 12404 1979                                          Action|Drama|War     78
## 12405 1983                                   Action|Adventure|Sci-Fi     78
## 12406 1990                                               Crime|Drama     78
## 12407 1979                                             Horror|Sci-Fi     78
## 12408 1987                                                 Drama|War     78
## 12409 1984                                    Action|Sci-Fi|Thriller     78
## 12410 1993                                    Comedy|Fantasy|Romance     78
## 12411 1985                                   Adventure|Comedy|Sci-Fi     78
## 12412 1982                                                     Drama     78
## 12413 1992                             Action|Horror|Sci-Fi|Thriller     78
## 12414 1976                             Drama|Fantasy|Horror|Thriller     78
## 12415 1996                          Action|Adventure|Sci-Fi|Thriller     78
## 12416 1979                                          Adventure|Sci-Fi     78
## 12417 1982                          Action|Adventure|Sci-Fi|Thriller     78
## 12418 1984                                   Action|Adventure|Sci-Fi     78
## 12419 1986                                   Adventure|Comedy|Sci-Fi     78
## 12420 1996                            Comedy|Horror|Mystery|Thriller     78
## 12421 1997                                                    Comedy     78
## 12422 1997                                   Action|Adventure|Comedy     78
## 12423 1997                            Action|Adventure|Comedy|Sci-Fi     78
## 12424 1997                                 Action|Adventure|Thriller     78
## 12425 1997                                      Action|Comedy|Sci-Fi     78
## 12426 1997                                              Drama|Sci-Fi     78
## 12427 1997                                              Action|Drama     78
## 12428 1990                                 Action|Adventure|Thriller     78
## 12429 1997                                    Drama|Mystery|Thriller     78
## 12430 1997                                   Horror|Mystery|Thriller     78
## 12431 1997                                             Action|Sci-Fi     78
## 12432 1998                                             Drama|Romance     78
## 12433 1998                                       Comedy|Drama|Sci-Fi     78
## 12434 1997                                      Action|Horror|Sci-Fi     78
## 12435 1997                                             Drama|Romance     78
## 12436 1997                            Comedy|Horror|Mystery|Thriller     78
## 12437 1997                                             Drama|Romance     78
## 12438 1997                                 Action|Adventure|Thriller     78
## 12439 1998                                              Comedy|Crime     78
## 12440 1997                                                    Comedy     78
## 12441 1998                              Crime|Drama|Mystery|Thriller     78
## 12442 1998                                     Drama|Sci-Fi|Thriller     78
## 12443 1998                            Action|Romance|Sci-Fi|Thriller     78
## 12444 1998                                            Comedy|Romance     78
## 12445 1985                                              Comedy|Drama     78
## 12446 1973                                            Horror|Mystery     78
## 12447 1989                                   Adventure|Comedy|Sci-Fi     78
## 12448 1990                           Adventure|Comedy|Sci-Fi|Western     78
## 12449 1998                                          Action|Drama|War     78
## 12450 1998                                           Horror|Thriller     78
## 12451 1988                                            Comedy|Fantasy     78
## 12452 1998                                                     Drama     78
## 12453 1998                           Adventure|Drama|Fantasy|Romance     78
## 12454 1998                                               Crime|Drama     78
## 12455 1998                                           Action|Thriller     78
## 12456 1998                                                     Drama     78
## 12457 1998                                           Action|Thriller     78
## 12458 1998                               Action|Drama|Romance|Sci-Fi     78
## 12459 1998                                         Animation|Musical     78
## 12460 1999                                                     Drama     78
## 12461 1998                                     Comedy|Crime|Thriller     78
## 12462 1999                                    Action|Sci-Fi|Thriller     78
## 12463 1999           Action|Adventure|Comedy|Fantasy|Horror|Thriller     78
## 12464 1999                                   Action|Adventure|Sci-Fi     78
## 12465 1975                              Comedy|Horror|Musical|Sci-Fi     78
## 12466 1999                                   Action|Adventure|Comedy     78
## 12467 1999                                  Animation|Comedy|Musical     78
## 12468 1999                                            Comedy|Romance     78
## 12469 1999                                     Drama|Horror|Thriller     78
## 12470 1999                                             Drama|Romance     78
## 12471 1999                                                     Drama     78
## 12472 1990                          Action|Adventure|Sci-Fi|Thriller     78
## 12473 1964                                 Action|Adventure|Thriller     78
## 12474 1999                               Action|Crime|Drama|Thriller     78
## 12475 1988 Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     78
## 12476 1999                                           Horror|Thriller     78
## 12477 1999                                  Adventure|Comedy|Fantasy     78
## 12478 1998                                               Documentary     78
## 12479 1999                                 Action|Adventure|Thriller     78
## 12480 1999                                               Crime|Drama     78
## 12481 1992                               Action|Crime|Drama|Thriller     78
## 12482 2000                            Comedy|Horror|Mystery|Thriller     78
## 12483 2000                                      Crime|Drama|Thriller     78
## 12484 1991                                    Drama|Mystery|Thriller     78
## 12485 1991                                     Adventure|Crime|Drama     78
## 12486 1976                                              Comedy|Drama     78
## 12487 1999                                             Drama|Romance     78
## 12488 2000                                    Action|Adventure|Drama     78
## 12489 2000                                                    Comedy     78
## 12490 2000                                 Action|Adventure|Thriller     78
## 12491 2000                                          Action|Drama|War     78
## 12492 2000                                            Drama|Thriller     78
## 12493 2000                                             Comedy|Horror     78
## 12494 2000                                   Action|Adventure|Sci-Fi     78
## 12495 2000                                                     Drama     78
## 12496 2000                                                    Horror     78
## 12497 2000                                                     Drama     78
## 12498 2000                                                     Drama     78
## 12499 2000                                             Action|Comedy     78
##       rating  timestamp                date
## 1        2.5 1260759144 2009-12-14 02:52:24
## 2        3.0 1260759179 2009-12-14 02:52:59
## 3        3.0 1260759182 2009-12-14 02:53:02
## 4        2.0 1260759185 2009-12-14 02:53:05
## 5        4.0 1260759205 2009-12-14 02:53:25
## 6        2.0 1260759151 2009-12-14 02:52:31
## 7        2.0 1260759187 2009-12-14 02:53:07
## 8        2.0 1260759148 2009-12-14 02:52:28
## 9        3.5 1260759125 2009-12-14 02:52:05
## 10       2.0 1260759131 2009-12-14 02:52:11
## 11       2.5 1260759135 2009-12-14 02:52:15
## 12       1.0 1260759203 2009-12-14 02:53:23
## 13       4.0 1260759191 2009-12-14 02:53:11
## 14       4.0 1260759139 2009-12-14 02:52:19
## 15       3.0 1260759194 2009-12-14 02:53:14
## 16       2.0 1260759198 2009-12-14 02:53:18
## 17       2.0 1260759108 2009-12-14 02:51:48
## 18       2.5 1260759113 2009-12-14 02:51:53
## 19       1.0 1260759200 2009-12-14 02:53:20
## 20       3.0 1260759117 2009-12-14 02:51:57
## 21       4.0  835355493 1996-06-21 11:11:33
## 22       5.0  835355681 1996-06-21 11:14:41
## 23       5.0  835355604 1996-06-21 11:13:24
## 24       4.0  835355552 1996-06-21 11:12:32
## 25       4.0  835355586 1996-06-21 11:13:06
## 26       3.0  835356031 1996-06-21 11:20:31
## 27       3.0  835355749 1996-06-21 11:15:49
## 28       4.0  835355532 1996-06-21 11:12:12
## 29       3.0  835356016 1996-06-21 11:20:16
## 30       5.0  835355395 1996-06-21 11:09:55
## 31       4.0  835355441 1996-06-21 11:10:41
## 32       3.0  835355493 1996-06-21 11:11:33
## 33       3.0  835355441 1996-06-21 11:10:41
## 34       3.0  835355710 1996-06-21 11:15:10
## 35       3.0  835355511 1996-06-21 11:11:51
## 36       3.0  835355664 1996-06-21 11:14:24
## 37       3.0  835355511 1996-06-21 11:11:51
## 38       5.0  835355840 1996-06-21 11:17:20
## 39       1.0  835355749 1996-06-21 11:15:49
## 40       3.0  835355552 1996-06-21 11:12:32
## 41       3.0  835355664 1996-06-21 11:14:24
## 42       3.0  835355896 1996-06-21 11:18:16
## 43       4.0  835355511 1996-06-21 11:11:51
## 44       4.0  835355681 1996-06-21 11:14:41
## 45       5.0  835355697 1996-06-21 11:14:57
## 46       5.0  835355586 1996-06-21 11:13:06
## 47       3.0  835355767 1996-06-21 11:16:07
## 48       4.0  835355779 1996-06-21 11:16:19
## 49       3.0  835355492 1996-06-21 11:11:32
## 50       4.0  835355395 1996-06-21 11:09:55
## 51       3.0  835355532 1996-06-21 11:12:12
## 52       4.0  835356044 1996-06-21 11:20:44
## 53       2.0  835355551 1996-06-21 11:12:31
## 54       1.0  835355918 1996-06-21 11:18:38
## 55       3.0  835355492 1996-06-21 11:11:32
## 56       4.0  835355441 1996-06-21 11:10:41
## 57       4.0  835355697 1996-06-21 11:14:57
## 58       3.0  835355628 1996-06-21 11:13:48
## 59       3.0  835355749 1996-06-21 11:15:49
## 60       3.0  835355604 1996-06-21 11:13:24
## 61       3.0  835355619 1996-06-21 11:13:39
## 62       2.0  835355932 1996-06-21 11:18:52
## 63       3.0  835355968 1996-06-21 11:19:28
## 64       3.0  835356094 1996-06-21 11:21:34
## 65       3.0  835355710 1996-06-21 11:15:10
## 66       3.0  835356165 1996-06-21 11:22:45
## 67       2.0  835356246 1996-06-21 11:24:06
## 68       3.0  835355532 1996-06-21 11:12:12
## 69       4.0  835355604 1996-06-21 11:13:24
## 70       3.0  835355511 1996-06-21 11:11:51
## 71       4.0  835355790 1996-06-21 11:16:30
## 72       2.0  835355828 1996-06-21 11:17:08
## 73       4.0  835355643 1996-06-21 11:14:03
## 74       3.0  835355918 1996-06-21 11:18:38
## 75       3.0  835355880 1996-06-21 11:18:00
## 76       4.0  835355731 1996-06-21 11:15:31
## 77       4.0  835355860 1996-06-21 11:17:40
## 78       4.0  835355719 1996-06-21 11:15:19
## 79       4.0  835355817 1996-06-21 11:16:57
## 80       4.0  835355731 1996-06-21 11:15:31
## 81       4.0  835356199 1996-06-21 11:23:19
## 82       3.0  835355767 1996-06-21 11:16:07
## 83       3.0  835356109 1996-06-21 11:21:49
## 84       5.0  835355767 1996-06-21 11:16:07
## 85       3.0  835355860 1996-06-21 11:17:40
## 86       5.0  835355817 1996-06-21 11:16:57
## 87       3.0  835355790 1996-06-21 11:16:30
## 88       3.0  835355779 1996-06-21 11:16:19
## 89       3.0  835355441 1996-06-21 11:10:41
## 90       5.0  835355697 1996-06-21 11:14:57
## 91       5.0  835355395 1996-06-21 11:09:55
## 92       5.0  835355395 1996-06-21 11:09:55
## 93       3.0  835355511 1996-06-21 11:11:51
## 94       3.0  835355932 1996-06-21 11:18:52
## 95       4.0  835356141 1996-06-21 11:22:21
## 96       4.0  835355978 1996-06-21 11:19:38
## 97       3.0 1298861675 2011-02-28 02:54:35
## 98       4.0 1298922049 2011-02-28 19:40:49
## 99       3.5 1298861637 2011-02-28 02:53:57
## 100      3.0 1298861761 2011-02-28 02:56:01
## 101      4.5 1298862418 2011-02-28 03:06:58
## 102      5.0 1298862121 2011-02-28 03:02:01
## 103      2.5 1298861589 2011-02-28 02:53:09
## 104      5.0 1298862167 2011-02-28 03:02:47
## 105      2.5 1298923242 2011-02-28 20:00:42
## 106      3.0 1298862528 2011-02-28 03:08:48
## 107      3.0 1298922100 2011-02-28 19:41:40
## 108      3.0 1298923247 2011-02-28 20:00:47
## 109      3.0 1298921840 2011-02-28 19:37:20
## 110      2.0 1298923260 2011-02-28 20:01:00
## 111      3.5 1298932787 2011-02-28 22:39:47
## 112      4.0 1298863157 2011-02-28 03:19:17
## 113      3.0 1298861687 2011-02-28 02:54:47
## 114      5.0 1298932770 2011-02-28 22:39:30
## 115      3.0 1298921795 2011-02-28 19:36:35
## 116      4.0 1298861628 2011-02-28 02:53:48
## 117      3.0 1298861605 2011-02-28 02:53:25
## 118      4.0 1298861658 2011-02-28 02:54:18
## 119      3.5 1298922089 2011-02-28 19:41:29
## 120      4.5 1298923236 2011-02-28 20:00:36
## 121      4.0 1298863143 2011-02-28 03:19:03
## 122      4.0 1298921862 2011-02-28 19:37:42
## 123      4.0 1298861753 2011-02-28 02:55:53
## 124      3.0 1298861789 2011-02-28 02:56:29
## 125      3.0 1298862710 2011-02-28 03:11:50
## 126      3.5 1298861796 2011-02-28 02:56:36
## 127      3.0 1298924017 2011-02-28 20:13:37
## 128      3.5 1298922057 2011-02-28 19:40:57
## 129      4.0 1298861733 2011-02-28 02:55:33
## 130      4.0 1298921825 2011-02-28 19:37:05
## 131      5.0 1298862874 2011-02-28 03:14:34
## 132      3.0 1298861968 2011-02-28 02:59:28
## 133      4.0 1298861633 2011-02-28 02:53:53
## 134      5.0 1298863174 2011-02-28 03:19:34
## 135      3.0 1298923266 2011-02-28 20:01:06
## 136      3.5 1298862672 2011-02-28 03:11:12
## 137      3.0 1298922080 2011-02-28 19:41:20
## 138      2.5 1298921787 2011-02-28 19:36:27
## 139      3.0 1298922065 2011-02-28 19:41:05
## 140      3.5 1298861650 2011-02-28 02:54:10
## 141      3.0 1298932766 2011-02-28 22:39:26
## 142      3.5 1298862555 2011-02-28 03:09:15
## 143      3.5 1298932740 2011-02-28 22:39:00
## 144      4.5 1298862361 2011-02-28 03:06:01
## 145      4.5 1298862467 2011-02-28 03:07:47
## 146      3.0 1298922071 2011-02-28 19:41:11
## 147      4.0 1298922130 2011-02-28 19:42:10
## 148      4.0  949810645 2000-02-06 04:17:25
## 149      5.0  949919556 2000-02-07 10:32:36
## 150      5.0  949810582 2000-02-06 04:16:22
## 151      5.0  949919681 2000-02-07 10:34:41
## 152      4.0  949811346 2000-02-06 04:29:06
## 153      3.0  949811346 2000-02-06 04:29:06
## 154      3.0  949920047 2000-02-07 10:40:47
## 155      5.0  949779042 2000-02-05 19:30:42
## 156      4.0  949778802 2000-02-05 19:26:42
## 157      5.0  949895708 2000-02-07 03:55:08
## 158      3.0  949810618 2000-02-06 04:16:58
## 159      5.0  949810582 2000-02-06 04:16:22
## 160      5.0  949919763 2000-02-07 10:36:03
## 161      5.0  949919681 2000-02-07 10:34:41
## 162      5.0  949949538 2000-02-07 18:52:18
## 163      4.0  949895887 2000-02-07 03:58:07
## 164      3.0  949810534 2000-02-06 04:15:34
## 165      3.0  949919883 2000-02-07 10:38:03
## 166      3.0  949895772 2000-02-07 03:56:12
## 167      4.0  949810688 2000-02-06 04:18:08
## 168      1.0  949920135 2000-02-07 10:42:15
## 169      4.0  949919802 2000-02-07 10:36:42
## 170      4.0  949920028 2000-02-07 10:40:28
## 171      4.0  949811315 2000-02-06 04:28:35
## 172      5.0  949810582 2000-02-06 04:16:22
## 173      5.0  949779091 2000-02-05 19:31:31
## 174      5.0  949949486 2000-02-07 18:51:26
## 175      5.0  949919938 2000-02-07 10:38:58
## 176      3.0  949810534 2000-02-06 04:15:34
## 177      5.0  949949538 2000-02-07 18:52:18
## 178      5.0  949949638 2000-02-07 18:53:58
## 179      4.0  949982238 2000-02-08 03:57:18
## 180      5.0  949949444 2000-02-07 18:50:44
## 181      5.0  949779022 2000-02-05 19:30:22
## 182      5.0  949919189 2000-02-07 10:26:29
## 183      4.0  949919306 2000-02-07 10:28:26
## 184      5.0  949919247 2000-02-07 10:27:27
## 185      5.0  949949396 2000-02-07 18:49:56
## 186      4.0  949919454 2000-02-07 10:30:54
## 187      4.0  949919322 2000-02-07 10:28:42
## 188      5.0  949949638 2000-02-07 18:53:58
## 189      5.0  949949638 2000-02-07 18:53:58
## 190      5.0  949896377 2000-02-07 04:06:17
## 191      5.0  949896377 2000-02-07 04:06:17
## 192      5.0  949949538 2000-02-07 18:52:18
## 193      5.0  949949638 2000-02-07 18:53:58
## 194      5.0  949896244 2000-02-07 04:04:04
## 195      5.0  949919372 2000-02-07 10:29:32
## 196      5.0  949811523 2000-02-06 04:32:03
## 197      5.0  949895732 2000-02-07 03:55:32
## 198      5.0  949778771 2000-02-05 19:26:11
## 199      5.0  949919399 2000-02-07 10:29:59
## 200      5.0  949896275 2000-02-07 04:04:35
## 201      5.0  949919372 2000-02-07 10:29:32
## 202      5.0  949919419 2000-02-07 10:30:19
## 203      5.0  949779173 2000-02-05 19:32:53
## 204      5.0  949811490 2000-02-06 04:31:30
## 205      5.0  949779173 2000-02-05 19:32:53
## 206      5.0  949896244 2000-02-07 04:04:04
## 207      5.0  949896159 2000-02-07 04:02:39
## 208      5.0  949779173 2000-02-05 19:32:53
## 209      5.0  949778714 2000-02-05 19:25:14
## 210      5.0  949895708 2000-02-07 03:55:08
## 211      5.0  949810261 2000-02-06 04:11:01
## 212      5.0  949779173 2000-02-05 19:32:53
## 213      5.0  949811523 2000-02-06 04:32:03
## 214      5.0  949918693 2000-02-07 10:18:13
## 215      5.0  949779173 2000-02-05 19:32:53
## 216      5.0  949919372 2000-02-07 10:29:32
## 217      5.0  949896244 2000-02-07 04:04:04
## 218      5.0  949919519 2000-02-07 10:31:59
## 219      5.0  949811602 2000-02-06 04:33:22
## 220      5.0  949918743 2000-02-07 10:19:03
## 221      4.0  949811559 2000-02-06 04:32:39
## 222      5.0  949919591 2000-02-07 10:33:11
## 223      5.0  949811523 2000-02-06 04:32:03
## 224      5.0  949919372 2000-02-07 10:29:32
## 225      5.0  949949396 2000-02-07 18:49:56
## 226      4.0  949811559 2000-02-06 04:32:39
## 227      5.0  949811490 2000-02-06 04:31:30
## 228      5.0  949918743 2000-02-07 10:19:03
## 229      4.0  949918927 2000-02-07 10:22:07
## 230      4.0  949811602 2000-02-06 04:33:22
## 231      4.0  949896275 2000-02-07 04:04:35
## 232      5.0  949982274 2000-02-08 03:57:54
## 233      5.0  949919247 2000-02-07 10:27:27
## 234      4.0  949810582 2000-02-06 04:16:22
## 235      4.0  949810302 2000-02-06 04:11:42
## 236      3.0  949920004 2000-02-07 10:40:04
## 237      4.0  949918787 2000-02-07 10:19:47
## 238      3.0  949918904 2000-02-07 10:21:44
## 239      3.0  949810688 2000-02-06 04:18:08
## 240      5.0  949896377 2000-02-07 04:06:17
## 241      5.0  949810261 2000-02-06 04:11:01
## 242      4.0  949810302 2000-02-06 04:11:42
## 243      5.0  949895772 2000-02-07 03:56:12
## 244      3.0  949811230 2000-02-06 04:27:10
## 245      5.0  949919978 2000-02-07 10:39:38
## 246      4.0  949811559 2000-02-06 04:32:39
## 247      5.0  949896244 2000-02-07 04:04:04
## 248      1.0  949895864 2000-02-07 03:57:44
## 249      5.0  949919738 2000-02-07 10:35:38
## 250      4.0  949810688 2000-02-06 04:18:08
## 251      2.0  949895956 2000-02-07 03:59:16
## 252      5.0  949810261 2000-02-06 04:11:01
## 253      5.0  949810261 2000-02-06 04:11:01
## 254      5.0  949918743 2000-02-07 10:19:03
## 255      3.0  949949538 2000-02-07 18:52:18
## 256      5.0  949811559 2000-02-06 04:32:39
## 257      5.0  949896309 2000-02-07 04:05:09
## 258      5.0  949811602 2000-02-06 04:33:22
## 259      3.0  949895907 2000-02-07 03:58:27
## 260      2.0  949918970 2000-02-07 10:22:50
## 261      5.0  949896070 2000-02-07 04:01:10
## 262      4.0  949919454 2000-02-07 10:30:54
## 263      5.0  949778771 2000-02-05 19:26:11
## 264      4.0  949811738 2000-02-06 04:35:38
## 265      4.0  949896114 2000-02-07 04:01:54
## 266      4.0  949982239 2000-02-08 03:57:19
## 267      4.0  949896183 2000-02-07 04:03:03
## 268      5.0  949810618 2000-02-06 04:16:58
## 269      3.0  949896114 2000-02-07 04:01:54
## 270      5.0  949918648 2000-02-07 10:17:28
## 271      5.0  949949444 2000-02-07 18:50:44
## 272      5.0  949919306 2000-02-07 10:28:26
## 273      4.0  949982239 2000-02-08 03:57:19
## 274      5.0  949949444 2000-02-07 18:50:44
## 275      5.0  949896114 2000-02-07 04:01:54
## 276      5.0  949949638 2000-02-07 18:53:58
## 277      5.0  949896183 2000-02-07 04:03:03
## 278      4.0  949920028 2000-02-07 10:40:28
## 279      5.0  949949538 2000-02-07 18:52:18
## 280      5.0  949896114 2000-02-07 04:01:54
## 281      5.0  949949396 2000-02-07 18:49:56
## 282      4.0  949896114 2000-02-07 04:01:54
## 283      5.0  949919399 2000-02-07 10:29:59
## 284      3.0  949896309 2000-02-07 04:05:09
## 285      5.0  949918927 2000-02-07 10:22:07
## 286      5.0  949918994 2000-02-07 10:23:14
## 287      4.0  949919763 2000-02-07 10:36:03
## 288      5.0  949896070 2000-02-07 04:01:10
## 289      4.0  949982239 2000-02-08 03:57:19
## 290      4.0  949896114 2000-02-07 04:01:54
## 291      5.0  949811603 2000-02-06 04:33:23
## 292      5.0  949896070 2000-02-07 04:01:10
## 293      5.0  949896070 2000-02-07 04:01:10
## 294      3.0  949896070 2000-02-07 04:01:10
## 295      5.0  949918764 2000-02-07 10:19:24
## 296      4.0  949811559 2000-02-06 04:32:39
## 297      3.0  949896309 2000-02-07 04:05:09
## 298      5.0  949895772 2000-02-07 03:56:12
## 299      5.0  949919556 2000-02-07 10:32:36
## 300      4.0  949918927 2000-02-07 10:22:07
## 301      4.0  949811603 2000-02-06 04:33:23
## 302      4.0  949918994 2000-02-07 10:23:14
## 303      5.0  949918994 2000-02-07 10:23:14
## 304      4.0  949810302 2000-02-06 04:11:42
## 305      5.0  949982274 2000-02-08 03:57:54
## 306      5.0  949918875 2000-02-07 10:21:15
## 307      4.0  949896275 2000-02-07 04:04:35
## 308      1.0  949895993 2000-02-07 03:59:53
## 309      5.0  949810582 2000-02-06 04:16:22
## 310      5.0  949810261 2000-02-06 04:11:01
## 311      3.0  949918671 2000-02-07 10:17:51
## 312      4.0  949896497 2000-02-07 04:08:17
## 313      4.0  949896497 2000-02-07 04:08:17
## 314      5.0  949811523 2000-02-06 04:32:03
## 315      5.0  949810582 2000-02-06 04:16:22
## 316      4.0  949778714 2000-02-05 19:25:14
## 317      1.0  949896521 2000-02-07 04:08:41
## 318      5.0  949919399 2000-02-07 10:29:59
## 319      5.0  949811490 2000-02-06 04:31:30
## 320      4.0  949811603 2000-02-06 04:33:23
## 321      5.0  949896070 2000-02-07 04:01:10
## 322      5.0  949811738 2000-02-06 04:35:38
## 323      3.0  949811230 2000-02-06 04:27:10
## 324      3.0  949918875 2000-02-07 10:21:15
## 325      5.0  949896114 2000-02-07 04:01:54
## 326      5.0  949896377 2000-02-07 04:06:17
## 327      2.0  949896309 2000-02-07 04:05:09
## 328      1.0  949896309 2000-02-07 04:05:09
## 329      4.0  949810534 2000-02-06 04:15:34
## 330      5.0  949811559 2000-02-06 04:32:39
## 331      5.0  949896070 2000-02-07 04:01:10
## 332      3.0  949896015 2000-02-07 04:00:15
## 333      5.0  949918807 2000-02-07 10:20:07
## 334      5.0  949810261 2000-02-06 04:11:01
## 335      3.0  949896543 2000-02-07 04:09:03
## 336      5.0  949949444 2000-02-07 18:50:44
## 337      4.0  949811559 2000-02-06 04:32:39
## 338      5.0  949919419 2000-02-07 10:30:19
## 339      5.0  949919656 2000-02-07 10:34:16
## 340      4.0  949918715 2000-02-07 10:18:35
## 341      4.0  949896275 2000-02-07 04:04:35
## 342      4.0  949811603 2000-02-06 04:33:23
## 343      5.0  949919738 2000-02-07 10:35:38
## 344      4.0  949918904 2000-02-07 10:21:44
## 345      2.0  949778946 2000-02-05 19:29:06
## 346      4.0  949811523 2000-02-06 04:32:03
## 347      5.0  949918970 2000-02-07 10:22:50
## 348      4.0  949919738 2000-02-07 10:35:38
## 349      3.0  949919845 2000-02-07 10:37:25
## 350      5.0  949895732 2000-02-07 03:55:32
## 351      2.0  949982238 2000-02-08 03:57:18
## 352      4.0 1163374957 2006-11-12 23:42:37
## 353      4.0 1163374952 2006-11-12 23:42:32
## 354      4.0 1163374639 2006-11-12 23:37:19
## 355      4.0 1163374242 2006-11-12 23:30:42
## 356      4.0 1163374404 2006-11-12 23:33:24
## 357      3.5 1163373762 2006-11-12 23:22:42
## 358      4.5 1163373208 2006-11-12 23:13:28
## 359      3.5 1163373636 2006-11-12 23:20:36
## 360      4.0 1163374152 2006-11-12 23:29:12
## 361      4.0 1163373752 2006-11-12 23:22:32
## 362      4.0 1163373755 2006-11-12 23:22:35
## 363      4.0 1163373610 2006-11-12 23:20:10
## 364      4.0 1163374477 2006-11-12 23:34:37
## 365      4.5 1163373718 2006-11-12 23:21:58
## 366      4.0 1163374392 2006-11-12 23:33:12
## 367      3.5 1163373551 2006-11-12 23:19:11
## 368      4.0 1163374190 2006-11-12 23:29:50
## 369      5.0 1163373711 2006-11-12 23:21:51
## 370      3.5 1163374993 2006-11-12 23:43:13
## 371      2.5 1163373651 2006-11-12 23:20:51
## 372      3.5 1163373135 2006-11-12 23:12:15
## 373      4.0 1163374286 2006-11-12 23:31:26
## 374      4.0 1163373316 2006-11-12 23:15:16
## 375      5.0 1163373103 2006-11-12 23:11:43
## 376      3.0 1163374173 2006-11-12 23:29:33
## 377      2.5 1163374239 2006-11-12 23:30:39
## 378      4.0 1163374582 2006-11-12 23:36:22
## 379      4.0 1163374495 2006-11-12 23:34:55
## 380      5.0 1163373044 2006-11-12 23:10:44
## 381      3.5 1163374165 2006-11-12 23:29:25
## 382      4.5 1163374608 2006-11-12 23:36:48
## 383      3.5 1163374562 2006-11-12 23:36:02
## 384      4.0 1163374214 2006-11-12 23:30:14
## 385      4.0 1163373744 2006-11-12 23:22:24
## 386      4.0 1163374601 2006-11-12 23:36:41
## 387      4.5 1163374251 2006-11-12 23:30:51
## 388      4.5 1163373726 2006-11-12 23:22:06
## 389      4.0 1163373675 2006-11-12 23:21:15
## 390      4.0 1163374324 2006-11-12 23:32:04
## 391      3.5 1163374593 2006-11-12 23:36:33
## 392      1.5 1163373188 2006-11-12 23:13:08
## 393      5.0 1163373109 2006-11-12 23:11:49
## 394      4.0 1163373276 2006-11-12 23:14:36
## 395      4.0 1163373251 2006-11-12 23:14:11
## 396      3.5 1163374184 2006-11-12 23:29:44
## 397      4.0 1163373193 2006-11-12 23:13:13
## 398      3.5 1163374290 2006-11-12 23:31:30
## 399      4.0 1163373679 2006-11-12 23:21:19
## 400      4.5 1163373293 2006-11-12 23:14:53
## 401      4.0 1163374246 2006-11-12 23:30:46
## 402      3.5 1163373743 2006-11-12 23:22:23
## 403      3.5 1163374947 2006-11-12 23:42:27
## 404      3.5 1163374278 2006-11-12 23:31:18
## 405      3.5 1163374127 2006-11-12 23:28:47
## 406      3.5 1163374263 2006-11-12 23:31:03
## 407      3.5 1163374408 2006-11-12 23:33:28
## 408      4.0 1163374137 2006-11-12 23:28:57
## 409      3.5 1163373148 2006-11-12 23:12:28
## 410      4.5 1163374235 2006-11-12 23:30:35
## 411      3.5 1163374198 2006-11-12 23:29:58
## 412      4.0 1163373273 2006-11-12 23:14:33
## 413      4.0 1163375025 2006-11-12 23:43:45
## 414      3.5 1163373696 2006-11-12 23:21:36
## 415      4.5 1163375145 2006-11-12 23:45:45
## 416      3.5 1163374103 2006-11-12 23:28:23
## 417      3.5 1163374354 2006-11-12 23:32:34
## 418      4.5 1163375033 2006-11-12 23:43:53
## 419      3.5 1163375131 2006-11-12 23:45:31
## 420      3.0 1163373548 2006-11-12 23:19:08
## 421      4.5 1163373616 2006-11-12 23:20:16
## 422      3.5 1163374995 2006-11-12 23:43:15
## 423      4.5 1163373299 2006-11-12 23:14:59
## 424      4.5 1163373606 2006-11-12 23:20:06
## 425      4.0 1163374443 2006-11-12 23:34:03
## 426      3.5 1163374206 2006-11-12 23:30:06
## 427      4.5 1163374389 2006-11-12 23:33:09
## 428      3.0 1163373688 2006-11-12 23:21:28
## 429      4.0 1163374533 2006-11-12 23:35:33
## 430      3.5 1163374491 2006-11-12 23:34:51
## 431      4.0 1163374572 2006-11-12 23:36:12
## 432      4.0 1163373626 2006-11-12 23:20:26
## 433      4.0 1163374455 2006-11-12 23:34:15
## 434      2.5 1163373238 2006-11-12 23:13:58
## 435      4.0 1163374511 2006-11-12 23:35:11
## 436      4.0 1163374742 2006-11-12 23:39:02
## 437      4.0 1163374381 2006-11-12 23:33:01
## 438      3.5 1163374118 2006-11-12 23:28:38
## 439      4.5 1163373593 2006-11-12 23:19:53
## 440      4.0 1163374426 2006-11-12 23:33:46
## 441      4.5 1163374340 2006-11-12 23:32:20
## 442      4.5 1163374702 2006-11-12 23:38:22
## 443      3.5 1163374177 2006-11-12 23:29:37
## 444      5.0 1163374211 2006-11-12 23:30:11
## 445      4.0 1163374517 2006-11-12 23:35:17
## 446      4.5 1163374227 2006-11-12 23:30:27
## 447      4.0 1163374275 2006-11-12 23:31:15
## 448      4.5 1163374283 2006-11-12 23:31:23
## 449      4.0 1163374144 2006-11-12 23:29:04
## 450      4.0 1163374167 2006-11-12 23:29:27
## 451      4.5 1163374357 2006-11-12 23:32:37
## 452      4.0 1109258212 2005-02-24 15:16:52
## 453      2.0 1108134263 2005-02-11 15:04:23
## 454      2.0 1109258228 2005-02-24 15:17:08
## 455      5.0 1108134539 2005-02-11 15:08:59
## 456      4.0 1108134269 2005-02-11 15:04:29
## 457      4.0 1108134299 2005-02-11 15:04:59
## 458      5.0 1108134266 2005-02-11 15:04:26
## 459      4.5 1108134284 2005-02-11 15:04:44
## 460      4.5 1109258196 2005-02-24 15:16:36
## 461      4.5 1108134309 2005-02-11 15:05:09
## 462      4.5 1108134339 2005-02-11 15:05:39
## 463      2.0 1109258181 2005-02-24 15:16:21
## 464      2.0 1109258179 2005-02-24 15:16:19
## 465      2.0 1109258281 2005-02-24 15:18:01
## 466      2.0 1109258194 2005-02-24 15:16:34
## 467      0.5 1108134334 2005-02-11 15:05:34
## 468      3.0 1108134344 2005-02-11 15:05:44
## 469      3.0 1108134289 2005-02-11 15:04:49
## 470      4.0 1109258270 2005-02-24 15:17:50
## 471      4.0 1109258285 2005-02-24 15:18:05
## 472      4.0 1109258175 2005-02-24 15:16:15
## 473      3.5 1108134291 2005-02-11 15:04:51
## 474      3.0 1109258245 2005-02-24 15:17:25
## 475      4.0 1108134293 2005-02-11 15:04:53
## 476      1.0 1109258202 2005-02-24 15:16:42
## 477      2.0 1108134271 2005-02-11 15:04:31
## 478      4.0 1108134274 2005-02-11 15:04:34
## 479      3.0 1109258257 2005-02-24 15:17:37
## 480      4.5 1108134545 2005-02-11 15:09:05
## 481      3.0 1109258199 2005-02-24 15:16:39
## 482      1.0 1108134337 2005-02-11 15:05:37
## 483      4.0 1109258183 2005-02-24 15:16:23
## 484      3.5 1109258250 2005-02-24 15:17:30
## 485      1.5 1109258190 2005-02-24 15:16:30
## 486      1.5 1109258217 2005-02-24 15:16:57
## 487      1.5 1109258226 2005-02-24 15:17:06
## 488      5.0 1108134311 2005-02-11 15:05:11
## 489      3.0 1108134534 2005-02-11 15:08:54
## 490      5.0 1108134519 2005-02-11 15:08:39
## 491      4.0 1108134524 2005-02-11 15:08:44
## 492      3.5 1108134526 2005-02-11 15:08:46
## 493      4.0 1108134537 2005-02-11 15:08:57
## 494      3.0 1108134531 2005-02-11 15:08:51
## 495      4.5 1108134521 2005-02-11 15:08:41
## 496      3.0  851866703 1996-12-29 13:38:23
## 497      3.0  851869035 1996-12-29 14:17:15
## 498      3.0  851867289 1996-12-29 13:48:09
## 499      3.0  851868750 1996-12-29 14:12:30
## 500      4.0  851867861 1996-12-29 13:57:41
## 501      4.0  851866901 1996-12-29 13:41:41
## 502      3.0  851866744 1996-12-29 13:39:04
## 503      5.0  851868188 1996-12-29 14:03:08
## 504      4.0  851866720 1996-12-29 13:38:40
## 505      4.0  851866704 1996-12-29 13:38:24
## 506      4.0  851868206 1996-12-29 14:03:26
## 507      2.0  851868704 1996-12-29 14:11:44
## 508      3.0  851868705 1996-12-29 14:11:45
## 509      5.0  851869062 1996-12-29 14:17:42
## 510      3.0  851868188 1996-12-29 14:03:08
## 511      2.0  851869161 1996-12-29 14:19:21
## 512      5.0  851868187 1996-12-29 14:03:07
## 513      3.0  851868524 1996-12-29 14:08:44
## 514      3.0  851867345 1996-12-29 13:49:05
## 515      3.0  851867621 1996-12-29 13:53:41
## 516      3.0  851867941 1996-12-29 13:59:01
## 517      3.0  851868188 1996-12-29 14:03:08
## 518      3.0  851867436 1996-12-29 13:50:36
## 519      3.0  851868020 1996-12-29 14:00:20
## 520      3.0  851867790 1996-12-29 13:56:30
## 521      3.0  851869291 1996-12-29 14:21:31
## 522      4.0  851869291 1996-12-29 14:21:31
## 523      4.0  851869161 1996-12-29 14:19:21
## 524      3.0  851867669 1996-12-29 13:54:29
## 525      4.0  851868246 1996-12-29 14:04:06
## 526      3.0  851867688 1996-12-29 13:54:48
## 527      4.0  851869035 1996-12-29 14:17:15
## 528      4.0  851868019 1996-12-29 14:00:19
## 529      4.0  851868044 1996-12-29 14:00:44
## 530      3.0  851869140 1996-12-29 14:19:00
## 531      4.0  851868186 1996-12-29 14:03:06
## 532      3.0  851868863 1996-12-29 14:14:23
## 533      4.0  851868020 1996-12-29 14:00:20
## 534      3.0  851868044 1996-12-29 14:00:44
## 535      3.0  851868074 1996-12-29 14:01:14
## 536      4.0  851866806 1996-12-29 13:40:06
## 537      3.0  851866744 1996-12-29 13:39:04
## 538      5.0  851868019 1996-12-29 14:00:19
## 539      2.0  851866784 1996-12-29 13:39:44
## 540      1.0  851866704 1996-12-29 13:38:24
## 541      1.0  851866763 1996-12-29 13:39:23
## 542      5.0  851868020 1996-12-29 14:00:20
## 543      3.0  851866703 1996-12-29 13:38:23
## 544      2.0  851866744 1996-12-29 13:39:04
## 545      4.0  851868289 1996-12-29 14:04:49
## 546      3.0  851869102 1996-12-29 14:18:22
## 547      3.0  851866744 1996-12-29 13:39:04
## 548      4.0  851867320 1996-12-29 13:48:40
## 549      4.0  851867289 1996-12-29 13:48:09
## 550      3.0  851868308 1996-12-29 14:05:08
## 551      3.0  851867553 1996-12-29 13:52:33
## 552      3.0  851869103 1996-12-29 14:18:23
## 553      4.0  851867289 1996-12-29 13:48:09
## 554      5.0  851868019 1996-12-29 14:00:19
## 555      5.0  851869034 1996-12-29 14:17:14
## 556      3.0  851867289 1996-12-29 13:48:09
## 557      5.0  851869035 1996-12-29 14:17:15
## 558      5.0  851869034 1996-12-29 14:17:14
## 559      4.0  851867379 1996-12-29 13:49:39
## 560      5.0  851868044 1996-12-29 14:00:44
## 561      5.0  851868246 1996-12-29 14:04:06
## 562      4.0  851868321 1996-12-29 14:05:21
## 563      4.0  851869062 1996-12-29 14:17:42
## 564      5.0  851868289 1996-12-29 14:04:49
## 565      3.0  851867436 1996-12-29 13:50:36
## 566      4.0  851869080 1996-12-29 14:18:00
## 567      3.0  851867436 1996-12-29 13:50:36
## 568      4.0  851868332 1996-12-29 14:05:32
## 569      4.0  851867401 1996-12-29 13:50:01
## 570      3.0  851867320 1996-12-29 13:48:40
## 571      3.0  851868471 1996-12-29 14:07:51
## 572      4.0  851868471 1996-12-29 14:07:51
## 573      3.0  851867401 1996-12-29 13:50:01
## 574      3.0  851866935 1996-12-29 13:42:15
## 575      3.0  851869160 1996-12-29 14:19:20
## 576      3.0  851869102 1996-12-29 14:18:22
## 577      2.0  851869230 1996-12-29 14:20:30
## 578      4.0  851869035 1996-12-29 14:17:15
## 579      3.0  851869140 1996-12-29 14:19:00
## 580      3.0  851869062 1996-12-29 14:17:42
## 581      3.0  851867688 1996-12-29 13:54:48
## 582      5.0  851866978 1996-12-29 13:42:58
## 583      1.0  851869140 1996-12-29 14:19:00
## 584      5.0 1154465405 2006-08-01 20:50:05
## 585      2.5 1154389572 2006-07-31 23:46:12
## 586      5.0 1154464836 2006-08-01 20:40:36
## 587      5.0 1154400173 2006-08-01 02:42:53
## 588      4.0 1154473268 2006-08-01 23:01:08
## 589      3.5 1154464829 2006-08-01 20:40:29
## 590      2.0 1154389420 2006-07-31 23:43:40
## 591      4.0 1154465380 2006-08-01 20:49:40
## 592      5.0 1154464714 2006-08-01 20:38:34
## 593      4.0 1154400390 2006-08-01 02:46:30
## 594      4.5 1154400475 2006-08-01 02:47:55
## 595      3.5 1154389356 2006-07-31 23:42:36
## 596      2.0 1154400357 2006-08-01 02:45:57
## 597      5.0 1154400170 2006-08-01 02:42:50
## 598      5.0 1154389386 2006-07-31 23:43:06
## 599      4.0 1154464853 2006-08-01 20:40:53
## 600      4.5 1154464833 2006-08-01 20:40:33
## 601      4.0 1154400284 2006-08-01 02:44:44
## 602      3.5 1154389432 2006-07-31 23:43:52
## 603      5.0 1154400181 2006-08-01 02:43:01
## 604      3.5 1154464841 2006-08-01 20:40:41
## 605      4.0 1154464887 2006-08-01 20:41:27
## 606      4.0 1154464730 2006-08-01 20:38:50
## 607      4.0 1154464769 2006-08-01 20:39:29
## 608      4.0 1154465573 2006-08-01 20:52:53
## 609      4.0 1154465394 2006-08-01 20:49:54
## 610      4.0 1154465555 2006-08-01 20:52:35
## 611      4.0 1154464811 2006-08-01 20:40:11
## 612      3.0 1154465230 2006-08-01 20:47:10
## 613      4.0 1154464747 2006-08-01 20:39:07
## 614      4.0 1154464720 2006-08-01 20:38:40
## 615      3.5 1154400465 2006-08-01 02:47:45
## 616      0.5 1154474527 2006-08-01 23:22:07
## 617      4.0 1154465285 2006-08-01 20:48:05
## 618      3.0 1154400324 2006-08-01 02:45:24
## 619      4.0 1154465235 2006-08-01 20:47:15
## 620      3.0 1154389408 2006-07-31 23:43:28
## 621      3.5 1154464990 2006-08-01 20:43:10
## 622      5.0 1154389385 2006-07-31 23:43:05
## 623      4.0 1154389491 2006-07-31 23:44:51
## 624      4.0 1154473252 2006-08-01 23:00:52
## 625      3.0 1154400308 2006-08-01 02:45:08
## 626      5.0 1154400458 2006-08-01 02:47:38
## 627      3.5 1154389528 2006-07-31 23:45:28
## 628      5.0 1154473322 2006-08-01 23:02:02
## 629      4.0 1154473259 2006-08-01 23:00:59
## 630      3.0 1154389460 2006-07-31 23:44:20
## 631      3.0 1154465222 2006-08-01 20:47:02
## 632      4.5 1154464735 2006-08-01 20:38:55
## 633      4.5 1154400414 2006-08-01 02:46:54
## 634      4.0 1154464850 2006-08-01 20:40:50
## 635      5.0 1154473217 2006-08-01 23:00:17
## 636      3.5 1154389340 2006-07-31 23:42:20
## 637      3.5 1154400351 2006-08-01 02:45:51
## 638      5.0 1154464889 2006-08-01 20:41:29
## 639      5.0 1154464738 2006-08-01 20:38:58
## 640      3.5 1154464944 2006-08-01 20:42:24
## 641      4.5 1154464717 2006-08-01 20:38:37
## 642      2.5 1154389541 2006-07-31 23:45:41
## 643      4.5 1154465558 2006-08-01 20:52:38
## 644      3.5 1154400340 2006-08-01 02:45:40
## 645      3.5 1154473419 2006-08-01 23:03:39
## 646      3.0 1154400360 2006-08-01 02:46:00
## 647      4.5 1154464950 2006-08-01 20:42:30
## 648      5.0 1154473364 2006-08-01 23:02:44
## 649      4.0 1154464901 2006-08-01 20:41:41
## 650      4.5 1154400266 2006-08-01 02:44:26
## 651      5.0 1154400441 2006-08-01 02:47:21
## 652      3.5 1154400198 2006-08-01 02:43:18
## 653      4.0 1154389482 2006-07-31 23:44:42
## 654      4.0 1154465526 2006-08-01 20:52:06
## 655      4.5 1154464873 2006-08-01 20:41:13
## 656      3.5 1154400245 2006-08-01 02:44:05
## 657      4.5 1154465279 2006-08-01 20:47:59
## 658      5.0 1154464905 2006-08-01 20:41:45
## 659      4.0 1154464915 2006-08-01 20:41:55
## 660      2.5 1154400334 2006-08-01 02:45:34
## 661      3.5 1154464808 2006-08-01 20:40:08
## 662      3.5 1154400398 2006-08-01 02:46:38
## 663      4.5 1154400383 2006-08-01 02:46:23
## 664      4.0 1154465373 2006-08-01 20:49:33
## 665      3.5 1154464819 2006-08-01 20:40:19
## 666      3.5 1154389449 2006-07-31 23:44:09
## 667      5.0 1154400236 2006-08-01 02:43:56
## 668      3.5 1154389552 2006-07-31 23:45:52
## 669      4.5 1154400449 2006-08-01 02:47:29
## 670      4.0 1154464756 2006-08-01 20:39:16
## 671      4.0 1154400407 2006-08-01 02:46:47
## 672      4.0 1154465399 2006-08-01 20:49:59
## 673      3.0 1154465385 2006-08-01 20:49:45
## 674      4.0 1154464762 2006-08-01 20:39:22
## 675      3.5 1154400444 2006-08-01 02:47:24
## 676      4.0 1154389474 2006-07-31 23:44:34
## 677      3.0 1154400191 2006-08-01 02:43:11
## 678      4.0 1154464895 2006-08-01 20:41:35
## 679      5.0 1154465296 2006-08-01 20:48:16
## 680      3.0 1154400253 2006-08-01 02:44:13
## 681      3.5 1154400294 2006-08-01 02:44:54
## 682      4.0 1154464753 2006-08-01 20:39:13
## 683      4.0 1154465367 2006-08-01 20:49:27
## 684      4.0 1154464994 2006-08-01 20:43:14
## 685      2.5 1154400471 2006-08-01 02:47:51
## 686      4.5 1154464868 2006-08-01 20:41:08
## 687      4.0 1154465499 2006-08-01 20:51:39
## 688      3.0 1154465548 2006-08-01 20:52:28
## 689      3.5 1154465243 2006-08-01 20:47:23
## 690      4.5 1154473310 2006-08-01 23:01:50
## 691      4.5 1154400263 2006-08-01 02:44:23
## 692      4.5 1154464726 2006-08-01 20:38:46
## 693      3.5 1154400423 2006-08-01 02:47:03
## 694      3.5 1154473088 2006-08-01 22:58:08
## 695      3.5 1154473264 2006-08-01 23:01:04
## 696      2.0 1154473042 2006-08-01 22:57:22
## 697      3.5 1154473022 2006-08-01 22:57:02
## 698      3.0 1154473014 2006-08-01 22:56:54
## 699      3.0 1154473017 2006-08-01 22:56:57
## 700      4.0  938629179 1999-09-29 18:19:39
## 701      4.0  938628337 1999-09-29 18:05:37
## 702      3.0  938628655 1999-09-29 18:10:55
## 703      5.0  938629110 1999-09-29 18:18:30
## 704      3.0  938628897 1999-09-29 18:14:57
## 705      4.0  938628966 1999-09-29 18:16:06
## 706      4.0  938628777 1999-09-29 18:12:57
## 707      4.0  938628577 1999-09-29 18:09:37
## 708      5.0  938628843 1999-09-29 18:14:03
## 709      5.0  938628337 1999-09-29 18:05:37
## 710      4.0  938628843 1999-09-29 18:14:03
## 711      5.0  938628843 1999-09-29 18:14:03
## 712      2.0  938628337 1999-09-29 18:05:37
## 713      5.0  938629250 1999-09-29 18:20:50
## 714      3.0  938629470 1999-09-29 18:24:30
## 715      4.0  938628655 1999-09-29 18:10:55
## 716      4.0  938628450 1999-09-29 18:07:30
## 717      3.0  938628655 1999-09-29 18:10:55
## 718      2.0  938628777 1999-09-29 18:12:57
## 719      4.0  938629341 1999-09-29 18:22:21
## 720      4.0  938629054 1999-09-29 18:17:34
## 721      5.0  938628690 1999-09-29 18:11:30
## 722      4.0  938628966 1999-09-29 18:16:06
## 723      3.0  938629470 1999-09-29 18:24:30
## 724      5.0  938628966 1999-09-29 18:16:06
## 725      4.0  938629341 1999-09-29 18:22:21
## 726      4.0  938629522 1999-09-29 18:25:22
## 727      4.0  938629747 1999-09-29 18:29:07
## 728      4.0  938629053 1999-09-29 18:17:33
## 729      3.0  938629053 1999-09-29 18:17:33
## 730      3.0  938628777 1999-09-29 18:12:57
## 731      4.0  938628897 1999-09-29 18:14:57
## 732      4.0  938629341 1999-09-29 18:22:21
## 733      2.0  938629250 1999-09-29 18:20:50
## 734      4.0  938628843 1999-09-29 18:14:03
## 735      4.0  939122916 1999-10-05 11:28:36
## 736      4.0  938628577 1999-09-29 18:09:37
## 737      2.0  938629681 1999-09-29 18:28:01
## 738      3.0  938629681 1999-09-29 18:28:01
## 739      4.0  938628966 1999-09-29 18:16:06
## 740      2.0  938629341 1999-09-29 18:22:21
## 741      5.0  938628450 1999-09-29 18:07:30
## 742      3.0  938628843 1999-09-29 18:14:03
## 743      4.0  938627748 1999-09-29 17:55:48
## 744      4.0  938629681 1999-09-29 18:28:01
## 745      5.0  942766420 1999-11-16 15:33:40
## 746      4.0  942766793 1999-11-16 15:39:53
## 747      4.0  942766515 1999-11-16 15:35:15
## 748      3.0  942766603 1999-11-16 15:36:43
## 749      4.0  942766603 1999-11-16 15:36:43
## 750      3.0  942767328 1999-11-16 15:48:48
## 751      4.0  942766974 1999-11-16 15:42:54
## 752      3.0  942767258 1999-11-16 15:47:38
## 753      3.0  942766420 1999-11-16 15:33:40
## 754      2.0  942767328 1999-11-16 15:48:48
## 755      4.0  942767328 1999-11-16 15:48:48
## 756      4.0  942767258 1999-11-16 15:47:38
## 757      4.0  942767258 1999-11-16 15:47:38
## 758      4.0  942767258 1999-11-16 15:47:38
## 759      4.0  942767258 1999-11-16 15:47:38
## 760      4.0  942767258 1999-11-16 15:47:38
## 761      3.0  942767328 1999-11-16 15:48:48
## 762      4.0  942767258 1999-11-16 15:47:38
## 763      4.0  942767258 1999-11-16 15:47:38
## 764      5.0  942766420 1999-11-16 15:33:40
## 765      4.0  942766420 1999-11-16 15:33:40
## 766      3.0  942766725 1999-11-16 15:38:45
## 767      3.0  942766845 1999-11-16 15:40:45
## 768      5.0  942767029 1999-11-16 15:43:49
## 769      3.0  942766679 1999-11-16 15:37:59
## 770      4.0  942766472 1999-11-16 15:34:32
## 771      5.0  942766472 1999-11-16 15:34:32
## 772      2.0  942766845 1999-11-16 15:40:45
## 773      5.0  942766515 1999-11-16 15:35:15
## 774      3.0  942766472 1999-11-16 15:34:32
## 775      5.0  942766991 1999-11-16 15:43:11
## 776      4.0  942767328 1999-11-16 15:48:48
## 777      2.0  942767328 1999-11-16 15:48:48
## 778      4.0  942766845 1999-11-16 15:40:45
## 779      5.0  942766515 1999-11-16 15:35:15
## 780      5.0  942766109 1999-11-16 15:28:29
## 781      3.0  942766251 1999-11-16 15:30:51
## 782      3.0  942766213 1999-11-16 15:30:13
## 783      4.0  942766029 1999-11-16 15:27:09
## 784      3.0  942766164 1999-11-16 15:29:24
## 785      4.0  942765978 1999-11-16 15:26:18
## 786      2.0  942766213 1999-11-16 15:30:13
## 787      5.0  942767121 1999-11-16 15:45:21
## 788      2.0  942766251 1999-11-16 15:30:51
## 789      3.0  942766059 1999-11-16 15:27:39
## 790      4.0  942767571 1999-11-16 15:52:51
## 791      5.0 1391658537 2014-02-06 03:48:57
## 792      1.0 1391656827 2014-02-06 03:20:27
## 793      4.0 1391657561 2014-02-06 03:32:41
## 794      3.0 1391657297 2014-02-06 03:28:17
## 795      5.0 1391658423 2014-02-06 03:47:03
## 796      4.5 1391658505 2014-02-06 03:48:25
## 797      3.5 1391656845 2014-02-06 03:20:45
## 798      5.0 1391658556 2014-02-06 03:49:16
## 799      4.5 1391658634 2014-02-06 03:50:34
## 800      5.0 1391658440 2014-02-06 03:47:20
## 801      5.0 1391658667 2014-02-06 03:51:07
## 802      3.0 1391657062 2014-02-06 03:24:22
## 803      3.5 1391657376 2014-02-06 03:29:36
## 804      4.5 1391657543 2014-02-06 03:32:23
## 805      3.0 1391658583 2014-02-06 03:49:43
## 806      3.0 1391657112 2014-02-06 03:25:12
## 807      3.0 1391658601 2014-02-06 03:50:01
## 808      5.0 1391657861 2014-02-06 03:37:41
## 809      5.0 1391658574 2014-02-06 03:49:34
## 810      5.0 1391658450 2014-02-06 03:47:30
## 811      4.0 1391657605 2014-02-06 03:33:25
## 812      4.5 1391657459 2014-02-06 03:30:59
## 813      3.5 1391657720 2014-02-06 03:35:20
## 814      4.5 1391658141 2014-02-06 03:42:21
## 815      4.0 1391658115 2014-02-06 03:41:55
## 816      4.5 1391658399 2014-02-06 03:46:39
## 817      3.0 1391658137 2014-02-06 03:42:17
## 818      4.0 1391658210 2014-02-06 03:43:30
## 819      3.5 1391658218 2014-02-06 03:43:38
## 820      4.0 1391658385 2014-02-06 03:46:25
## 821      4.5 1391658311 2014-02-06 03:45:11
## 822      4.5 1391658125 2014-02-06 03:42:05
## 823      4.0 1391658270 2014-02-06 03:44:30
## 824      4.0 1391658186 2014-02-06 03:43:06
## 825      4.0 1391657924 2014-02-06 03:38:44
## 826      4.0 1391657610 2014-02-06 03:33:30
## 827      5.0 1391658157 2014-02-06 03:42:37
## 828      5.0 1391657798 2014-02-06 03:36:38
## 829      3.0  968045587 2000-09-04 05:33:07
## 830      1.0  968045407 2000-09-04 05:30:07
## 831      3.0  968045438 2000-09-04 05:30:38
## 832      2.0  968045353 2000-09-04 05:29:13
## 833      1.0  968045732 2000-09-04 05:35:32
## 834      4.0  968045680 2000-09-04 05:34:40
## 835      3.0  968045764 2000-09-04 05:36:04
## 836      1.0  968045500 2000-09-04 05:31:40
## 837      2.0  968045561 2000-09-04 05:32:41
## 838      3.0  968045500 2000-09-04 05:31:40
## 839      1.0  955407153 2000-04-10 22:52:33
## 840      5.0  968045353 2000-09-04 05:29:13
## 841      5.0  955407153 2000-04-10 22:52:33
## 842      2.0  968045354 2000-09-04 05:29:14
## 843      5.0  968045354 2000-09-04 05:29:14
## 844      1.0  955407153 2000-04-10 22:52:33
## 845      1.0  968045475 2000-09-04 05:31:15
## 846      4.0  968045475 2000-09-04 05:31:15
## 847      2.0  968045438 2000-09-04 05:30:38
## 848      3.0  968045529 2000-09-04 05:32:09
## 849      2.0  955407153 2000-04-10 22:52:33
## 850      2.0  968045475 2000-09-04 05:31:15
## 851      4.0  968045680 2000-09-04 05:34:40
## 852      1.0  968045475 2000-09-04 05:31:15
## 853      2.0  968045764 2000-09-04 05:36:04
## 854      4.0  968045407 2000-09-04 05:30:07
## 855      2.0  968045732 2000-09-04 05:35:32
## 856      1.0  968045379 2000-09-04 05:29:39
## 857      3.0  968045649 2000-09-04 05:34:09
## 858      2.0  968045354 2000-09-04 05:29:14
## 859      4.0  968045529 2000-09-04 05:32:09
## 860      1.0  968045732 2000-09-04 05:35:32
## 861      4.0  968045379 2000-09-04 05:29:39
## 862      4.0  955407153 2000-04-10 22:52:33
## 863      3.0  968045619 2000-09-04 05:33:39
## 864      2.0  968045680 2000-09-04 05:34:40
## 865      2.0  968045619 2000-09-04 05:33:39
## 866      1.0  968045232 2000-09-04 05:27:12
## 867      5.0  968045232 2000-09-04 05:27:12
## 868      3.0  968045232 2000-09-04 05:27:12
## 869      4.0  968045232 2000-09-04 05:27:12
## 870      1.0  968045198 2000-09-04 05:26:38
## 871      3.0  968045198 2000-09-04 05:26:38
## 872      3.0  968045172 2000-09-04 05:26:12
## 873      5.0  968045142 2000-09-04 05:25:42
## 874      2.0  968045142 2000-09-04 05:25:42
## 875      2.0  968045106 2000-09-04 05:25:06
## 876      4.0  968045106 2000-09-04 05:25:06
## 877      2.0  968045074 2000-09-04 05:24:34
## 878      1.0  968045074 2000-09-04 05:24:34
## 879      3.0  968045015 2000-09-04 05:23:35
## 880      5.0  968045015 2000-09-04 05:23:35
## 881      3.0  968045015 2000-09-04 05:23:35
## 882      5.0  968045015 2000-09-04 05:23:35
## 883      2.0  968044981 2000-09-04 05:23:01
## 884      2.0  968044981 2000-09-04 05:23:01
## 885      3.0  968044981 2000-09-04 05:23:01
## 886      5.0  968044949 2000-09-04 05:22:29
## 887      3.0  968044949 2000-09-04 05:22:29
## 888      2.0  968044949 2000-09-04 05:22:29
## 889      4.0  968045173 2000-09-04 05:26:13
## 890      5.0 1331380058 2012-03-10 11:47:38
## 891      2.5 1331380914 2012-03-10 12:01:54
## 892      4.0 1331380038 2012-03-10 11:47:18
## 893      4.0 1331379348 2012-03-10 11:35:48
## 894      3.5 1331380895 2012-03-10 12:01:35
## 895      4.5 1331380029 2012-03-10 11:47:09
## 896      5.0 1331380018 2012-03-10 11:46:58
## 897      4.5 1331379479 2012-03-10 11:37:59
## 898      3.0 1331380025 2012-03-10 11:47:05
## 899      3.5 1331379485 2012-03-10 11:38:05
## 900      4.0 1331380901 2012-03-10 12:01:41
## 901      4.0 1331379483 2012-03-10 11:38:03
## 902      3.0 1331380851 2012-03-10 12:00:51
## 903      4.0 1331380062 2012-03-10 11:47:42
## 904      4.0 1331379366 2012-03-10 11:36:06
## 905      3.5 1331380871 2012-03-10 12:01:11
## 906      3.0 1331379520 2012-03-10 11:38:40
## 907      4.0 1331380814 2012-03-10 12:00:14
## 908      2.5 1331380845 2012-03-10 12:00:45
## 909      3.0 1331379386 2012-03-10 11:36:26
## 910      4.0 1331380745 2012-03-10 11:59:05
## 911      4.0 1331380741 2012-03-10 11:59:01
## 912      3.0 1331380888 2012-03-10 12:01:28
## 913      3.5 1331379777 2012-03-10 11:42:57
## 914      4.0 1331379470 2012-03-10 11:37:50
## 915      3.0 1331380765 2012-03-10 11:59:25
## 916      3.0 1331380731 2012-03-10 11:58:51
## 917      3.0 1331379494 2012-03-10 11:38:14
## 918      3.0 1331380761 2012-03-10 11:59:21
## 919      3.0 1331380738 2012-03-10 11:58:58
## 920      4.0 1331380752 2012-03-10 11:59:12
## 921      3.5 1331379342 2012-03-10 11:35:42
## 922      3.5 1331379599 2012-03-10 11:39:59
## 923      3.0 1331379574 2012-03-10 11:39:34
## 924      4.0 1331380721 2012-03-10 11:58:41
## 925      4.5 1331379506 2012-03-10 11:38:26
## 926      2.5 1331379589 2012-03-10 11:39:49
## 927      3.5 1331379530 2012-03-10 11:38:50
## 928      4.5 1331380145 2012-03-10 11:49:05
## 929      3.5 1331380834 2012-03-10 12:00:34
## 930      4.5 1331380883 2012-03-10 12:01:23
## 931      4.0 1331380785 2012-03-10 11:59:45
## 932      4.5 1331380734 2012-03-10 11:58:54
## 933      4.0 1331380159 2012-03-10 11:49:19
## 934      4.5 1331380306 2012-03-10 11:51:46
## 935      3.5 1331380782 2012-03-10 11:59:42
## 936      4.5 1331380873 2012-03-10 12:01:13
## 937      4.5 1331380830 2012-03-10 12:00:30
## 938      4.0 1331379748 2012-03-10 11:42:28
## 939      4.0 1331380725 2012-03-10 11:58:45
## 940      4.5 1331380387 2012-03-10 11:53:07
## 941      4.5 1331380390 2012-03-10 11:53:10
## 942      3.0 1331379985 2012-03-10 11:46:25
## 943      1.0  976243997 2000-12-08 02:53:17
## 944      4.0  976243997 2000-12-08 02:53:17
## 945      3.0  976243912 2000-12-08 02:51:52
## 946      3.0  976244179 2000-12-08 02:56:19
## 947      2.0  976244179 2000-12-08 02:56:19
## 948      3.0  976244471 2000-12-08 03:01:11
## 949      3.0  976243933 2000-12-08 02:52:13
## 950      2.0  976244131 2000-12-08 02:55:31
## 951      3.0  976244313 2000-12-08 02:58:33
## 952      2.0  976244367 2000-12-08 02:59:27
## 953      3.0  976244524 2000-12-08 03:02:04
## 954      2.0  976244287 2000-12-08 02:58:07
## 955      4.0  976244591 2000-12-08 03:03:11
## 956      2.0  976244564 2000-12-08 03:02:44
## 957      5.0  976244313 2000-12-08 02:58:33
## 958      3.0  976243997 2000-12-08 02:53:17
## 959      3.0  976244423 2000-12-08 03:00:23
## 960      4.0  976244205 2000-12-08 02:56:45
## 961      3.0  976244107 2000-12-08 02:55:07
## 962      4.0  976244343 2000-12-08 02:59:03
## 963      2.0  997938310 2001-08-16 05:05:10
## 964      2.0 1134521380 2005-12-14 00:49:40
## 965      4.5 1093070098 2004-08-21 06:34:58
## 966      4.0 1040205753 2002-12-18 10:02:33
## 967      3.0 1093028290 2004-08-20 18:58:10
## 968      2.5 1093028381 2004-08-20 18:59:41
## 969      2.5 1166586286 2006-12-20 03:44:46
## 970      3.5 1093070150 2004-08-21 06:35:50
## 971      3.0  997939404 2001-08-16 05:23:24
## 972      1.0 1093028409 2004-08-20 19:00:09
## 973      4.5 1058249528 2003-07-15 06:12:08
## 974      2.5 1093070415 2004-08-21 06:40:15
## 975      3.0 1033345172 2002-09-30 00:19:32
## 976      4.0  997938466 2001-08-16 05:07:46
## 977      3.0  997938310 2001-08-16 05:05:10
## 978      1.0 1033345287 2002-09-30 00:21:27
## 979      2.5 1093028334 2004-08-20 18:58:54
## 980      3.0 1122576665 2005-07-28 18:51:05
## 981      5.0 1054449816 2003-06-01 06:43:36
## 982      5.0  997938500 2001-08-16 05:08:20
## 983      2.5 1093070271 2004-08-21 06:37:51
## 984      2.0 1093028336 2004-08-20 18:58:56
## 985      0.5 1093070467 2004-08-21 06:41:07
## 986      5.0 1044220302 2003-02-02 21:11:42
## 987      3.0 1166587063 2006-12-20 03:57:43
## 988      1.5 1093028331 2004-08-20 18:58:51
## 989      4.0 1134522072 2005-12-14 01:01:12
## 990      1.0 1093070113 2004-08-21 06:35:13
## 991      2.0 1166586594 2006-12-20 03:49:54
## 992      3.0 1040205792 2002-12-18 10:03:12
## 993      5.0  997938500 2001-08-16 05:08:20
## 994      2.5 1093070156 2004-08-21 06:35:56
## 995      4.0  997938358 2001-08-16 05:05:58
## 996      3.5 1245362506 2009-06-18 22:01:46
## 997      3.5 1134521543 2005-12-14 00:52:23
## 998      5.0 1075142933 2004-01-26 18:48:53
## 999      3.0  997939380 2001-08-16 05:23:00
## 1000     1.0 1128274517 2005-10-02 17:35:17
## 1001     2.0 1052896975 2003-05-14 07:22:55
## 1002     0.5 1093028411 2004-08-20 19:00:11
## 1003     3.0 1093028319 2004-08-20 18:58:39
## 1004     4.0  997938676 2001-08-16 05:11:16
## 1005     2.0 1166586021 2006-12-20 03:40:21
## 1006     4.0  997938413 2001-08-16 05:06:53
## 1007     3.0 1093028183 2004-08-20 18:56:23
## 1008     2.5 1166586376 2006-12-20 03:46:16
## 1009     1.0 1093070329 2004-08-21 06:38:49
## 1010     4.0 1166587180 2006-12-20 03:59:40
## 1011     4.0 1046209579 2003-02-25 21:46:19
## 1012     3.0 1166586276 2006-12-20 03:44:36
## 1013     2.0 1052896916 2003-05-14 07:21:56
## 1014     1.0 1193435347 2007-10-26 21:49:07
## 1015     2.0 1093070170 2004-08-21 06:36:10
## 1016     1.5 1134521967 2005-12-14 00:59:27
## 1017     1.5 1193435482 2007-10-26 21:51:22
## 1018     2.0 1033345241 2002-09-30 00:20:41
## 1019     4.5 1054449903 2003-06-01 06:45:03
## 1020     1.0 1349622582 2012-10-07 15:09:42
## 1021     4.0  997939415 2001-08-16 05:23:35
## 1022     1.0 1134521432 2005-12-14 00:50:32
## 1023     1.0 1033345068 2002-09-30 00:17:48
## 1024     3.5 1093028308 2004-08-20 18:58:28
## 1025     4.0 1033345227 2002-09-30 00:20:27
## 1026     4.0 1033344772 2002-09-30 00:12:52
## 1027     4.0  997939415 2001-08-16 05:23:35
## 1028     3.5 1166586251 2006-12-20 03:44:11
## 1029     5.0  997938656 2001-08-16 05:10:56
## 1030     2.0  997938567 2001-08-16 05:09:27
## 1031     2.0 1093070318 2004-08-21 06:38:38
## 1032     2.0 1093028328 2004-08-20 18:58:48
## 1033     5.0  997938437 2001-08-16 05:07:17
## 1034     1.0 1058250479 2003-07-15 06:27:59
## 1035     2.0 1093028372 2004-08-20 18:59:32
## 1036     1.0 1093028298 2004-08-20 18:58:18
## 1037     5.0  997938567 2001-08-16 05:09:27
## 1038     5.0  997938771 2001-08-16 05:12:51
## 1039     4.0 1054449869 2003-06-01 06:44:29
## 1040     5.0  997938737 2001-08-16 05:12:17
## 1041     4.0  997938894 2001-08-16 05:14:54
## 1042     4.0 1052897100 2003-05-14 07:25:00
## 1043     3.0 1052896866 2003-05-14 07:21:06
## 1044     1.0 1093028399 2004-08-20 18:59:59
## 1045     2.0  997938727 2001-08-16 05:12:07
## 1046     2.5 1120209787 2005-07-01 09:23:07
## 1047     1.5 1093028255 2004-08-20 18:57:35
## 1048     2.0  997938391 2001-08-16 05:06:31
## 1049     2.5 1122576622 2005-07-28 18:50:22
## 1050     3.0 1058250589 2003-07-15 06:29:49
## 1051     2.0 1093028220 2004-08-20 18:57:00
## 1052     3.0  997939193 2001-08-16 05:19:53
## 1053     3.0 1093070088 2004-08-21 06:34:48
## 1054     0.5 1122576667 2005-07-28 18:51:07
## 1055     1.0 1058250631 2003-07-15 06:30:31
## 1056     3.5 1058250490 2003-07-15 06:28:10
## 1057     4.0  997939065 2001-08-16 05:17:45
## 1058     2.0 1374637824 2013-07-24 03:50:24
## 1059     3.5 1122576670 2005-07-28 18:51:10
## 1060     2.0 1443385370 2015-09-27 20:22:50
## 1061     3.0 1465793100 2016-06-13 04:45:00
## 1062     3.5 1054449871 2003-06-01 06:44:31
## 1063     4.0 1033344267 2002-09-30 00:04:27
## 1064     4.0  997939179 2001-08-16 05:19:39
## 1065     3.5 1166586661 2006-12-20 03:51:01
## 1066     1.0 1465955324 2016-06-15 01:48:44
## 1067     4.0 1132469126 2005-11-20 06:45:26
## 1068     3.0 1093028320 2004-08-20 18:58:40
## 1069     1.0 1093070102 2004-08-21 06:35:02
## 1070     2.5 1058250627 2003-07-15 06:30:27
## 1071     4.0  997938322 2001-08-16 05:05:22
## 1072     1.0 1193435522 2007-10-26 21:52:02
## 1073     3.0 1093028323 2004-08-20 18:58:43
## 1074     5.0  997938567 2001-08-16 05:09:27
## 1075     2.5 1134521456 2005-12-14 00:50:56
## 1076     3.0 1166586067 2006-12-20 03:41:07
## 1077     3.0 1093028384 2004-08-20 18:59:44
## 1078     3.0  997939193 2001-08-16 05:19:53
## 1079     3.0 1166586748 2006-12-20 03:52:28
## 1080     1.0  997938905 2001-08-16 05:15:05
## 1081     0.5 1093070332 2004-08-21 06:38:52
## 1082     4.0 1093028414 2004-08-20 19:00:14
## 1083     3.0 1035258747 2002-10-22 03:52:27
## 1084     1.5 1093028394 2004-08-20 18:59:54
## 1085     2.0 1093028389 2004-08-20 18:59:49
## 1086     3.5 1443384915 2015-09-27 20:15:15
## 1087     2.5 1166586387 2006-12-20 03:46:27
## 1088     4.0  997937239 2001-08-16 04:47:19
## 1089     3.0 1033345148 2002-09-30 00:19:08
## 1090     2.0 1093028325 2004-08-20 18:58:45
## 1091     1.5 1240203835 2009-04-20 05:03:55
## 1092     5.0  997938438 2001-08-16 05:07:18
## 1093     3.0 1093070381 2004-08-21 06:39:41
## 1094     5.0  997938676 2001-08-16 05:11:16
## 1095     2.0  997939055 2001-08-16 05:17:35
## 1096     4.0 1033344257 2002-09-30 00:04:17
## 1097     3.5 1361078504 2013-02-17 05:21:44
## 1098     3.0 1166586512 2006-12-20 03:48:32
## 1099     3.0 1141391972 2006-03-03 13:19:32
## 1100     2.0 1093028377 2004-08-20 18:59:37
## 1101     1.0 1093028322 2004-08-20 18:58:42
## 1102     0.5 1093028161 2004-08-20 18:56:01
## 1103     4.0  997938451 2001-08-16 05:07:31
## 1104     3.0 1093028142 2004-08-20 18:55:42
## 1105     4.0  997939162 2001-08-16 05:19:22
## 1106     5.0  997938500 2001-08-16 05:08:20
## 1107     2.5 1245021392 2009-06-14 23:16:32
## 1108     2.5 1093028267 2004-08-20 18:57:47
## 1109     5.0  997938500 2001-08-16 05:08:20
## 1110     3.0 1052896916 2003-05-14 07:21:56
## 1111     2.5 1093070326 2004-08-21 06:38:46
## 1112     1.5 1134521628 2005-12-14 00:53:48
## 1113     4.0 1093028231 2004-08-20 18:57:11
## 1114     2.0 1035258608 2002-10-22 03:50:08
## 1115     3.0  997939348 2001-08-16 05:22:28
## 1116     3.0 1052896916 2003-05-14 07:21:56
## 1117     2.0 1052896867 2003-05-14 07:21:07
## 1118     3.0 1093028406 2004-08-20 19:00:06
## 1119     3.0 1033345122 2002-09-30 00:18:42
## 1120     2.0 1166586237 2006-12-20 03:43:57
## 1121     3.5 1093028260 2004-08-20 18:57:40
## 1122     1.0 1093028237 2004-08-20 18:57:17
## 1123     3.0  997938288 2001-08-16 05:04:48
## 1124     2.5 1166586565 2006-12-20 03:49:25
## 1125     4.0  997938438 2001-08-16 05:07:18
## 1126     2.0 1093070454 2004-08-21 06:40:54
## 1127     4.0 1054450167 2003-06-01 06:49:27
## 1128     2.5 1093028151 2004-08-20 18:55:51
## 1129     2.5 1093070207 2004-08-21 06:36:47
## 1130     3.0 1033344834 2002-09-30 00:13:54
## 1131     0.5 1093028395 2004-08-20 18:59:55
## 1132     1.5 1134521382 2005-12-14 00:49:42
## 1133     3.0 1136904835 2006-01-10 14:53:55
## 1134     5.0  997938391 2001-08-16 05:06:31
## 1135     1.0 1128274713 2005-10-02 17:38:33
## 1136     4.5 1054450008 2003-06-01 06:46:48
## 1137     3.5 1134522085 2005-12-14 01:01:25
## 1138     1.0 1166586002 2006-12-20 03:40:02
## 1139     2.0 1166586995 2006-12-20 03:56:35
## 1140     4.0 1035258747 2002-10-22 03:52:27
## 1141     5.0  997938703 2001-08-16 05:11:43
## 1142     4.0  997938567 2001-08-16 05:09:27
## 1143     5.0 1058250570 2003-07-15 06:29:30
## 1144     5.0  997938346 2001-08-16 05:05:46
## 1145     5.0  997938346 2001-08-16 05:05:46
## 1146     5.0  997938500 2001-08-16 05:08:20
## 1147     4.0  997939604 2001-08-16 05:26:44
## 1148     2.5 1122576681 2005-07-28 18:51:21
## 1149     4.0 1058250459 2003-07-15 06:27:39
## 1150     5.0  997938140 2001-08-16 05:02:20
## 1151     4.0 1416119525 2014-11-16 06:32:05
## 1152     1.5 1058250501 2003-07-15 06:28:21
## 1153     1.0 1128274460 2005-10-02 17:34:20
## 1154     3.0  997938737 2001-08-16 05:12:17
## 1155     3.5 1093070090 2004-08-21 06:34:50
## 1156     1.0 1040205624 2002-12-18 10:00:24
## 1157     5.0  997938727 2001-08-16 05:12:07
## 1158     5.0  997938358 2001-08-16 05:05:58
## 1159     3.0 1044219825 2003-02-02 21:03:45
## 1160     1.0 1058250466 2003-07-15 06:27:46
## 1161     3.0  997938800 2001-08-16 05:13:20
## 1162     4.0  997939453 2001-08-16 05:24:13
## 1163     2.0 1166586619 2006-12-20 03:50:19
## 1164     2.0 1034544304 2002-10-13 21:25:04
## 1165     4.0  997938528 2001-08-16 05:08:48
## 1166     5.0  997938905 2001-08-16 05:15:05
## 1167     2.5 1348976598 2012-09-30 03:43:18
## 1168     1.5 1166586136 2006-12-20 03:42:16
## 1169     4.0 1054450184 2003-06-01 06:49:44
## 1170     3.0  997938603 2001-08-16 05:10:03
## 1171     4.0  997937239 2001-08-16 04:47:19
## 1172     3.0  997938787 2001-08-16 05:13:07
## 1173     2.0 1122576683 2005-07-28 18:51:23
## 1174     4.0  997938528 2001-08-16 05:08:48
## 1175     2.5 1193436089 2007-10-26 22:01:29
## 1176     2.0 1166586415 2006-12-20 03:46:55
## 1177     4.0 1033345199 2002-09-30 00:19:59
## 1178     4.0 1040205624 2002-12-18 10:00:24
## 1179     4.0  997938466 2001-08-16 05:07:46
## 1180     2.5 1458506296 2016-03-20 20:38:16
## 1181     3.0 1093070163 2004-08-21 06:36:03
## 1182     1.0 1055439464 2003-06-12 17:37:44
## 1183     4.0  997939162 2001-08-16 05:19:22
## 1184     2.5 1345397949 2012-08-19 17:39:09
## 1185     2.5 1128274586 2005-10-02 17:36:26
## 1186     3.5 1386368101 2013-12-06 22:15:01
## 1187     3.0  997938288 2001-08-16 05:04:48
## 1188     4.0 1054449673 2003-06-01 06:41:13
## 1189     3.0 1193435335 2007-10-26 21:48:55
## 1190     4.0  997938862 2001-08-16 05:14:22
## 1191     3.0  997938771 2001-08-16 05:12:51
## 1192     4.0 1033344257 2002-09-30 00:04:17
## 1193     2.0 1443384910 2015-09-27 20:15:10
## 1194     4.5 1166586456 2006-12-20 03:47:36
## 1195     3.5 1361078481 2013-02-17 05:21:21
## 1196     5.0  997938760 2001-08-16 05:12:40
## 1197     5.0  997938438 2001-08-16 05:07:18
## 1198     1.0 1040205753 2002-12-18 10:02:33
## 1199     4.0  997939111 2001-08-16 05:18:31
## 1200     1.0 1093070386 2004-08-21 06:39:46
## 1201     4.0  997938528 2001-08-16 05:08:48
## 1202     3.5 1345398232 2012-08-19 17:43:52
## 1203     4.0  997938784 2001-08-16 05:13:04
## 1204     2.0  997939111 2001-08-16 05:18:31
## 1205     5.0  997938438 2001-08-16 05:07:18
## 1206     3.0 1044347743 2003-02-04 08:35:43
## 1207     5.0  997938822 2001-08-16 05:13:42
## 1208     4.5 1345398245 2012-08-19 17:44:05
## 1209     5.0  997938466 2001-08-16 05:07:46
## 1210     1.5 1058250487 2003-07-15 06:28:07
## 1211     3.0 1166586696 2006-12-20 03:51:36
## 1212     3.0  997938749 2001-08-16 05:12:29
## 1213     4.0  997938203 2001-08-16 05:03:23
## 1214     1.5 1054271469 2003-05-30 05:11:09
## 1215     2.0 1055439440 2003-06-12 17:37:20
## 1216     4.0  997939207 2001-08-16 05:20:07
## 1217     3.0  997938203 2001-08-16 05:03:23
## 1218     1.0 1093070109 2004-08-21 06:35:09
## 1219     5.0  997938712 2001-08-16 05:11:52
## 1220     4.0  997939614 2001-08-16 05:26:54
## 1221     4.0  997938288 2001-08-16 05:04:48
## 1222     4.0 1034544304 2002-10-13 21:25:04
## 1223     4.0  997938800 2001-08-16 05:13:20
## 1224     3.0 1044347881 2003-02-04 08:38:01
## 1225     4.0 1054450216 2003-06-01 06:50:16
## 1226     3.0  997938727 2001-08-16 05:12:07
## 1227     4.0 1054450238 2003-06-01 06:50:38
## 1228     3.5 1166586368 2006-12-20 03:46:08
## 1229     3.0  997938451 2001-08-16 05:07:31
## 1230     2.0 1033345172 2002-09-30 00:19:32
## 1231     5.0  997938151 2001-08-16 05:02:31
## 1232     1.0 1093070174 2004-08-21 06:36:14
## 1233     5.0  997938171 2001-08-16 05:02:51
## 1234     3.0  997938509 2001-08-16 05:08:29
## 1235     3.0  997938500 2001-08-16 05:08:20
## 1236     4.0  997938760 2001-08-16 05:12:40
## 1237     3.0  997938749 2001-08-16 05:12:29
## 1238     5.0  997938346 2001-08-16 05:05:46
## 1239     3.5 1345398347 2012-08-19 17:45:47
## 1240     4.0  997938219 2001-08-16 05:03:39
## 1241     3.0  997938917 2001-08-16 05:15:17
## 1242     3.0  997938981 2001-08-16 05:16:21
## 1243     1.5 1134521651 2005-12-14 00:54:11
## 1244     4.0 1120208625 2005-07-01 09:03:45
## 1245     3.0  997938162 2001-08-16 05:02:42
## 1246     4.0  997938171 2001-08-16 05:02:51
## 1247     4.0  997939360 2001-08-16 05:22:40
## 1248     5.0  997938500 2001-08-16 05:08:20
## 1249     5.0  997938451 2001-08-16 05:07:31
## 1250     3.5 1054450246 2003-06-01 06:50:46
## 1251     2.5 1054450208 2003-06-01 06:50:08
## 1252     3.0  997938941 2001-08-16 05:15:41
## 1253     1.0 1063565335 2003-09-14 18:48:55
## 1254     3.0 1416120074 2014-11-16 06:41:14
## 1255     3.0 1345397986 2012-08-19 17:39:46
## 1256     2.0 1033345087 2002-09-30 00:18:07
## 1257     4.0 1163876491 2006-11-18 19:01:31
## 1258     4.0 1465793922 2016-06-13 04:58:42
## 1259     3.0 1035258608 2002-10-22 03:50:08
## 1260     4.0  997939144 2001-08-16 05:19:04
## 1261     4.0  997938894 2001-08-16 05:14:54
## 1262     4.0 1166587005 2006-12-20 03:56:45
## 1263     3.0 1093070459 2004-08-21 06:40:59
## 1264     2.0 1054450251 2003-06-01 06:50:51
## 1265     3.0 1040205753 2002-12-18 10:02:33
## 1266     5.0  997938162 2001-08-16 05:02:42
## 1267     3.0 1134521497 2005-12-14 00:51:37
## 1268     2.0  997938219 2001-08-16 05:03:39
## 1269     2.0 1052896916 2003-05-14 07:21:56
## 1270     2.0 1134521654 2005-12-14 00:54:14
## 1271     2.0 1033345050 2002-09-30 00:17:30
## 1272     2.0 1052896819 2003-05-14 07:20:19
## 1273     1.0  997938500 2001-08-16 05:08:20
## 1274     3.5 1361078494 2013-02-17 05:21:34
## 1275     3.0 1093070198 2004-08-21 06:36:38
## 1276     3.0 1093070479 2004-08-21 06:41:19
## 1277     2.5 1166586012 2006-12-20 03:40:12
## 1278     3.0 1458506268 2016-03-20 20:37:48
## 1279     4.0 1040205754 2002-12-18 10:02:34
## 1280     0.5 1093070145 2004-08-21 06:35:45
## 1281     3.5 1058250612 2003-07-15 06:30:12
## 1282     4.0  997939021 2001-08-16 05:17:01
## 1283     4.0 1055439459 2003-06-12 17:37:39
## 1284     3.0 1052897043 2003-05-14 07:24:03
## 1285     5.0  997938219 2001-08-16 05:03:39
## 1286     4.0  997939358 2001-08-16 05:22:38
## 1287     4.0  997938391 2001-08-16 05:06:31
## 1288     4.0  997939439 2001-08-16 05:23:59
## 1289     3.0 1134522057 2005-12-14 01:00:57
## 1290     1.5 1338699256 2012-06-03 04:54:16
## 1291     3.0 1193435343 2007-10-26 21:49:03
## 1292     3.0  997938358 2001-08-16 05:05:58
## 1293     3.0 1093070397 2004-08-21 06:39:57
## 1294     3.0 1093070210 2004-08-21 06:36:50
## 1295     1.5 1425876701 2015-03-09 04:51:41
## 1296     1.0 1035258747 2002-10-22 03:52:27
## 1297     2.0 1033344937 2002-09-30 00:15:37
## 1298     3.0  997939453 2001-08-16 05:24:13
## 1299     1.0 1052896819 2003-05-14 07:20:19
## 1300     3.0  997939393 2001-08-16 05:23:13
## 1301     1.0 1093070319 2004-08-21 06:38:39
## 1302     4.0  997938322 2001-08-16 05:05:22
## 1303     1.5 1134521507 2005-12-14 00:51:47
## 1304     2.5 1166587010 2006-12-20 03:56:50
## 1305     1.5 1166586212 2006-12-20 03:43:32
## 1306     3.5 1134521624 2005-12-14 00:53:44
## 1307     4.0  997938476 2001-08-16 05:07:56
## 1308     4.0  997939179 2001-08-16 05:19:39
## 1309     4.0 1052896685 2003-05-14 07:18:05
## 1310     2.0 1093028013 2004-08-20 18:53:33
## 1311     2.0 1134521585 2005-12-14 00:53:05
## 1312     1.0 1093070221 2004-08-21 06:37:01
## 1313     3.0 1040205754 2002-12-18 10:02:34
## 1314     3.0  997939193 2001-08-16 05:19:53
## 1315     3.0 1166587214 2006-12-20 04:00:14
## 1316     5.0  997938346 2001-08-16 05:05:46
## 1317     4.0  997938391 2001-08-16 05:06:31
## 1318     4.0 1033345134 2002-09-30 00:18:54
## 1319     4.0 1054449877 2003-06-01 06:44:37
## 1320     1.5 1166586517 2006-12-20 03:48:37
## 1321     3.0  997938413 2001-08-16 05:06:53
## 1322     2.0  997938647 2001-08-16 05:10:47
## 1323     3.0 1052896685 2003-05-14 07:18:05
## 1324     3.0 1058250115 2003-07-15 06:21:55
## 1325     3.0 1033345299 2002-09-30 00:21:39
## 1326     4.0 1052896916 2003-05-14 07:21:56
## 1327     3.0 1166586583 2006-12-20 03:49:43
## 1328     2.0  997939424 2001-08-16 05:23:44
## 1329     4.5 1465880892 2016-06-14 05:08:12
## 1330     1.0 1134521603 2005-12-14 00:53:23
## 1331     3.0  997938879 2001-08-16 05:14:39
## 1332     4.0 1033345148 2002-09-30 00:19:08
## 1333     4.0 1166586533 2006-12-20 03:48:53
## 1334     4.0  997938931 2001-08-16 05:15:31
## 1335     1.5 1093028339 2004-08-20 18:58:59
## 1336     3.5 1134521534 2005-12-14 00:52:14
## 1337     1.0 1033344286 2002-09-30 00:04:46
## 1338     3.5 1054449676 2003-06-01 06:41:16
## 1339     0.5 1166981862 2006-12-24 17:37:42
## 1340     3.5 1134521589 2005-12-14 00:53:09
## 1341     4.0  997938451 2001-08-16 05:07:31
## 1342     3.5 1469330699 2016-07-24 03:24:59
## 1343     1.0 1349622617 2012-10-07 15:10:17
## 1344     3.5 1460076717 2016-04-08 00:51:57
## 1345     2.0 1134521514 2005-12-14 00:51:54
## 1346     1.0 1166586707 2006-12-20 03:51:47
## 1347     3.0 1033345287 2002-09-30 00:21:27
## 1348     3.0 1458506454 2016-03-20 20:40:54
## 1349     3.0  997938391 2001-08-16 05:06:31
## 1350     1.5 1093028022 2004-08-20 18:53:42
## 1351     2.5 1166587162 2006-12-20 03:59:22
## 1352     2.5 1465881179 2016-06-14 05:12:59
## 1353     4.0  997938676 2001-08-16 05:11:16
## 1354     2.0 1166586439 2006-12-20 03:47:19
## 1355     3.5 1058250734 2003-07-15 06:32:14
## 1356     2.0 1469330727 2016-07-24 03:25:27
## 1357     4.0 1052897012 2003-05-14 07:23:32
## 1358     5.0  997938834 2001-08-16 05:13:54
## 1359     4.0  997939439 2001-08-16 05:23:59
## 1360     2.0 1469330647 2016-07-24 03:24:07
## 1361     2.0 1134521539 2005-12-14 00:52:19
## 1362     1.5 1166586478 2006-12-20 03:47:58
## 1363     4.0 1052897043 2003-05-14 07:24:03
## 1364     3.0 1054449827 2003-06-01 06:43:47
## 1365     2.5 1469330584 2016-07-24 03:23:04
## 1366     1.5 1054450597 2003-06-01 06:56:37
## 1367     3.5 1075142949 2004-01-26 18:49:09
## 1368     2.0 1052896819 2003-05-14 07:20:19
## 1369     5.0 1033345241 2002-09-30 00:20:41
## 1370     3.5 1054449899 2003-06-01 06:44:59
## 1371     2.0 1052896916 2003-05-14 07:21:56
## 1372     4.0 1052896819 2003-05-14 07:20:19
## 1373     4.5 1054449908 2003-06-01 06:45:08
## 1374     4.0  997938954 2001-08-16 05:15:54
## 1375     3.0 1058249502 2003-07-15 06:11:42
## 1376     3.0  997938810 2001-08-16 05:13:30
## 1377     3.0  997938528 2001-08-16 05:08:48
## 1378     3.0 1040205792 2002-12-18 10:03:12
## 1379     4.5 1338698424 2012-06-03 04:40:24
## 1380     4.0 1166587036 2006-12-20 03:57:16
## 1381     3.5 1093028404 2004-08-20 19:00:04
## 1382     3.0 1033345068 2002-09-30 00:17:48
## 1383     3.0  997938372 2001-08-16 05:06:12
## 1384     4.0 1052897128 2003-05-14 07:25:28
## 1385     2.5 1166586228 2006-12-20 03:43:48
## 1386     5.0  997938255 2001-08-16 05:04:15
## 1387     3.0 1052896975 2003-05-14 07:22:55
## 1388     3.0 1034544351 2002-10-13 21:25:51
## 1389     4.0  997938630 2001-08-16 05:10:30
## 1390     4.0 1035258747 2002-10-22 03:52:27
## 1391     3.0 1052896685 2003-05-14 07:18:05
## 1392     3.0 1044219825 2003-02-02 21:03:45
## 1393     1.0 1046209705 2003-02-25 21:48:25
## 1394     2.0 1044347881 2003-02-04 08:38:01
## 1395     4.5 1134521638 2005-12-14 00:53:58
## 1396     2.5 1379040745 2013-09-13 02:52:25
## 1397     2.0 1465881239 2016-06-14 05:13:59
## 1398     3.0  997938784 2001-08-16 05:13:04
## 1399     2.0 1033344732 2002-09-30 00:12:12
## 1400     2.0  997938630 2001-08-16 05:10:30
## 1401     2.5 1166586203 2006-12-20 03:43:23
## 1402     2.0 1052896975 2003-05-14 07:22:55
## 1403     4.5 1338698431 2012-06-03 04:40:31
## 1404     3.0  997938413 2001-08-16 05:06:53
## 1405     2.0  997938603 2001-08-16 05:10:03
## 1406     4.0 1052896867 2003-05-14 07:21:07
## 1407     4.5 1058250482 2003-07-15 06:28:02
## 1408     4.0 1193435562 2007-10-26 21:52:42
## 1409     2.0 1033345050 2002-09-30 00:17:30
## 1410     1.0 1166587068 2006-12-20 03:57:48
## 1411     3.5 1166587080 2006-12-20 03:58:00
## 1412     3.5 1122576686 2005-07-28 18:51:26
## 1413     3.0 1052896819 2003-05-14 07:20:19
## 1414     2.0 1034544351 2002-10-13 21:25:51
## 1415     3.0  997937311 2001-08-16 04:48:31
## 1416     3.0 1166586521 2006-12-20 03:48:41
## 1417     3.0  997938630 2001-08-16 05:10:30
## 1418     3.0  997939162 2001-08-16 05:19:22
## 1419     4.0  997938603 2001-08-16 05:10:03
## 1420     3.0  997938528 2001-08-16 05:08:48
## 1421     4.0 1040205754 2002-12-18 10:02:34
## 1422     3.0 1052897043 2003-05-14 07:24:03
## 1423     4.0  997938466 2001-08-16 05:07:46
## 1424     4.5 1128274472 2005-10-02 17:34:32
## 1425     3.5 1054449665 2003-06-01 06:41:05
## 1426     1.0 1093070270 2004-08-21 06:37:50
## 1427     2.5 1465881227 2016-06-14 05:13:47
## 1428     2.5 1166586189 2006-12-20 03:43:09
## 1429     2.5 1134521675 2005-12-14 00:54:35
## 1430     0.5 1469330645 2016-07-24 03:24:05
## 1431     3.0 1052896740 2003-05-14 07:19:00
## 1432     4.0  997938322 2001-08-16 05:05:22
## 1433     3.0  997939439 2001-08-16 05:23:59
## 1434     2.0 1052897012 2003-05-14 07:23:32
## 1435     3.5 1093070399 2004-08-21 06:39:59
## 1436     3.0  997938931 2001-08-16 05:15:31
## 1437     2.0 1052896916 2003-05-14 07:21:56
## 1438     3.5 1345397769 2012-08-19 17:36:09
## 1439     4.5 1054449678 2003-06-01 06:41:18
## 1440     3.5 1122576690 2005-07-28 18:51:30
## 1441     2.0  997939328 2001-08-16 05:22:08
## 1442     1.0 1054450149 2003-06-01 06:49:09
## 1443     3.0 1033344795 2002-09-30 00:13:15
## 1444     3.0 1469330601 2016-07-24 03:23:21
## 1445     2.0 1033344772 2002-09-30 00:12:52
## 1446     2.0 1134522028 2005-12-14 01:00:28
## 1447     1.0 1044347881 2003-02-04 08:38:01
## 1448     0.5 1134521484 2005-12-14 00:51:24
## 1449     2.0  997939055 2001-08-16 05:17:35
## 1450     3.0  997938834 2001-08-16 05:13:54
## 1451     2.0  997937311 2001-08-16 04:48:31
## 1452     3.0 1040205792 2002-12-18 10:03:12
## 1453     1.0 1033344752 2002-09-30 00:12:32
## 1454     3.5 1166586655 2006-12-20 03:50:55
## 1455     3.0  997937311 2001-08-16 04:48:31
## 1456     3.5 1465880711 2016-06-14 05:05:11
## 1457     3.0  997938567 2001-08-16 05:09:27
## 1458     5.0  997939404 2001-08-16 05:23:24
## 1459     2.0  997938162 2001-08-16 05:02:42
## 1460     3.0 1052897012 2003-05-14 07:23:32
## 1461     3.5 1458506447 2016-03-20 20:40:47
## 1462     3.0 1052896819 2003-05-14 07:20:19
## 1463     4.5 1425875796 2015-03-09 04:36:36
## 1464     1.5 1134521618 2005-12-14 00:53:38
## 1465     3.0 1040205754 2002-12-18 10:02:34
## 1466     1.0 1033344782 2002-09-30 00:13:02
## 1467     2.0  997939328 2001-08-16 05:22:08
## 1468     2.5 1122576697 2005-07-28 18:51:37
## 1469     3.5 1166586146 2006-12-20 03:42:26
## 1470     1.0  997938413 2001-08-16 05:06:53
## 1471     4.0 1122576699 2005-07-28 18:51:39
## 1472     1.0 1033344906 2002-09-30 00:15:06
## 1473     3.0  997938760 2001-08-16 05:12:40
## 1474     5.0 1033344897 2002-09-30 00:14:57
## 1475     0.5 1122576701 2005-07-28 18:51:41
## 1476     2.0 1347937598 2012-09-18 03:06:38
## 1477     2.5 1465880194 2016-06-14 04:56:34
## 1478     1.0 1033344732 2002-09-30 00:12:12
## 1479     1.0  997939415 2001-08-16 05:23:35
## 1480     3.0 1033344917 2002-09-30 00:15:17
## 1481     0.5 1469330735 2016-07-24 03:25:35
## 1482     5.0  997938438 2001-08-16 05:07:18
## 1483     5.0 1033344641 2002-09-30 00:10:41
## 1484     1.0 1033344897 2002-09-30 00:14:57
## 1485     3.0 1033344772 2002-09-30 00:12:52
## 1486     2.5 1054449822 2003-06-01 06:43:42
## 1487     3.0  997939393 2001-08-16 05:23:13
## 1488     1.0 1033344897 2002-09-30 00:14:57
## 1489     1.0 1033344865 2002-09-30 00:14:25
## 1490     4.0  997938466 2001-08-16 05:07:46
## 1491     1.5 1166587193 2006-12-20 03:59:53
## 1492     3.0  997939021 2001-08-16 05:17:01
## 1493     3.0 1033344995 2002-09-30 00:16:35
## 1494     1.0 1033344772 2002-09-30 00:12:52
## 1495     1.0 1093070339 2004-08-21 06:38:59
## 1496     3.0  997939255 2001-08-16 05:20:55
## 1497     2.5 1093028374 2004-08-20 18:59:34
## 1498     4.0  997939179 2001-08-16 05:19:39
## 1499     3.0  997938219 2001-08-16 05:03:39
## 1500     2.0 1052896819 2003-05-14 07:20:19
## 1501     4.0  997939653 2001-08-16 05:27:33
## 1502     1.0 1033344752 2002-09-30 00:12:32
## 1503     1.0 1033344657 2002-09-30 00:10:57
## 1504     3.0  997938372 2001-08-16 05:06:12
## 1505     3.0  997938151 2001-08-16 05:02:31
## 1506     3.0 1033345068 2002-09-30 00:17:48
## 1507     3.0 1033344958 2002-09-30 00:15:58
## 1508     1.0 1245361903 2009-06-18 21:51:43
## 1509     1.5 1122576707 2005-07-28 18:51:47
## 1510     3.0 1033344657 2002-09-30 00:10:57
## 1511     3.0 1033344663 2002-09-30 00:11:03
## 1512     1.0 1033344878 2002-09-30 00:14:38
## 1513     1.0 1033344702 2002-09-30 00:11:42
## 1514     4.0  997939623 2001-08-16 05:27:03
## 1515     1.0 1033344834 2002-09-30 00:13:54
## 1516     4.0  997938219 2001-08-16 05:03:39
## 1517     3.5 1465793437 2016-06-13 04:50:37
## 1518     1.5 1469330590 2016-07-24 03:23:10
## 1519     2.0 1033344732 2002-09-30 00:12:12
## 1520     1.0 1033344897 2002-09-30 00:14:57
## 1521     2.5 1054450195 2003-06-01 06:49:55
## 1522     3.0  997939653 2001-08-16 05:27:33
## 1523     1.0 1033344752 2002-09-30 00:12:32
## 1524     2.0  997939037 2001-08-16 05:17:17
## 1525     1.0  997938500 2001-08-16 05:08:20
## 1526     1.0 1033344970 2002-09-30 00:16:10
## 1527     2.0  997937762 2001-08-16 04:56:02
## 1528     4.0 1033344702 2002-09-30 00:11:42
## 1529     4.0  997939008 2001-08-16 05:16:48
## 1530     3.5 1065197456 2003-10-03 16:10:56
## 1531     4.0  997938603 2001-08-16 05:10:03
## 1532     1.5 1166587203 2006-12-20 04:00:03
## 1533     3.0  997938567 2001-08-16 05:09:27
## 1534     1.0 1033344958 2002-09-30 00:15:58
## 1535     2.0 1033344958 2002-09-30 00:15:58
## 1536     4.0  997938310 2001-08-16 05:05:10
## 1537     4.0  997939144 2001-08-16 05:19:04
## 1538     1.0 1033344752 2002-09-30 00:12:32
## 1539     4.0 1054450160 2003-06-01 06:49:20
## 1540     4.0 1040205754 2002-12-18 10:02:34
## 1541     1.0  997938879 2001-08-16 05:14:39
## 1542     4.0 1040205754 2002-12-18 10:02:34
## 1543     1.5 1345397822 2012-08-19 17:37:02
## 1544     4.0  997938466 2001-08-16 05:07:46
## 1545     4.0 1054449710 2003-06-01 06:41:50
## 1546     4.0 1166585692 2006-12-20 03:34:52
## 1547     5.0 1040205655 2002-12-18 10:00:55
## 1548     4.0 1040205655 2002-12-18 10:00:55
## 1549     1.0 1054449851 2003-06-01 06:44:11
## 1550     5.0  997938894 2001-08-16 05:14:54
## 1551     4.0  997939623 2001-08-16 05:27:03
## 1552     2.0 1469330578 2016-07-24 03:22:58
## 1553     4.0  997938576 2001-08-16 05:09:36
## 1554     3.0 1052896740 2003-05-14 07:19:00
## 1555     4.0  997939144 2001-08-16 05:19:04
## 1556     3.5 1345398317 2012-08-19 17:45:17
## 1557     4.0 1345381197 2012-08-19 12:59:57
## 1558     5.0  997938310 2001-08-16 05:05:10
## 1559     4.0  997939086 2001-08-16 05:18:06
## 1560     1.0 1033344685 2002-09-30 00:11:25
## 1561     1.0 1033344702 2002-09-30 00:11:42
## 1562     5.0  997938800 2001-08-16 05:13:20
## 1563     2.5 1361078485 2013-02-17 05:21:25
## 1564     2.0 1033344865 2002-09-30 00:14:25
## 1565     4.0  997938727 2001-08-16 05:12:07
## 1566     3.0  997938954 2001-08-16 05:15:54
## 1567     3.0 1166586681 2006-12-20 03:51:21
## 1568     4.0  997939021 2001-08-16 05:17:01
## 1569     4.0 1052896867 2003-05-14 07:21:07
## 1570     4.0 1033344267 2002-09-30 00:04:27
## 1571     3.0 1058250603 2003-07-15 06:30:03
## 1572     3.0  997939653 2001-08-16 05:27:33
## 1573     4.0 1052896975 2003-05-14 07:22:55
## 1574     3.0 1033345241 2002-09-30 00:20:41
## 1575     1.0 1033344958 2002-09-30 00:15:58
## 1576     3.0 1166586269 2006-12-20 03:44:29
## 1577     5.0  997938310 2001-08-16 05:05:10
## 1578     3.0  997938895 2001-08-16 05:14:55
## 1579     4.0  997937311 2001-08-16 04:48:31
## 1580     4.0 1040205792 2002-12-18 10:03:12
## 1581     3.0 1316395917 2011-09-19 01:31:57
## 1582     4.0  997939453 2001-08-16 05:24:13
## 1583     2.0 1166587025 2006-12-20 03:57:05
## 1584     1.0 1033344983 2002-09-30 00:16:23
## 1585     4.0  997938931 2001-08-16 05:15:31
## 1586     3.5 1054449917 2003-06-01 06:45:17
## 1587     1.0 1044347881 2003-02-04 08:38:01
## 1588     1.5 1460076724 2016-04-08 00:52:04
## 1589     1.0  997939415 2001-08-16 05:23:35
## 1590     1.0 1134521933 2005-12-14 00:58:53
## 1591     3.0 1245361773 2009-06-18 21:49:33
## 1592     3.0  997938931 2001-08-16 05:15:31
## 1593     1.0 1033344970 2002-09-30 00:16:10
## 1594     3.0  997938941 2001-08-16 05:15:41
## 1595     2.5 1338698402 2012-06-03 04:40:02
## 1596     2.5 1122576723 2005-07-28 18:52:03
## 1597     1.0 1033344865 2002-09-30 00:14:25
## 1598     4.0  997939162 2001-08-16 05:19:22
## 1599     2.0  997938413 2001-08-16 05:06:53
## 1600     1.0  997939393 2001-08-16 05:23:13
## 1601     2.0  997937726 2001-08-16 04:55:26
## 1602     2.0 1033344958 2002-09-30 00:15:58
## 1603     5.0 1054449670 2003-06-01 06:41:10
## 1604     2.0 1033344897 2002-09-30 00:14:57
## 1605     1.0  997938046 2001-08-16 05:00:46
## 1606     4.0 1033345148 2002-09-30 00:19:08
## 1607     2.0 1034544351 2002-10-13 21:25:51
## 1608     3.0  997939639 2001-08-16 05:27:19
## 1609     2.0 1134521644 2005-12-14 00:54:04
## 1610     2.0 1361831567 2013-02-25 22:32:47
## 1611     4.0 1058250521 2003-07-15 06:28:41
## 1612     1.0  997938391 2001-08-16 05:06:31
## 1613     4.0 1345397753 2012-08-19 17:35:53
## 1614     5.0 1034544304 2002-10-13 21:25:04
## 1615     3.0 1063565307 2003-09-14 18:48:27
## 1616     2.0 1033345227 2002-09-30 00:20:27
## 1617     1.0  997937890 2001-08-16 04:58:10
## 1618     0.5 1347936677 2012-09-18 02:51:17
## 1619     2.0 1416119608 2014-11-16 06:33:28
## 1620     3.0  997937999 2001-08-16 04:59:59
## 1621     4.0 1033344702 2002-09-30 00:11:42
## 1622     5.0  997937876 2001-08-16 04:57:56
## 1623     4.0 1044348420 2003-02-04 08:47:00
## 1624     3.0 1082220247 2004-04-17 16:44:07
## 1625     1.5 1416119948 2014-11-16 06:39:08
## 1626     5.0  997937786 2001-08-16 04:56:26
## 1627     3.0  997937986 2001-08-16 04:59:46
## 1628     5.0 1040205943 2002-12-18 10:05:43
## 1629     4.0  997937748 2001-08-16 04:55:48
## 1630     2.5 1096005300 2004-09-24 05:55:00
## 1631     3.0 1054449689 2003-06-01 06:41:29
## 1632     3.5 1120209453 2005-07-01 09:17:33
## 1633     3.0  997938391 2001-08-16 05:06:31
## 1634     1.0  997937239 2001-08-16 04:47:19
## 1635     2.0 1033344772 2002-09-30 00:12:52
## 1636     4.0  997937902 2001-08-16 04:58:22
## 1637     1.0 1040205754 2002-12-18 10:02:34
## 1638     1.5 1063565279 2003-09-14 18:47:59
## 1639     3.0  997938310 2001-08-16 05:05:10
## 1640     2.5 1054450188 2003-06-01 06:49:48
## 1641     2.5 1193436085 2007-10-26 22:01:25
## 1642     3.0  997939144 2001-08-16 05:19:04
## 1643     1.5 1063565329 2003-09-14 18:48:49
## 1644     4.0 1034544304 2002-10-13 21:25:04
## 1645     4.5 1465881233 2016-06-14 05:13:53
## 1646     3.0 1093028035 2004-08-20 18:53:55
## 1647     5.0  997937748 2001-08-16 04:55:48
## 1648     0.5 1465880417 2016-06-14 05:00:17
## 1649     2.0 1166586405 2006-12-20 03:46:45
## 1650     3.0  997938242 2001-08-16 05:04:02
## 1651     4.0  997938810 2001-08-16 05:13:30
## 1652     4.0 1134521930 2005-12-14 00:58:50
## 1653     2.0 1033344795 2002-09-30 00:13:15
## 1654     3.0  997937926 2001-08-16 04:58:46
## 1655     3.0 1052896819 2003-05-14 07:20:19
## 1656     1.0  997937935 2001-08-16 04:58:55
## 1657     1.0  997937822 2001-08-16 04:57:02
## 1658     4.0  997937808 2001-08-16 04:56:48
## 1659     1.5 1096005190 2004-09-24 05:53:10
## 1660     2.0 1033344752 2002-09-30 00:12:32
## 1661     2.0 1465880183 2016-06-14 04:56:23
## 1662     1.0 1166586553 2006-12-20 03:49:13
## 1663     3.0  997937786 2001-08-16 04:56:26
## 1664     3.0  997937902 2001-08-16 04:58:22
## 1665     4.0  997937682 2001-08-16 04:54:42
## 1666     4.0  997937848 2001-08-16 04:57:28
## 1667     3.5 1465954636 2016-06-15 01:37:16
## 1668     2.0 1033344795 2002-09-30 00:13:15
## 1669     3.0  997937762 2001-08-16 04:56:02
## 1670     4.0  997937822 2001-08-16 04:57:02
## 1671     2.0  997937876 2001-08-16 04:57:56
## 1672     1.0 1033344878 2002-09-30 00:14:38
## 1673     2.0 1122576735 2005-07-28 18:52:15
## 1674     3.0  997937961 2001-08-16 04:59:21
## 1675     4.0 1345381200 2012-08-19 13:00:00
## 1676     2.0 1044347881 2003-02-04 08:38:01
## 1677     3.5 1345397811 2012-08-19 17:36:51
## 1678     3.5 1345398289 2012-08-19 17:44:49
## 1679     2.0 1345397721 2012-08-19 17:35:21
## 1680     2.0 1166586157 2006-12-20 03:42:37
## 1681     4.0  997938800 2001-08-16 05:13:20
## 1682     5.0 1465881231 2016-06-14 05:13:51
## 1683     1.0 1163876415 2006-11-18 19:00:15
## 1684     4.0 1443385280 2015-09-27 20:21:20
## 1685     5.0  997938346 2001-08-16 05:05:46
## 1686     2.0  997938822 2001-08-16 05:13:42
## 1687     2.5 1082220261 2004-04-17 16:44:21
## 1688     1.0  997937836 2001-08-16 04:57:16
## 1689     2.0  997937700 2001-08-16 04:55:00
## 1690     1.0  997937726 2001-08-16 04:55:26
## 1691     1.0  997937971 2001-08-16 04:59:31
## 1692     1.5 1416119541 2014-11-16 06:32:21
## 1693     2.0 1122576740 2005-07-28 18:52:20
## 1694     2.0  997937700 2001-08-16 04:55:00
## 1695     4.0  997937822 2001-08-16 04:57:02
## 1696     2.0 1033344712 2002-09-30 00:11:52
## 1697     3.0  997937795 2001-08-16 04:56:35
## 1698     3.0  997938391 2001-08-16 05:06:31
## 1699     2.0  997937808 2001-08-16 04:56:48
## 1700     4.0  997937914 2001-08-16 04:58:34
## 1701     2.0  997937999 2001-08-16 04:59:59
## 1702     2.0 1039243666 2002-12-07 06:47:46
## 1703     3.0  997938372 2001-08-16 05:06:12
## 1704     2.0  997937726 2001-08-16 04:55:26
## 1705     1.0  997938015 2001-08-16 05:00:15
## 1706     1.0  997938035 2001-08-16 05:00:35
## 1707     2.5 1134522068 2005-12-14 01:01:08
## 1708     3.0 1044348420 2003-02-04 08:47:00
## 1709     3.0 1240203682 2009-04-20 05:01:22
## 1710     3.0 1044348492 2003-02-04 08:48:12
## 1711     2.0  997937860 2001-08-16 04:57:40
## 1712     4.0 1134521920 2005-12-14 00:58:40
## 1713     4.0  997937890 2001-08-16 04:58:10
## 1714     1.0 1039243705 2002-12-07 06:48:25
## 1715     1.0  997937860 2001-08-16 04:57:40
## 1716     3.0  997937890 2001-08-16 04:58:10
## 1717     3.0  997937700 2001-08-16 04:55:00
## 1718     2.0  997937848 2001-08-16 04:57:28
## 1719     2.0  997937427 2001-08-16 04:50:27
## 1720     5.0  997937700 2001-08-16 04:55:00
## 1721     3.0  997937860 2001-08-16 04:57:40
## 1722     5.0 1044348382 2003-02-04 08:46:22
## 1723     5.0  997937413 2001-08-16 04:50:13
## 1724     4.0  997937890 2001-08-16 04:58:10
## 1725     1.0  997937986 2001-08-16 04:59:46
## 1726     1.0  997937762 2001-08-16 04:56:02
## 1727     2.5 1425876021 2015-03-09 04:40:21
## 1728     1.0  997937459 2001-08-16 04:50:59
## 1729     3.0  997937848 2001-08-16 04:57:28
## 1730     1.0  997938035 2001-08-16 05:00:35
## 1731     1.0 1033344924 2002-09-30 00:15:24
## 1732     5.0  997937413 2001-08-16 04:50:13
## 1733     4.0 1338698406 2012-06-03 04:40:06
## 1734     1.0  997937926 2001-08-16 04:58:46
## 1735     4.0  997937961 2001-08-16 04:59:21
## 1736     1.0 1166587057 2006-12-20 03:57:37
## 1737     3.0  997937700 2001-08-16 04:55:00
## 1738     1.0  997937999 2001-08-16 04:59:59
## 1739     1.0  997937902 2001-08-16 04:58:22
## 1740     4.0  997937442 2001-08-16 04:50:42
## 1741     5.0  997937413 2001-08-16 04:50:13
## 1742     1.0  997937614 2001-08-16 04:53:34
## 1743     3.0  997937459 2001-08-16 04:50:59
## 1744     3.5 1345398275 2012-08-19 17:44:35
## 1745     3.0 1052896916 2003-05-14 07:21:56
## 1746     3.5 1426110367 2015-03-11 21:46:07
## 1747     2.0 1033345087 2002-09-30 00:18:07
## 1748     1.0  997937606 2001-08-16 04:53:26
## 1749     2.0 1044348492 2003-02-04 08:48:12
## 1750     5.0  997937442 2001-08-16 04:50:42
## 1751     4.0  997937413 2001-08-16 04:50:13
## 1752     1.0 1044348492 2003-02-04 08:48:12
## 1753     2.0 1416119589 2014-11-16 06:33:09
## 1754     3.0  997937442 2001-08-16 04:50:42
## 1755     3.0  997937427 2001-08-16 04:50:27
## 1756     3.0  997937413 2001-08-16 04:50:13
## 1757     2.0  997937442 2001-08-16 04:50:42
## 1758     1.0 1044348492 2003-02-04 08:48:12
## 1759     3.0  997937606 2001-08-16 04:53:26
## 1760     4.0 1033343955 2002-09-29 23:59:15
## 1761     2.0  997937459 2001-08-16 04:50:59
## 1762     4.0 1084489330 2004-05-13 23:02:10
## 1763     4.0  997937413 2001-08-16 04:50:13
## 1764     1.0  997937427 2001-08-16 04:50:27
## 1765     3.0  997938372 2001-08-16 05:06:12
## 1766     1.0  997937442 2001-08-16 04:50:42
## 1767     1.0 1033344023 2002-09-30 00:00:23
## 1768     5.0  997937442 2001-08-16 04:50:42
## 1769     4.0  997938994 2001-08-16 05:16:34
## 1770     4.0 1052896685 2003-05-14 07:18:05
## 1771     1.0 1034544351 2002-10-13 21:25:51
## 1772     3.0 1345398332 2012-08-19 17:45:32
## 1773     3.0 1033344307 2002-09-30 00:05:07
## 1774     4.0  997937700 2001-08-16 04:55:00
## 1775     1.0  997938035 2001-08-16 05:00:35
## 1776     1.0 1349622626 2012-10-07 15:10:26
## 1777     2.0  997937459 2001-08-16 04:50:59
## 1778     3.0  997937914 2001-08-16 04:58:34
## 1779     1.0  997937986 2001-08-16 04:59:46
## 1780     3.0 1040205943 2002-12-18 10:05:43
## 1781     4.5 1061496845 2003-08-21 20:14:05
## 1782     1.0  997937775 2001-08-16 04:56:15
## 1783     1.0  997937762 2001-08-16 04:56:02
## 1784     5.0  997937682 2001-08-16 04:54:42
## 1785     3.0  997939162 2001-08-16 05:19:22
## 1786     4.0  997937713 2001-08-16 04:55:13
## 1787     3.0  997937986 2001-08-16 04:59:46
## 1788     1.0  997937808 2001-08-16 04:56:48
## 1789     2.0  997937713 2001-08-16 04:55:13
## 1790     1.0 1349622526 2012-10-07 15:08:46
## 1791     3.0 1120209753 2005-07-01 09:22:33
## 1792     1.5 1166586578 2006-12-20 03:49:38
## 1793     4.0  997937762 2001-08-16 04:56:02
## 1794     2.5 1374637769 2013-07-24 03:49:29
## 1795     5.0  997937808 2001-08-16 04:56:48
## 1796     1.0 1033343955 2002-09-29 23:59:15
## 1797     2.0 1033343955 2002-09-29 23:59:15
## 1798     3.0  997937366 2001-08-16 04:49:26
## 1799     2.0  997939193 2001-08-16 05:19:53
## 1800     4.0 1345397847 2012-08-19 17:37:27
## 1801     1.0  997937949 2001-08-16 04:59:09
## 1802     2.0  997937334 2001-08-16 04:48:54
## 1803     3.0 1349048073 2012-09-30 23:34:33
## 1804     5.0  997938151 2001-08-16 05:02:31
## 1805     1.0  997937374 2001-08-16 04:49:34
## 1806     3.0  997937366 2001-08-16 04:49:26
## 1807     1.0  997937822 2001-08-16 04:57:02
## 1808     3.0 1039243666 2002-12-07 06:47:46
## 1809     3.0 1033343955 2002-09-29 23:59:15
## 1810     2.0 1033345068 2002-09-30 00:17:48
## 1811     2.0  997937346 2001-08-16 04:49:06
## 1812     3.0  997937775 2001-08-16 04:56:15
## 1813     1.0  997937384 2001-08-16 04:49:44
## 1814     3.0 1416119736 2014-11-16 06:35:36
## 1815     3.0  997939653 2001-08-16 05:27:33
## 1816     4.0  997937334 2001-08-16 04:48:54
## 1817     1.5 1096005216 2004-09-24 05:53:36
## 1818     1.0  997937822 2001-08-16 04:57:02
## 1819     2.0 1054774846 2003-06-05 01:00:46
## 1820     2.5 1075143282 2004-01-26 18:54:42
## 1821     4.5 1345397842 2012-08-19 17:37:22
## 1822     3.0  997938203 2001-08-16 05:03:23
## 1823     3.0  997938617 2001-08-16 05:10:17
## 1824     3.0  997937575 2001-08-16 04:52:55
## 1825     4.0  997937575 2001-08-16 04:52:55
## 1826     1.0  997937346 2001-08-16 04:49:06
## 1827     1.0 1033344625 2002-09-30 00:10:25
## 1828     3.0 1033343955 2002-09-29 23:59:15
## 1829     1.5 1469330631 2016-07-24 03:23:51
## 1830     3.0  997937346 2001-08-16 04:49:06
## 1831     1.0  997937551 2001-08-16 04:52:31
## 1832     2.0  997937544 2001-08-16 04:52:24
## 1833     1.0  997937539 2001-08-16 04:52:19
## 1834     2.0  997937530 2001-08-16 04:52:10
## 1835     4.0  997937519 2001-08-16 04:51:59
## 1836     3.0  997937519 2001-08-16 04:51:59
## 1837     2.0  997937366 2001-08-16 04:49:26
## 1838     3.0  997937366 2001-08-16 04:49:26
## 1839     4.0  997937494 2001-08-16 04:51:34
## 1840     4.0 1044348492 2003-02-04 08:48:12
## 1841     2.0 1374637779 2013-07-24 03:49:39
## 1842     2.0 1039243705 2002-12-07 06:48:25
## 1843     3.5 1054449465 2003-06-01 06:37:45
## 1844     3.0 1052896975 2003-05-14 07:22:55
## 1845     4.0 1044348492 2003-02-04 08:48:12
## 1846     5.0 1033344023 2002-09-30 00:00:23
## 1847     1.0 1044348420 2003-02-04 08:47:00
## 1848     3.5 1075143297 2004-01-26 18:54:57
## 1849     1.0 1039243705 2002-12-07 06:48:25
## 1850     2.5 1054449369 2003-06-01 06:36:09
## 1851     3.0 1166586875 2006-12-20 03:54:35
## 1852     2.5 1416119762 2014-11-16 06:36:02
## 1853     2.0 1044348492 2003-02-04 08:48:12
## 1854     2.0 1054449351 2003-06-01 06:35:51
## 1855     5.0 1040206368 2002-12-18 10:12:48
## 1856     4.0 1039243666 2002-12-07 06:47:46
## 1857     1.5 1054449340 2003-06-01 06:35:40
## 1858     5.0 1033344055 2002-09-30 00:00:55
## 1859     3.0 1054449355 2003-06-01 06:35:55
## 1860     3.0 1033343866 2002-09-29 23:57:46
## 1861     1.0 1040206325 2002-12-18 10:12:05
## 1862     4.0 1054449484 2003-06-01 06:38:04
## 1863     2.0 1033343828 2002-09-29 23:57:08
## 1864     5.0 1033939395 2002-10-06 21:23:15
## 1865     4.0 1465880321 2016-06-14 04:58:41
## 1866     1.0 1469330599 2016-07-24 03:23:19
## 1867     4.0 1044348382 2003-02-04 08:46:22
## 1868     2.0 1033343815 2002-09-29 23:56:55
## 1869     2.0 1349622574 2012-10-07 15:09:34
## 1870     1.0 1040205965 2002-12-18 10:06:05
## 1871     5.0 1033343841 2002-09-29 23:57:21
## 1872     1.5 1425876112 2015-03-09 04:41:52
## 1873     5.0 1033343815 2002-09-29 23:56:55
## 1874     1.0 1033343815 2002-09-29 23:56:55
## 1875     3.5 1443385401 2015-09-27 20:23:21
## 1876     3.5 1120209745 2005-07-01 09:22:25
## 1877     4.5 1054449333 2003-06-01 06:35:33
## 1878     2.0 1033343815 2002-09-29 23:56:55
## 1879     1.0 1033344055 2002-09-30 00:00:55
## 1880     2.0 1041532617 2003-01-02 18:36:57
## 1881     1.5 1054450221 2003-06-01 06:50:21
## 1882     3.0 1033343866 2002-09-29 23:57:46
## 1883     5.0 1044348382 2003-02-04 08:46:22
## 1884     1.0 1096005077 2004-09-24 05:51:17
## 1885     4.0 1033344006 2002-09-30 00:00:06
## 1886     1.5 1416119882 2014-11-16 06:38:02
## 1887     3.0 1345397962 2012-08-19 17:39:22
## 1888     1.0 1033343934 2002-09-29 23:58:54
## 1889     4.0 1044348382 2003-02-04 08:46:22
## 1890     2.0 1033343901 2002-09-29 23:58:21
## 1891     0.5 1416119747 2014-11-16 06:35:47
## 1892     1.0 1033344044 2002-09-30 00:00:44
## 1893     1.0 1033343934 2002-09-29 23:58:54
## 1894     3.0 1033343919 2002-09-29 23:58:39
## 1895     2.0 1122925555 2005-08-01 19:45:55
## 1896     1.5 1075143288 2004-01-26 18:54:48
## 1897     1.0 1033343866 2002-09-29 23:57:46
## 1898     1.0 1033344286 2002-09-30 00:04:46
## 1899     4.5 1240203827 2009-04-20 05:03:47
## 1900     0.5 1054449705 2003-06-01 06:41:45
## 1901     3.0 1033343934 2002-09-29 23:58:54
## 1902     3.5 1416120007 2014-11-16 06:40:07
## 1903     3.0 1033343841 2002-09-29 23:57:21
## 1904     1.5 1465880704 2016-06-14 05:05:04
## 1905     2.5 1367800223 2013-05-06 00:30:23
## 1906     0.5 1416119542 2014-11-16 06:32:22
## 1907     2.5 1465794274 2016-06-13 05:04:34
## 1908     1.0 1033343919 2002-09-29 23:58:39
## 1909     3.5 1054449455 2003-06-01 06:37:35
## 1910     3.5 1345397799 2012-08-19 17:36:39
## 1911     3.5 1465954627 2016-06-15 01:37:07
## 1912     1.0 1039243048 2002-12-07 06:37:28
## 1913     1.0 1033343901 2002-09-29 23:58:21
## 1914     2.5 1465881201 2016-06-14 05:13:21
## 1915     4.0 1096005096 2004-09-24 05:51:36
## 1916     3.0 1039243048 2002-12-07 06:37:28
## 1917     2.0 1166586831 2006-12-20 03:53:51
## 1918     2.5 1367800228 2013-05-06 00:30:28
## 1919     3.0 1039243048 2002-12-07 06:37:28
## 1920     2.0 1052896740 2003-05-14 07:19:00
## 1921     1.5 1096005195 2004-09-24 05:53:15
## 1922     2.0 1033344065 2002-09-30 00:01:05
## 1923     1.0 1039243069 2002-12-07 06:37:49
## 1924     1.0 1040205624 2002-12-18 10:00:24
## 1925     5.0 1033344034 2002-09-30 00:00:34
## 1926     2.0 1033344188 2002-09-30 00:03:08
## 1927     1.0 1033344374 2002-09-30 00:06:14
## 1928     1.0 1033344188 2002-09-30 00:03:08
## 1929     1.0 1033344188 2002-09-30 00:03:08
## 1930     0.5 1166586482 2006-12-20 03:48:02
## 1931     5.0 1033344357 2002-09-30 00:05:57
## 1932     2.0 1052896819 2003-05-14 07:20:19
## 1933     2.0 1033344374 2002-09-30 00:06:14
## 1934     4.0 1033344296 2002-09-30 00:04:56
## 1935     1.0 1033344129 2002-09-30 00:02:09
## 1936     2.0 1033344119 2002-09-30 00:01:59
## 1937     1.0 1033344145 2002-09-30 00:02:25
## 1938     3.0 1054503542 2003-06-01 21:39:02
## 1939     4.0 1033344401 2002-09-30 00:06:41
## 1940     1.0 1033344137 2002-09-30 00:02:17
## 1941     1.0 1033344334 2002-09-30 00:05:34
## 1942     3.0 1035258747 2002-10-22 03:52:27
## 1943     2.0 1035258747 2002-10-22 03:52:27
## 1944     3.0 1035258747 2002-10-22 03:52:27
## 1945     2.5 1054513297 2003-06-02 00:21:37
## 1946     3.5 1222576379 2008-09-28 04:32:59
## 1947     1.5 1084489317 2004-05-13 23:01:57
## 1948     0.5 1425876082 2015-03-09 04:41:22
## 1949     1.5 1055439475 2003-06-12 17:37:55
## 1950     3.0 1034544351 2002-10-13 21:25:51
## 1951     4.0 1035258564 2002-10-22 03:49:24
## 1952     4.0 1046209630 2003-02-25 21:47:10
## 1953     3.5 1075142963 2004-01-26 18:49:23
## 1954     4.0 1035258362 2002-10-22 03:46:02
## 1955     2.0 1039242955 2002-12-07 06:35:55
## 1956     4.0 1054449327 2003-06-01 06:35:27
## 1957     3.0 1052906939 2003-05-14 10:08:59
## 1958     1.0 1416119666 2014-11-16 06:34:26
## 1959     3.0 1166587383 2006-12-20 04:03:03
## 1960     1.0 1066591270 2003-10-19 19:21:10
## 1961     5.0 1040205624 2002-12-18 10:00:24
## 1962     4.0 1044220069 2003-02-02 21:07:49
## 1963     2.0 1357110234 2013-01-02 07:03:54
## 1964     1.0 1096005087 2004-09-24 05:51:27
## 1965     1.0 1096005111 2004-09-24 05:51:51
## 1966     5.0 1040448133 2002-12-21 05:22:13
## 1967     1.0 1084489297 2004-05-13 23:01:37
## 1968     2.5 1163876422 2006-11-18 19:00:22
## 1969     4.5 1075143302 2004-01-26 18:55:02
## 1970     3.0 1443385275 2015-09-27 20:21:15
## 1971     3.0 1040205624 2002-12-18 10:00:24
## 1972     2.5 1134521661 2005-12-14 00:54:21
## 1973     1.0 1096005123 2004-09-24 05:52:03
## 1974     4.0 1120209437 2005-07-01 09:17:17
## 1975     1.5 1096005130 2004-09-24 05:52:10
## 1976     2.0 1093027992 2004-08-20 18:53:12
## 1977     3.0 1046209643 2003-02-25 21:47:23
## 1978     3.0 1465954655 2016-06-15 01:37:35
## 1979     2.0 1416119908 2014-11-16 06:38:28
## 1980     0.5 1416119753 2014-11-16 06:35:53
## 1981     0.5 1416119690 2014-11-16 06:34:50
## 1982     1.0 1046209705 2003-02-25 21:48:25
## 1983     3.5 1416119611 2014-11-16 06:33:31
## 1984     3.0 1046209705 2003-02-25 21:48:25
## 1985     0.5 1096005101 2004-09-24 05:51:41
## 1986     4.0 1052897100 2003-05-14 07:25:00
## 1987     1.0 1163876393 2006-11-18 18:59:53
## 1988     1.0 1416119893 2014-11-16 06:38:13
## 1989     0.5 1425876025 2015-03-09 04:40:25
## 1990     1.5 1096005116 2004-09-24 05:51:56
## 1991     2.5 1075142952 2004-01-26 18:49:12
## 1992     2.5 1055439424 2003-06-12 17:37:04
## 1993     4.0 1084489307 2004-05-13 23:01:47
## 1994     3.0 1120208617 2005-07-01 09:03:37
## 1995     3.0 1052896685 2003-05-14 07:18:05
## 1996     1.0 1054271424 2003-05-30 05:10:24
## 1997     2.0 1134522002 2005-12-14 01:00:02
## 1998     1.0 1061496771 2003-08-21 20:12:51
## 1999     3.0 1122576748 2005-07-28 18:52:28
## 2000     3.0 1166585438 2006-12-20 03:30:38
## 2001     1.5 1084489293 2004-05-13 23:01:33
## 2002     3.0 1465793939 2016-06-13 04:58:59
## 2003     3.5 1054449659 2003-06-01 06:40:59
## 2004     3.5 1055439392 2003-06-12 17:36:32
## 2005     2.5 1056617566 2003-06-26 08:52:46
## 2006     3.5 1058249439 2003-07-15 06:10:39
## 2007     2.5 1134521973 2005-12-14 00:59:33
## 2008     2.0 1061496778 2003-08-21 20:12:58
## 2009     2.5 1058249457 2003-07-15 06:10:57
## 2010     3.5 1061496766 2003-08-21 20:12:46
## 2011     1.0 1061496761 2003-08-21 20:12:41
## 2012     1.5 1082220233 2004-04-17 16:43:53
## 2013     3.0 1416119958 2014-11-16 06:39:18
## 2014     1.0 1096005208 2004-09-24 05:53:28
## 2015     1.5 1082220241 2004-04-17 16:44:01
## 2016     4.0 1093028561 2004-08-20 19:02:41
## 2017     3.5 1120209771 2005-07-01 09:22:51
## 2018     2.0 1082220217 2004-04-17 16:43:37
## 2019     3.5 1065197251 2003-10-03 16:07:31
## 2020     0.5 1425876028 2015-03-09 04:40:28
## 2021     1.0 1465881072 2016-06-14 05:11:12
## 2022     2.0 1082220258 2004-04-17 16:44:18
## 2023     5.0 1120209297 2005-07-01 09:14:57
## 2024     4.0 1096005320 2004-09-24 05:55:20
## 2025     2.5 1067797435 2003-11-02 18:23:55
## 2026     2.0 1082220208 2004-04-17 16:43:28
## 2027     3.5 1093981691 2004-08-31 19:48:11
## 2028     3.5 1068955127 2003-11-16 03:58:47
## 2029     1.0 1096005187 2004-09-24 05:53:07
## 2030     1.0 1067797349 2003-11-02 18:22:29
## 2031     1.0 1096005180 2004-09-24 05:53:00
## 2032     2.5 1416119807 2014-11-16 06:36:47
## 2033     1.0 1465954640 2016-06-15 01:37:20
## 2034     4.5 1075142920 2004-01-26 18:48:40
## 2035     1.5 1338699263 2012-06-03 04:54:23
## 2036     1.0 1075142924 2004-01-26 18:48:44
## 2037     3.0 1088621558 2004-06-30 18:52:38
## 2038     4.0 1465794270 2016-06-13 05:04:30
## 2039     1.0 1347936706 2012-09-18 02:51:46
## 2040     2.0 1083003232 2004-04-26 18:13:52
## 2041     4.0 1222576385 2008-09-28 04:33:05
## 2042     2.5 1240203829 2009-04-20 05:03:49
## 2043     4.0 1093028559 2004-08-20 19:02:39
## 2044     2.5 1097770851 2004-10-14 16:20:51
## 2045     3.0 1257734253 2009-11-09 02:37:33
## 2046     2.5 1348976559 2012-09-30 03:42:39
## 2047     2.0 1367800233 2013-05-06 00:30:33
## 2048     2.5 1374637760 2013-07-24 03:49:20
## 2049     3.5 1240203970 2009-04-20 05:06:10
## 2050     3.5 1465954687 2016-06-15 01:38:07
## 2051     3.5 1132469120 2005-11-20 06:45:20
## 2052     4.5 1443384409 2015-09-27 20:06:49
## 2053     3.0 1120209290 2005-07-01 09:14:50
## 2054     3.5 1347936794 2012-09-18 02:53:14
## 2055     3.0 1096005056 2004-09-24 05:50:56
## 2056     2.0 1088621554 2004-06-30 18:52:34
## 2057     1.5 1088621484 2004-06-30 18:51:24
## 2058     1.5 1075142916 2004-01-26 18:48:36
## 2059     3.0 1120209458 2005-07-01 09:17:38
## 2060     1.0 1075142909 2004-01-26 18:48:29
## 2061     0.5 1416119886 2014-11-16 06:38:06
## 2062     1.0 1096005109 2004-09-24 05:51:49
## 2063     1.0 1166587408 2006-12-20 04:03:28
## 2064     3.5 1193435338 2007-10-26 21:48:58
## 2065     1.0 1093028019 2004-08-20 18:53:39
## 2066     3.0 1082220195 2004-04-17 16:43:15
## 2067     2.0 1222576372 2008-09-28 04:32:52
## 2068     0.5 1416119755 2014-11-16 06:35:55
## 2069     1.5 1082220223 2004-04-17 16:43:43
## 2070     3.0 1465954961 2016-06-15 01:42:41
## 2071     2.0 1093028001 2004-08-20 18:53:21
## 2072     5.0 1082220175 2004-04-17 16:42:55
## 2073     1.0 1097770844 2004-10-14 16:20:44
## 2074     1.5 1134521979 2005-12-14 00:59:39
## 2075     0.5 1093981610 2004-08-31 19:46:50
## 2076     1.0 1425876074 2015-03-09 04:41:14
## 2077     1.5 1416119694 2014-11-16 06:34:54
## 2078     3.5 1416119705 2014-11-16 06:35:05
## 2079     1.5 1166587430 2006-12-20 04:03:50
## 2080     4.0 1338698422 2012-06-03 04:40:22
## 2081     1.5 1240203696 2009-04-20 05:01:36
## 2082     3.5 1093070784 2004-08-21 06:46:24
## 2083     3.5 1345397687 2012-08-19 17:34:47
## 2084     2.5 1345398305 2012-08-19 17:45:05
## 2085     3.0 1345381192 2012-08-19 12:59:52
## 2086     2.5 1345397672 2012-08-19 17:34:32
## 2087     3.0 1096005042 2004-09-24 05:50:42
## 2088     2.0 1093027976 2004-08-20 18:52:56
## 2089     4.0 1465793979 2016-06-13 04:59:39
## 2090     2.5 1134522006 2005-12-14 01:00:06
## 2091     4.0 1093027865 2004-08-20 18:51:05
## 2092     2.5 1088621517 2004-06-30 18:51:57
## 2093     1.5 1163876352 2006-11-18 18:59:12
## 2094     2.5 1166587363 2006-12-20 04:02:43
## 2095     3.0 1416119547 2014-11-16 06:32:27
## 2096     1.0 1122576284 2005-07-28 18:44:44
## 2097     1.5 1257734240 2009-11-09 02:37:20
## 2098     1.5 1465880288 2016-06-14 04:58:08
## 2099     2.5 1361078268 2013-02-17 05:17:48
## 2100     3.5 1120209740 2005-07-01 09:22:20
## 2101     3.5 1163876408 2006-11-18 19:00:08
## 2102     3.0 1096005049 2004-09-24 05:50:49
## 2103     3.0 1093027850 2004-08-20 18:50:50
## 2104     4.0 1128274489 2005-10-02 17:34:49
## 2105     3.0 1349622612 2012-10-07 15:10:12
## 2106     1.0 1163876378 2006-11-18 18:59:38
## 2107     2.0 1120210020 2005-07-01 09:27:00
## 2108     3.5 1093027853 2004-08-20 18:50:53
## 2109     0.5 1416119915 2014-11-16 06:38:35
## 2110     2.0 1134521997 2005-12-14 00:59:57
## 2111     3.0 1166586987 2006-12-20 03:56:27
## 2112     2.5 1349622634 2012-10-07 15:10:34
## 2113     1.0 1166981777 2006-12-24 17:36:17
## 2114     2.5 1122925517 2005-08-01 19:45:17
## 2115     2.5 1120210034 2005-07-01 09:27:14
## 2116     4.5 1101423864 2004-11-25 23:04:24
## 2117     4.0 1465880526 2016-06-14 05:02:06
## 2118     2.5 1166585434 2006-12-20 03:30:34
## 2119     1.0 1166981765 2006-12-24 17:36:05
## 2120     4.5 1120209300 2005-07-01 09:15:00
## 2121     2.0 1357110243 2013-01-02 07:04:03
## 2122     3.0 1134522096 2005-12-14 01:01:36
## 2123     3.5 1134522079 2005-12-14 01:01:19
## 2124     2.0 1101423869 2004-11-25 23:04:29
## 2125     2.0 1163876370 2006-11-18 18:59:30
## 2126     3.5 1374637712 2013-07-24 03:48:32
## 2127     2.5 1374637844 2013-07-24 03:50:44
## 2128     2.0 1166981834 2006-12-24 17:37:14
## 2129     5.0 1222575895 2008-09-28 04:24:55
## 2130     4.0 1134521251 2005-12-14 00:47:31
## 2131     5.0 1416120087 2014-11-16 06:41:27
## 2132     4.5 1166585398 2006-12-20 03:29:58
## 2133     2.0 1166587331 2006-12-20 04:02:11
## 2134     2.5 1240203954 2009-04-20 05:05:54
## 2135     2.5 1349622724 2012-10-07 15:12:04
## 2136     4.0 1166587397 2006-12-20 04:03:17
## 2137     1.0 1134521148 2005-12-14 00:45:48
## 2138     1.0 1348976609 2012-09-30 03:43:29
## 2139     4.0 1120209293 2005-07-01 09:14:53
## 2140     2.5 1347936774 2012-09-18 02:52:54
## 2141     1.5 1127035004 2005-09-18 09:16:44
## 2142     2.0 1120208607 2005-07-01 09:03:27
## 2143     1.5 1136904803 2006-01-10 14:53:23
## 2144     0.5 1416119604 2014-11-16 06:33:24
## 2145     1.5 1416119717 2014-11-16 06:35:17
## 2146     0.5 1361831527 2013-02-25 22:32:07
## 2147     3.5 1127035028 2005-09-18 09:17:08
## 2148     3.5 1136087271 2006-01-01 03:47:51
## 2149     0.5 1127035016 2005-09-18 09:16:56
## 2150     3.5 1338702522 2012-06-03 05:48:42
## 2151     3.5 1132469115 2005-11-20 06:45:15
## 2152     5.0 1132469077 2005-11-20 06:44:37
## 2153     3.5 1136904851 2006-01-10 14:54:11
## 2154     4.5 1120208603 2005-07-01 09:03:23
## 2155     0.5 1316395912 2011-09-19 01:31:52
## 2156     1.5 1361078474 2013-02-17 05:21:14
## 2157     1.0 1416119744 2014-11-16 06:35:44
## 2158     1.0 1141391741 2006-03-03 13:15:41
## 2159     1.0 1316395893 2011-09-19 01:31:33
## 2160     1.5 1367765144 2013-05-05 14:45:44
## 2161     0.5 1357110418 2013-01-02 07:06:58
## 2162     3.5 1141391837 2006-03-03 13:17:17
## 2163     3.0 1135737540 2005-12-28 02:39:00
## 2164     2.5 1141391844 2006-03-03 13:17:24
## 2165     1.5 1138537176 2006-01-29 12:19:36
## 2166     1.0 1416119600 2014-11-16 06:33:20
## 2167     2.0 1465954599 2016-06-15 01:36:39
## 2168     2.0 1141391812 2006-03-03 13:16:52
## 2169     2.5 1425876066 2015-03-09 04:41:06
## 2170     4.5 1222576339 2008-09-28 04:32:19
## 2171     1.5 1338698465 2012-06-03 04:41:05
## 2172     4.5 1166587434 2006-12-20 04:03:54
## 2173     2.0 1416119810 2014-11-16 06:36:50
## 2174     1.5 1416119662 2014-11-16 06:34:22
## 2175     2.5 1258259502 2009-11-15 04:31:42
## 2176     4.5 1348976510 2012-09-30 03:41:50
## 2177     1.0 1465880318 2016-06-14 04:58:38
## 2178     2.5 1240211404 2009-04-20 07:10:04
## 2179     2.0 1222576358 2008-09-28 04:32:38
## 2180     4.0 1222575879 2008-09-28 04:24:39
## 2181     1.0 1465794625 2016-06-13 05:10:25
## 2182     2.5 1316408165 2011-09-19 04:56:05
## 2183     1.0 1240211399 2009-04-20 07:09:59
## 2184     1.5 1357109999 2013-01-02 06:59:59
## 2185     4.0 1465793925 2016-06-13 04:58:45
## 2186     2.5 1316396016 2011-09-19 01:33:36
## 2187     1.0 1425876007 2015-03-09 04:40:07
## 2188     2.5 1338698829 2012-06-03 04:47:09
## 2189     0.5 1416119707 2014-11-16 06:35:07
## 2190     4.0 1374637848 2013-07-24 03:50:48
## 2191     1.5 1465794277 2016-06-13 05:04:37
## 2192     1.5 1416119790 2014-11-16 06:36:30
## 2193     2.0 1416120304 2014-11-16 06:45:04
## 2194     0.5 1416119889 2014-11-16 06:38:09
## 2195     3.0 1169616283 2007-01-24 05:24:43
## 2196     0.5 1338699292 2012-06-03 04:54:52
## 2197     1.0 1338702417 2012-06-03 05:46:57
## 2198     2.0 1367800237 2013-05-06 00:30:37
## 2199     2.0 1416119963 2014-11-16 06:39:23
## 2200     3.5 1374637631 2013-07-24 03:47:11
## 2201     3.5 1222576367 2008-09-28 04:32:47
## 2202     1.5 1245382906 2009-06-19 03:41:46
## 2203     2.5 1465793916 2016-06-13 04:58:36
## 2204     0.5 1416119898 2014-11-16 06:38:18
## 2205     1.0 1347937644 2012-09-18 03:07:24
## 2206     4.0 1257734226 2009-11-09 02:37:06
## 2207     1.5 1348976680 2012-09-30 03:44:40
## 2208     3.0 1222575856 2008-09-28 04:24:16
## 2209     4.0 1240211394 2009-04-20 07:09:54
## 2210     4.0 1222578045 2008-09-28 05:00:45
## 2211     4.0 1222578063 2008-09-28 05:01:03
## 2212     2.5 1316395906 2011-09-19 01:31:46
## 2213     2.5 1465880683 2016-06-14 05:04:43
## 2214     3.5 1443384396 2015-09-27 20:06:36
## 2215     3.5 1245361883 2009-06-18 21:51:23
## 2216     4.5 1222578101 2008-09-28 05:01:41
## 2217     1.5 1222576350 2008-09-28 04:32:30
## 2218     5.0 1222578057 2008-09-28 05:00:57
## 2219     2.0 1347936470 2012-09-18 02:47:50
## 2220     1.5 1349622540 2012-10-07 15:09:00
## 2221     1.5 1347936786 2012-09-18 02:53:06
## 2222     2.0 1443384826 2015-09-27 20:13:46
## 2223     1.5 1338699286 2012-06-03 04:54:46
## 2224     3.5 1349622826 2012-10-07 15:13:46
## 2225     3.5 1425876037 2015-03-09 04:40:37
## 2226     1.5 1443385025 2015-09-27 20:17:05
## 2227     2.5 1338702524 2012-06-03 05:48:44
## 2228     3.0 1338698806 2012-06-03 04:46:46
## 2229     4.0 1257734285 2009-11-09 02:38:05
## 2230     2.0 1416119677 2014-11-16 06:34:37
## 2231     1.0 1425875994 2015-03-09 04:39:54
## 2232     2.5 1258259468 2009-11-15 04:31:08
## 2233     4.5 1238804101 2009-04-04 00:15:01
## 2234     3.5 1338698617 2012-06-03 04:43:37
## 2235     4.5 1361078498 2013-02-17 05:21:38
## 2236     1.0 1416120041 2014-11-16 06:40:41
## 2237     1.0 1374638435 2013-07-24 04:00:35
## 2238     3.5 1222578076 2008-09-28 05:01:16
## 2239     2.5 1416119972 2014-11-16 06:39:32
## 2240     2.0 1361078252 2013-02-17 05:17:32
## 2241     2.0 1338698362 2012-06-03 04:39:22
## 2242     2.5 1443384839 2015-09-27 20:13:59
## 2243     1.0 1416119594 2014-11-16 06:33:14
## 2244     2.0 1374638451 2013-07-24 04:00:51
## 2245     4.0 1465793961 2016-06-13 04:59:21
## 2246     3.0 1443385030 2015-09-27 20:17:10
## 2247     1.0 1416119686 2014-11-16 06:34:46
## 2248     1.5 1425876060 2015-03-09 04:41:00
## 2249     4.0 1216576560 2008-07-20 17:56:00
## 2250     1.5 1338702423 2012-06-03 05:47:03
## 2251     1.0 1338698854 2012-06-03 04:47:34
## 2252     1.5 1347936713 2012-09-18 02:51:53
## 2253     4.5 1222024895 2008-09-21 19:21:35
## 2254     1.5 1240203919 2009-04-20 05:05:19
## 2255     4.0 1465793918 2016-06-13 04:58:38
## 2256     4.5 1216576545 2008-07-20 17:55:45
## 2257     2.5 1347936669 2012-09-18 02:51:09
## 2258     3.5 1216576555 2008-07-20 17:55:55
## 2259     1.0 1338698814 2012-06-03 04:46:54
## 2260     3.5 1357110059 2013-01-02 07:00:59
## 2261     1.5 1349622715 2012-10-07 15:11:55
## 2262     0.5 1216576611 2008-07-20 17:56:51
## 2263     3.0 1216576596 2008-07-20 17:56:36
## 2264     4.5 1216576570 2008-07-20 17:56:10
## 2265     1.0 1316396154 2011-09-19 01:35:54
## 2266     1.0 1416119795 2014-11-16 06:36:35
## 2267     1.0 1361831545 2013-02-25 22:32:25
## 2268     3.5 1316395628 2011-09-19 01:27:08
## 2269     4.0 1238801478 2009-04-03 23:31:18
## 2270     3.5 1240211388 2009-04-20 07:09:48
## 2271     1.0 1357110065 2013-01-02 07:01:05
## 2272     2.0 1222024906 2008-09-21 19:21:46
## 2273     1.0 1257734243 2009-11-09 02:37:23
## 2274     2.0 1349622731 2012-10-07 15:12:11
## 2275     3.5 1367764780 2013-05-05 14:39:40
## 2276     3.5 1443384812 2015-09-27 20:13:32
## 2277     4.5 1367800217 2013-05-06 00:30:17
## 2278     0.5 1357110411 2013-01-02 07:06:51
## 2279     3.5 1245309336 2009-06-18 07:15:36
## 2280     2.0 1338698608 2012-06-03 04:43:28
## 2281     3.0 1348976367 2012-09-30 03:39:27
## 2282     2.0 1245021120 2009-06-14 23:12:00
## 2283     1.0 1416119731 2014-11-16 06:35:31
## 2284     1.5 1416119711 2014-11-16 06:35:11
## 2285     4.5 1357110430 2013-01-02 07:07:10
## 2286     0.5 1465880993 2016-06-14 05:09:53
## 2287     3.0 1238804089 2009-04-04 00:14:49
## 2288     1.5 1240202854 2009-04-20 04:47:34
## 2289     1.0 1465880257 2016-06-14 04:57:37
## 2290     1.5 1465880651 2016-06-14 05:04:11
## 2291     3.0 1257733143 2009-11-09 02:19:03
## 2292     0.5 1338698623 2012-06-03 04:43:43
## 2293     1.5 1426110601 2015-03-11 21:50:01
## 2294     1.5 1257733150 2009-11-09 02:19:10
## 2295     3.5 1245021164 2009-06-14 23:12:44
## 2296     1.5 1374638441 2013-07-24 04:00:41
## 2297     4.0 1338702402 2012-06-03 05:46:42
## 2298     3.0 1338698899 2012-06-03 04:48:19
## 2299     4.0 1245021148 2009-06-14 23:12:28
## 2300     3.5 1338698337 2012-06-03 04:38:57
## 2301     2.0 1316396161 2011-09-19 01:36:01
## 2302     1.0 1465954712 2016-06-15 01:38:32
## 2303     4.5 1245021136 2009-06-14 23:12:16
## 2304     4.0 1316396225 2011-09-19 01:37:05
## 2305     3.0 1374637633 2013-07-24 03:47:13
## 2306     2.0 1338698886 2012-06-03 04:48:06
## 2307     1.0 1338702414 2012-06-03 05:46:54
## 2308     2.0 1389440855 2014-01-11 11:47:35
## 2309     1.0 1361831532 2013-02-25 22:32:12
## 2310     0.5 1465880996 2016-06-14 05:09:56
## 2311     4.5 1338698471 2012-06-03 04:41:11
## 2312     4.0 1458506351 2016-03-20 20:39:11
## 2313     3.0 1257733119 2009-11-09 02:18:39
## 2314     5.0 1257734187 2009-11-09 02:36:27
## 2315     3.5 1261945002 2009-12-27 20:16:42
## 2316     4.5 1316395878 2011-09-19 01:31:18
## 2317     2.5 1374637773 2013-07-24 03:49:33
## 2318     2.5 1465793997 2016-06-13 04:59:57
## 2319     3.5 1257734180 2009-11-09 02:36:20
## 2320     1.5 1465794388 2016-06-13 05:06:28
## 2321     2.5 1465793912 2016-06-13 04:58:32
## 2322     3.0 1465793920 2016-06-13 04:58:40
## 2323     2.0 1257735545 2009-11-09 02:59:05
## 2324     1.0 1425876002 2015-03-09 04:40:02
## 2325     2.0 1465880969 2016-06-14 05:09:29
## 2326     2.5 1338702430 2012-06-03 05:47:10
## 2327     1.5 1338698882 2012-06-03 04:48:02
## 2328     1.0 1357110070 2013-01-02 07:01:10
## 2329     4.0 1261944230 2009-12-27 20:03:50
## 2330     1.0 1273090173 2010-05-05 20:09:33
## 2331     3.5 1316395633 2011-09-19 01:27:13
## 2332     0.5 1338698316 2012-06-03 04:38:36
## 2333     4.0 1338702442 2012-06-03 05:47:22
## 2334     1.5 1367764758 2013-05-05 14:39:18
## 2335     0.5 1361831555 2013-02-25 22:32:35
## 2336     2.0 1458506610 2016-03-20 20:43:30
## 2337     4.0 1273090169 2010-05-05 20:09:29
## 2338     3.0 1273090163 2010-05-05 20:09:23
## 2339     3.0 1361831522 2013-02-25 22:32:02
## 2340     2.5 1379040852 2013-09-13 02:54:12
## 2341     2.5 1367765175 2013-05-05 14:46:15
## 2342     4.0 1367801385 2013-05-06 00:49:45
## 2343     1.0 1316395588 2011-09-19 01:26:28
## 2344     3.0 1458506646 2016-03-20 20:44:06
## 2345     3.0 1316395983 2011-09-19 01:33:03
## 2346     2.0 1338698896 2012-06-03 04:48:16
## 2347     4.5 1443384445 2015-09-27 20:07:25
## 2348     2.5 1367765128 2013-05-05 14:45:28
## 2349     5.0 1316395554 2011-09-19 01:25:54
## 2350     2.5 1458506381 2016-03-20 20:39:41
## 2351     2.5 1465880302 2016-06-14 04:58:22
## 2352     1.5 1349048062 2012-09-30 23:34:22
## 2353     1.0 1349622587 2012-10-07 15:09:47
## 2354     0.5 1367765181 2013-05-05 14:46:21
## 2355     1.5 1338698870 2012-06-03 04:47:50
## 2356     1.0 1465794431 2016-06-13 05:07:11
## 2357     3.0 1374638009 2013-07-24 03:53:29
## 2358     2.0 1361078260 2013-02-17 05:17:40
## 2359     4.0 1316395567 2011-09-19 01:26:07
## 2360     2.5 1465793930 2016-06-13 04:58:50
## 2361     4.0 1361078281 2013-02-17 05:18:01
## 2362     3.0 1367801466 2013-05-06 00:51:06
## 2363     3.0 1374638035 2013-07-24 03:53:55
## 2364     3.5 1348976539 2012-09-30 03:42:19
## 2365     1.0 1338698369 2012-06-03 04:39:29
## 2366     3.0 1316395900 2011-09-19 01:31:40
## 2367     2.0 1458506571 2016-03-20 20:42:51
## 2368     3.0 1367801474 2013-05-06 00:51:14
## 2369     1.0 1338698918 2012-06-03 04:48:38
## 2370     3.0 1338698461 2012-06-03 04:41:01
## 2371     3.0 1316396252 2011-09-19 01:37:32
## 2372     0.5 1465880518 2016-06-14 05:01:58
## 2373     1.0 1361078285 2013-02-17 05:18:05
## 2374     3.5 1367801456 2013-05-06 00:50:56
## 2375     1.0 1316396136 2011-09-19 01:35:36
## 2376     0.5 1367765123 2013-05-05 14:45:23
## 2377     4.0 1425875865 2015-03-09 04:37:45
## 2378     3.0 1345381190 2012-08-19 12:59:50
## 2379     2.5 1465880243 2016-06-14 04:57:23
## 2380     2.5 1367801369 2013-05-06 00:49:29
## 2381     1.0 1347936749 2012-09-18 02:52:29
## 2382     4.0 1316395607 2011-09-19 01:26:47
## 2383     4.0 1367801387 2013-05-06 00:49:47
## 2384     1.5 1348976211 2012-09-30 03:36:51
## 2385     1.0 1316395573 2011-09-19 01:26:13
## 2386     1.5 1338698824 2012-06-03 04:47:04
## 2387     5.0 1316395597 2011-09-19 01:26:37
## 2388     4.0 1458506593 2016-03-20 20:43:13
## 2389     2.5 1458506580 2016-03-20 20:43:00
## 2390     3.5 1458507263 2016-03-20 20:54:23
## 2391     0.5 1458505901 2016-03-20 20:31:41
## 2392     4.0 1458506624 2016-03-20 20:43:44
## 2393     1.5 1316395580 2011-09-19 01:26:20
## 2394     0.5 1374638031 2013-07-24 03:53:51
## 2395     1.0 1347936763 2012-09-18 02:52:43
## 2396     0.5 1338698810 2012-06-03 04:46:50
## 2397     1.0 1458507259 2016-03-20 20:54:19
## 2398     4.5 1316396021 2011-09-19 01:33:41
## 2399     2.5 1458506136 2016-03-20 20:35:36
## 2400     2.0 1443385461 2015-09-27 20:24:21
## 2401     3.0 1416120053 2014-11-16 06:40:53
## 2402     2.5 1338698356 2012-06-03 04:39:16
## 2403     1.0 1348976202 2012-09-30 03:36:42
## 2404     3.5 1386367929 2013-12-06 22:12:09
## 2405     1.5 1316408269 2011-09-19 04:57:49
## 2406     4.5 1316395487 2011-09-19 01:24:47
## 2407     0.5 1316395783 2011-09-19 01:29:43
## 2408     1.5 1367801460 2013-05-06 00:51:00
## 2409     3.0 1374638024 2013-07-24 03:53:44
## 2410     1.5 1458506641 2016-03-20 20:44:01
## 2411     5.0 1361078138 2013-02-17 05:15:38
## 2412     3.0 1338697857 2012-06-03 04:30:57
## 2413     1.0 1349048081 2012-09-30 23:34:41
## 2414     3.5 1338698848 2012-06-03 04:47:28
## 2415     2.5 1367801470 2013-05-06 00:51:10
## 2416     4.5 1348977157 2012-09-30 03:52:37
## 2417     0.5 1361078276 2013-02-17 05:17:56
## 2418     4.0 1338698144 2012-06-03 04:35:44
## 2419     3.5 1367801363 2013-05-06 00:49:23
## 2420     2.5 1348976195 2012-09-30 03:36:35
## 2421     3.0 1374637765 2013-07-24 03:49:25
## 2422     1.5 1338698014 2012-06-03 04:33:34
## 2423     1.0 1338698247 2012-06-03 04:37:27
## 2424     0.5 1465880427 2016-06-14 05:00:27
## 2425     0.5 1338697915 2012-06-03 04:31:55
## 2426     1.0 1347936860 2012-09-18 02:54:20
## 2427     3.0 1345350956 2012-08-19 04:35:56
## 2428     2.0 1348979143 2012-09-30 04:25:43
## 2429     1.0 1348976183 2012-09-30 03:36:23
## 2430     2.5 1338698134 2012-06-03 04:35:34
## 2431     4.5 1338698154 2012-06-03 04:35:54
## 2432     4.0 1338698344 2012-06-03 04:39:04
## 2433     3.0 1338698158 2012-06-03 04:35:58
## 2434     3.0 1338697924 2012-06-03 04:32:04
## 2435     1.5 1465880962 2016-06-14 05:09:22
## 2436     2.5 1338698152 2012-06-03 04:35:52
## 2437     1.0 1361831455 2013-02-25 22:30:55
## 2438     1.0 1338699137 2012-06-03 04:52:17
## 2439     3.0 1338697920 2012-06-03 04:32:00
## 2440     2.0 1458507291 2016-03-20 20:54:51
## 2441     2.5 1338697984 2012-06-03 04:33:04
## 2442     3.5 1338697905 2012-06-03 04:31:45
## 2443     1.0 1338697996 2012-06-03 04:33:16
## 2444     1.0 1338698001 2012-06-03 04:33:21
## 2445     1.0 1338698006 2012-06-03 04:33:26
## 2446     4.0 1338697991 2012-06-03 04:33:11
## 2447     2.5 1338697968 2012-06-03 04:32:48
## 2448     1.5 1345351002 2012-08-19 04:36:42
## 2449     1.5 1338697964 2012-06-03 04:32:44
## 2450     1.5 1345350968 2012-08-19 04:36:08
## 2451     1.0 1374638428 2013-07-24 04:00:28
## 2452     1.0 1345350979 2012-08-19 04:36:19
## 2453     1.0 1345350959 2012-08-19 04:35:59
## 2454     0.5 1465880715 2016-06-14 05:05:15
## 2455     1.5 1347937652 2012-09-18 03:07:32
## 2456     0.5 1357109952 2013-01-02 06:59:12
## 2457     3.5 1345350961 2012-08-19 04:36:01
## 2458     1.0 1357109941 2013-01-02 06:59:01
## 2459     1.5 1345350995 2012-08-19 04:36:35
## 2460     3.0 1361831420 2013-02-25 22:30:20
## 2461     2.0 1345350973 2012-08-19 04:36:13
## 2462     3.5 1361076608 2013-02-17 04:50:08
## 2463     1.5 1374637996 2013-07-24 03:53:16
## 2464     2.5 1357109969 2013-01-02 06:59:29
## 2465     2.5 1458506349 2016-03-20 20:39:09
## 2466     2.5 1367764836 2013-05-05 14:40:36
## 2467     3.5 1386368013 2013-12-06 22:13:33
## 2468     3.5 1361076604 2013-02-17 04:50:04
## 2469     2.5 1426110392 2015-03-11 21:46:32
## 2470     3.0 1386367936 2013-12-06 22:12:16
## 2471     2.5 1389482906 2014-01-11 23:28:26
## 2472     0.5 1465793928 2016-06-13 04:58:48
## 2473     0.5 1425876388 2015-03-09 04:46:28
## 2474     0.5 1416119923 2014-11-16 06:38:43
## 2475     3.0 1367764716 2013-05-05 14:38:36
## 2476     1.0 1465880234 2016-06-14 04:57:14
## 2477     3.5 1458506339 2016-03-20 20:38:59
## 2478     1.5 1425876390 2015-03-09 04:46:30
## 2479     1.0 1357109923 2013-01-02 06:58:43
## 2480     2.5 1386368031 2013-12-06 22:13:51
## 2481     4.0 1361831110 2013-02-25 22:25:10
## 2482     2.0 1361076617 2013-02-17 04:50:17
## 2483     0.5 1465880648 2016-06-14 05:04:08
## 2484     2.5 1361831156 2013-02-25 22:25:56
## 2485     1.0 1400818425 2014-05-23 04:13:45
## 2486     3.0 1381534422 2013-10-11 23:33:42
## 2487     4.0 1374638046 2013-07-24 03:54:06
## 2488     1.5 1465793952 2016-06-13 04:59:12
## 2489     3.0 1386367955 2013-12-06 22:12:35
## 2490     1.0 1367764695 2013-05-05 14:38:15
## 2491     3.0 1367764864 2013-05-05 14:41:04
## 2492     0.5 1465880292 2016-06-14 04:58:12
## 2493     3.0 1465880371 2016-06-14 04:59:31
## 2494     3.5 1400818444 2014-05-23 04:14:04
## 2495     1.0 1386367999 2013-12-06 22:13:19
## 2496     1.5 1458506656 2016-03-20 20:44:16
## 2497     2.0 1389482894 2014-01-11 23:28:14
## 2498     3.0 1386367981 2013-12-06 22:13:01
## 2499     2.5 1386367968 2013-12-06 22:12:48
## 2500     0.5 1400818394 2014-05-23 04:13:14
## 2501     1.0 1458506599 2016-03-20 20:43:19
## 2502     2.5 1386367923 2013-12-06 22:12:03
## 2503     5.0 1379040901 2013-09-13 02:55:01
## 2504     0.5 1465794267 2016-06-13 05:04:27
## 2505     1.0 1465954520 2016-06-15 01:35:20
## 2506     1.0 1465880282 2016-06-14 04:58:02
## 2507     1.5 1465880264 2016-06-14 04:57:44
## 2508     3.5 1458506673 2016-03-20 20:44:33
## 2509     1.0 1458506703 2016-03-20 20:45:03
## 2510     3.0 1425875562 2015-03-09 04:32:42
## 2511     3.0 1381534394 2013-10-11 23:33:14
## 2512     3.5 1386367735 2013-12-06 22:08:55
## 2513     4.0 1381534447 2013-10-11 23:34:07
## 2514     3.5 1425875553 2015-03-09 04:32:33
## 2515     2.0 1443384429 2015-09-27 20:07:09
## 2516     1.0 1386367830 2013-12-06 22:10:30
## 2517     3.5 1386367813 2013-12-06 22:10:13
## 2518     2.0 1389440765 2014-01-11 11:46:05
## 2519     3.5 1416120264 2014-11-16 06:44:24
## 2520     1.5 1416120141 2014-11-16 06:42:21
## 2521     4.5 1416119571 2014-11-16 06:32:51
## 2522     0.5 1465881258 2016-06-14 05:14:18
## 2523     4.0 1425875579 2015-03-09 04:32:59
## 2524     4.5 1426110023 2015-03-11 21:40:23
## 2525     2.0 1416120159 2014-11-16 06:42:39
## 2526     0.5 1458506323 2016-03-20 20:38:43
## 2527     0.5 1465954590 2016-06-15 01:36:30
## 2528     1.0 1465954969 2016-06-15 01:42:49
## 2529     1.5 1407125286 2014-08-04 04:08:06
## 2530     1.0 1458506369 2016-03-20 20:39:29
## 2531     0.5 1465794437 2016-06-13 05:07:17
## 2532     1.0 1416119568 2014-11-16 06:32:48
## 2533     3.5 1425875392 2015-03-09 04:29:52
## 2534     1.5 1416120169 2014-11-16 06:42:49
## 2535     2.5 1465793948 2016-06-13 04:59:08
## 2536     3.0 1425875503 2015-03-09 04:31:43
## 2537     4.0 1416120131 2014-11-16 06:42:11
## 2538     0.5 1416120162 2014-11-16 06:42:42
## 2539     0.5 1416120149 2014-11-16 06:42:29
## 2540     1.0 1416120159 2014-11-16 06:42:39
## 2541     2.0 1465880696 2016-06-14 05:04:56
## 2542     2.5 1443385454 2015-09-27 20:24:14
## 2543     1.0 1425875482 2015-03-09 04:31:22
## 2544     3.5 1416120099 2014-11-16 06:41:39
## 2545     4.0 1400818348 2014-05-23 04:12:28
## 2546     4.0 1407125275 2014-08-04 04:07:55
## 2547     4.5 1425875435 2015-03-09 04:30:35
## 2548     4.5 1416120100 2014-11-16 06:41:40
## 2549     4.5 1443384269 2015-09-27 20:04:29
## 2550     3.5 1407125270 2014-08-04 04:07:50
## 2551     2.5 1425875460 2015-03-09 04:31:00
## 2552     2.0 1426110071 2015-03-11 21:41:11
## 2553     3.5 1416120171 2014-11-16 06:42:51
## 2554     1.5 1443384078 2015-09-27 20:01:18
## 2555     4.5 1425875403 2015-03-09 04:30:03
## 2556     4.0 1407125273 2014-08-04 04:07:53
## 2557     1.0 1465880699 2016-06-14 05:04:59
## 2558     4.5 1416119564 2014-11-16 06:32:44
## 2559     1.5 1425875476 2015-03-09 04:31:16
## 2560     0.5 1465794105 2016-06-13 05:01:45
## 2561     2.0 1425875488 2015-03-09 04:31:28
## 2562     0.5 1425875497 2015-03-09 04:31:37
## 2563     1.0 1425875574 2015-03-09 04:32:54
## 2564     1.0 1465793290 2016-06-13 04:48:10
## 2565     4.0 1416120202 2014-11-16 06:43:22
## 2566     4.0 1425875463 2015-03-09 04:31:03
## 2567     3.5 1443384500 2015-09-27 20:08:20
## 2568     5.0 1425875406 2015-03-09 04:30:06
## 2569     1.5 1425875413 2015-03-09 04:30:13
## 2570     3.5 1443384091 2015-09-27 20:01:31
## 2571     1.0 1425875458 2015-03-09 04:30:58
## 2572     0.5 1425875401 2015-03-09 04:30:01
## 2573     0.5 1465794406 2016-06-13 05:06:46
## 2574     0.5 1425875449 2015-03-09 04:30:49
## 2575     4.5 1443384373 2015-09-27 20:06:13
## 2576     1.0 1425875426 2015-03-09 04:30:26
## 2577     4.0 1443384296 2015-09-27 20:04:56
## 2578     3.5 1443384084 2015-09-27 20:01:24
## 2579     1.5 1443384307 2015-09-27 20:05:07
## 2580     2.0 1443384336 2015-09-27 20:05:36
## 2581     1.5 1425875443 2015-03-09 04:30:43
## 2582     1.5 1443384294 2015-09-27 20:04:54
## 2583     3.0 1443384317 2015-09-27 20:05:17
## 2584     3.0 1465793971 2016-06-13 04:59:31
## 2585     4.5 1458507341 2016-03-20 20:55:41
## 2586     1.0 1443384389 2015-09-27 20:06:29
## 2587     3.5 1458505928 2016-03-20 20:32:08
## 2588     3.0 1466051442 2016-06-16 04:30:42
## 2589     3.0 1443384000 2015-09-27 20:00:00
## 2590     3.0 1443384283 2015-09-27 20:04:43
## 2591     0.5 1443384352 2015-09-27 20:05:52
## 2592     1.0 1458505916 2016-03-20 20:31:56
## 2593     3.0 1465793115 2016-06-13 04:45:15
## 2594     2.5 1465793601 2016-06-13 04:53:21
## 2595     1.0 1443385387 2015-09-27 20:23:07
## 2596     2.5 1458505982 2016-03-20 20:33:02
## 2597     1.5 1443384322 2015-09-27 20:05:22
## 2598     2.0 1458506093 2016-03-20 20:34:53
## 2599     0.5 1465794100 2016-06-13 05:01:40
## 2600     2.0 1465793706 2016-06-13 04:55:06
## 2601     2.0 1458506081 2016-03-20 20:34:41
## 2602     3.0 1443384337 2015-09-27 20:05:37
## 2603     0.5 1465794103 2016-06-13 05:01:43
## 2604     3.0 1458506026 2016-03-20 20:33:46
## 2605     3.0 1443384330 2015-09-27 20:05:30
## 2606     3.0 1458507347 2016-03-20 20:55:47
## 2607     3.5 1458505912 2016-03-20 20:31:52
## 2608     4.5 1443384275 2015-09-27 20:04:35
## 2609     4.0 1458506097 2016-03-20 20:34:57
## 2610     1.0 1458505921 2016-03-20 20:32:01
## 2611     0.5 1465794150 2016-06-13 05:02:30
## 2612     1.0 1469330276 2016-07-24 03:17:56
## 2613     3.0 1467259301 2016-06-30 04:01:41
## 2614     3.0 1469330245 2016-07-24 03:17:25
## 2615     3.0 1458506089 2016-03-20 20:34:49
## 2616     1.5 1458506078 2016-03-20 20:34:38
## 2617     3.0 1465793719 2016-06-13 04:55:19
## 2618     3.5 1458505989 2016-03-20 20:33:09
## 2619     3.0 1465793116 2016-06-13 04:45:16
## 2620     1.0 1443384531 2015-09-27 20:08:51
## 2621     2.5 1458505973 2016-03-20 20:32:53
## 2622     3.0 1458505986 2016-03-20 20:33:06
## 2623     3.5 1465793975 2016-06-13 04:59:35
## 2624     2.0 1458506009 2016-03-20 20:33:29
## 2625     2.5 1465956541 2016-06-15 02:09:01
## 2626     4.0 1458505917 2016-03-20 20:31:57
## 2627     4.0 1465793185 2016-06-13 04:46:25
## 2628     2.5 1443384516 2015-09-27 20:08:36
## 2629     0.5 1465793205 2016-06-13 04:46:45
## 2630     3.5 1458505911 2016-03-20 20:31:51
## 2631     3.0 1465793179 2016-06-13 04:46:19
## 2632     2.5 1458506017 2016-03-20 20:33:37
## 2633     1.0 1465793183 2016-06-13 04:46:23
## 2634     3.0 1465793201 2016-06-13 04:46:41
## 2635     3.5 1458506016 2016-03-20 20:33:36
## 2636     3.5 1458505924 2016-03-20 20:32:04
## 2637     3.0 1465793208 2016-06-13 04:46:48
## 2638     3.5 1458506107 2016-03-20 20:35:07
## 2639     4.0 1465793192 2016-06-13 04:46:32
## 2640     0.5 1465793700 2016-06-13 04:55:00
## 2641     2.0 1465793170 2016-06-13 04:46:10
## 2642     1.5 1465880375 2016-06-14 04:59:35
## 2643     3.0 1460076733 2016-04-08 00:52:13
## 2644     1.0 1465793639 2016-06-13 04:53:59
## 2645     0.5 1465793691 2016-06-13 04:54:51
## 2646     3.5 1465793621 2016-06-13 04:53:41
## 2647     1.5 1465793612 2016-06-13 04:53:32
## 2648     2.0 1467259316 2016-06-30 04:01:56
## 2649     1.5 1465793630 2016-06-13 04:53:50
## 2650     3.5 1465794051 2016-06-13 05:00:51
## 2651     3.5 1467259294 2016-06-30 04:01:34
## 2652     1.0 1465793091 2016-06-13 04:44:51
## 2653     2.0 1465880080 2016-06-14 04:54:40
## 2654     1.0 1465793093 2016-06-13 04:44:53
## 2655     4.0 1466802910 2016-06-24 21:15:10
## 2656     0.5 1469330481 2016-07-24 03:21:21
## 2657     1.0 1469330238 2016-07-24 03:17:18
## 2658     2.5 1466802905 2016-06-24 21:15:05
## 2659     1.0 1469330270 2016-07-24 03:17:50
## 2660     2.0 1469330266 2016-07-24 03:17:46
## 2661     4.0 1469330242 2016-07-24 03:17:22
## 2662     0.5 1469330307 2016-07-24 03:18:27
## 2663     4.5 1178364904 2007-05-05 11:35:04
## 2664     4.0 1178364881 2007-05-05 11:34:41
## 2665     4.0 1137577638 2006-01-18 09:47:18
## 2666     4.0 1178364921 2007-05-05 11:35:21
## 2667     4.0 1137577630 2006-01-18 09:47:10
## 2668     5.0 1137577694 2006-01-18 09:48:14
## 2669     5.0 1178363907 2007-05-05 11:18:27
## 2670     3.5 1178364916 2007-05-05 11:35:16
## 2671     4.0 1137577687 2006-01-18 09:48:07
## 2672     3.5 1137577912 2006-01-18 09:51:52
## 2673     4.0 1137577918 2006-01-18 09:51:58
## 2674     5.0 1137577616 2006-01-18 09:46:56
## 2675     3.0 1137577645 2006-01-18 09:47:25
## 2676     4.0 1148214528 2006-05-21 12:28:48
## 2677     4.0 1137577753 2006-01-18 09:49:13
## 2678     3.5 1137577979 2006-01-18 09:52:59
## 2679     4.5 1148214227 2006-05-21 12:23:47
## 2680     4.0 1137577889 2006-01-18 09:51:29
## 2681     4.5 1148214543 2006-05-21 12:29:03
## 2682     4.5 1148214272 2006-05-21 12:24:32
## 2683     5.0 1148214289 2006-05-21 12:24:49
## 2684     4.0 1148214251 2006-05-21 12:24:11
## 2685     4.5 1178364909 2007-05-05 11:35:09
## 2686     3.0 1137577776 2006-01-18 09:49:36
## 2687     4.5 1137577730 2006-01-18 09:48:50
## 2688     4.0 1178364961 2007-05-05 11:36:01
## 2689     4.5 1137578034 2006-01-18 09:53:54
## 2690     3.5 1137577905 2006-01-18 09:51:45
## 2691     4.0 1148214661 2006-05-21 12:31:01
## 2692     4.5 1127469542 2005-09-23 09:59:02
## 2693     4.5 1127469531 2005-09-23 09:58:51
## 2694     4.5 1127470880 2005-09-23 10:21:20
## 2695     4.5 1127469436 2005-09-23 09:57:16
## 2696     4.5 1127469535 2005-09-23 09:58:55
## 2697     5.0 1127469246 2005-09-23 09:54:06
## 2698     5.0 1127469450 2005-09-23 09:57:30
## 2699     5.0 1127469023 2005-09-23 09:50:23
## 2700     4.0 1127470242 2005-09-23 10:10:42
## 2701     3.5 1127468646 2005-09-23 09:44:06
## 2702     3.0 1127469509 2005-09-23 09:58:29
## 2703     4.0 1127470280 2005-09-23 10:11:20
## 2704     5.0 1127468896 2005-09-23 09:48:16
## 2705     2.5 1127469577 2005-09-23 09:59:37
## 2706     5.0 1127469684 2005-09-23 10:01:24
## 2707     2.0 1127471027 2005-09-23 10:23:47
## 2708     3.5 1127474688 2005-09-23 11:24:48
## 2709     2.0 1127469552 2005-09-23 09:59:12
## 2710     4.0 1127469604 2005-09-23 10:00:04
## 2711     5.0 1127469297 2005-09-23 09:54:57
## 2712     3.5 1127471192 2005-09-23 10:26:32
## 2713     5.0 1127469420 2005-09-23 09:57:00
## 2714     3.5 1127470013 2005-09-23 10:06:53
## 2715     2.5 1127469401 2005-09-23 09:56:41
## 2716     0.5 1127469444 2005-09-23 09:57:24
## 2717     4.5 1127471468 2005-09-23 10:31:08
## 2718     0.5 1127469407 2005-09-23 09:56:47
## 2719     0.5 1127475344 2005-09-23 11:35:44
## 2720     5.0 1127472949 2005-09-23 10:55:49
## 2721     4.0 1127469434 2005-09-23 09:57:14
## 2722     5.0 1127469561 2005-09-23 09:59:21
## 2723     4.0 1127469779 2005-09-23 10:02:59
## 2724     3.0 1127469416 2005-09-23 09:56:56
## 2725     4.5 1127469396 2005-09-23 09:56:36
## 2726     3.5 1127469440 2005-09-23 09:57:20
## 2727     4.5 1127472555 2005-09-23 10:49:15
## 2728     4.5 1127473893 2005-09-23 11:11:33
## 2729     2.5 1127469466 2005-09-23 09:57:46
## 2730     4.5 1127469230 2005-09-23 09:53:50
## 2731     5.0 1127469000 2005-09-23 09:50:00
## 2732     4.5 1127470263 2005-09-23 10:11:03
## 2733     5.0 1127468839 2005-09-23 09:47:19
## 2734     4.5 1127468627 2005-09-23 09:43:47
## 2735     5.0 1127468595 2005-09-23 09:43:15
## 2736     3.5 1127470036 2005-09-23 10:07:16
## 2737     4.5 1127471471 2005-09-23 10:31:11
## 2738     5.0 1127468808 2005-09-23 09:46:48
## 2739     5.0 1127468822 2005-09-23 09:47:02
## 2740     4.5 1127469756 2005-09-23 10:02:36
## 2741     4.5 1127469594 2005-09-23 09:59:54
## 2742     4.5 1127471079 2005-09-23 10:24:39
## 2743     3.5 1127472146 2005-09-23 10:42:26
## 2744     4.5 1127474822 2005-09-23 11:27:02
## 2745     3.5 1127470622 2005-09-23 10:17:02
## 2746     3.5 1127470607 2005-09-23 10:16:47
## 2747     2.5 1127473110 2005-09-23 10:58:30
## 2748     4.0 1127473686 2005-09-23 11:08:06
## 2749     2.5 1127469628 2005-09-23 10:00:28
## 2750     5.0 1127469308 2005-09-23 09:55:08
## 2751     4.0 1127469973 2005-09-23 10:06:13
## 2752     2.0 1127471148 2005-09-23 10:25:48
## 2753     3.5 1127470400 2005-09-23 10:13:20
## 2754     5.0 1127469568 2005-09-23 09:59:28
## 2755     1.0 1127472932 2005-09-23 10:55:32
## 2756     4.5 1127470987 2005-09-23 10:23:07
## 2757     4.5 1127469556 2005-09-23 09:59:16
## 2758     4.5 1127469923 2005-09-23 10:05:23
## 2759     5.0 1127469650 2005-09-23 10:00:50
## 2760     3.5 1127473503 2005-09-23 11:05:03
## 2761     5.0 1127468800 2005-09-23 09:46:40
## 2762     5.0 1127469622 2005-09-23 10:00:22
## 2763     4.0 1127474633 2005-09-23 11:23:53
## 2764     4.0 1127469667 2005-09-23 10:01:07
## 2765     5.0 1127469002 2005-09-23 09:50:02
## 2766     5.0 1127469749 2005-09-23 10:02:29
## 2767     5.0 1127471445 2005-09-23 10:30:45
## 2768     5.0 1127470230 2005-09-23 10:10:30
## 2769     5.0 1127469169 2005-09-23 09:52:49
## 2770     3.0 1127474779 2005-09-23 11:26:19
## 2771     0.5 1127472490 2005-09-23 10:48:10
## 2772     4.0 1127470206 2005-09-23 10:10:06
## 2773     4.0 1127470820 2005-09-23 10:20:20
## 2774     5.0 1127469721 2005-09-23 10:02:01
## 2775     5.0 1127468791 2005-09-23 09:46:31
## 2776     2.5 1127470114 2005-09-23 10:08:34
## 2777     3.5 1127470489 2005-09-23 10:14:49
## 2778     5.0 1127468638 2005-09-23 09:43:58
## 2779     2.0 1127472442 2005-09-23 10:47:22
## 2780     3.5 1127469694 2005-09-23 10:01:34
## 2781     4.5 1127470072 2005-09-23 10:07:52
## 2782     4.5 1127469234 2005-09-23 09:53:54
## 2783     5.0 1127470095 2005-09-23 10:08:15
## 2784     4.5 1127469473 2005-09-23 09:57:53
## 2785     4.5 1127473670 2005-09-23 11:07:50
## 2786     2.0 1127470062 2005-09-23 10:07:42
## 2787     5.0 1127470930 2005-09-23 10:22:10
## 2788     3.0 1127468688 2005-09-23 09:44:48
## 2789     5.0 1127473298 2005-09-23 11:01:38
## 2790     5.0 1127468930 2005-09-23 09:48:50
## 2791     4.5 1127469223 2005-09-23 09:53:43
## 2792     3.0 1127469661 2005-09-23 10:01:01
## 2793     2.5 1127475516 2005-09-23 11:38:36
## 2794     2.5 1127469521 2005-09-23 09:58:41
## 2795     2.5 1127469976 2005-09-23 10:06:16
## 2796     4.5 1127469527 2005-09-23 09:58:47
## 2797     5.0 1127469905 2005-09-23 10:05:05
## 2798     4.0 1127471602 2005-09-23 10:33:22
## 2799     3.5 1127469988 2005-09-23 10:06:28
## 2800     5.0 1127468587 2005-09-23 09:43:07
## 2801     4.5 1127469912 2005-09-23 10:05:12
## 2802     4.5 1127474863 2005-09-23 11:27:43
## 2803     4.0 1127469601 2005-09-23 10:00:01
## 2804     0.5 1127472770 2005-09-23 10:52:50
## 2805     2.5 1127470069 2005-09-23 10:07:49
## 2806     4.0 1127468617 2005-09-23 09:43:37
## 2807     4.5 1127470043 2005-09-23 10:07:23
## 2808     3.0 1127469129 2005-09-23 09:52:09
## 2809     4.5 1127471258 2005-09-23 10:27:38
## 2810     5.0 1127472570 2005-09-23 10:49:30
## 2811     5.0 1127470262 2005-09-23 10:11:02
## 2812     3.0 1127469612 2005-09-23 10:00:12
## 2813     4.0 1127469217 2005-09-23 09:53:37
## 2814     5.0 1127470918 2005-09-23 10:21:58
## 2815     4.0 1127469773 2005-09-23 10:02:53
## 2816     4.0 1127469738 2005-09-23 10:02:18
## 2817     3.5 1127473090 2005-09-23 10:58:10
## 2818     4.0 1127469006 2005-09-23 09:50:06
## 2819     3.5 1127469494 2005-09-23 09:58:14
## 2820     5.0 1127468880 2005-09-23 09:48:00
## 2821     4.5 1127470656 2005-09-23 10:17:36
## 2822     5.0 1127468938 2005-09-23 09:48:58
## 2823     3.5 1127475491 2005-09-23 11:38:11
## 2824     4.5 1127474890 2005-09-23 11:28:10
## 2825     4.0 1127472523 2005-09-23 10:48:43
## 2826     2.5 1127473955 2005-09-23 11:12:35
## 2827     4.5 1127469357 2005-09-23 09:55:57
## 2828     2.0 1127470030 2005-09-23 10:07:10
## 2829     4.5 1127474873 2005-09-23 11:27:53
## 2830     4.5 1127474381 2005-09-23 11:19:41
## 2831     3.5 1127470130 2005-09-23 10:08:50
## 2832     4.5 1127469815 2005-09-23 10:03:35
## 2833     4.0 1127469961 2005-09-23 10:06:01
## 2834     3.5 1127468671 2005-09-23 09:44:31
## 2835     4.5 1127469563 2005-09-23 09:59:23
## 2836     4.0 1127470079 2005-09-23 10:07:59
## 2837     5.0 1127469379 2005-09-23 09:56:19
## 2838     4.0 1127470158 2005-09-23 10:09:18
## 2839     1.0 1127469848 2005-09-23 10:04:08
## 2840     2.5 1127470166 2005-09-23 10:09:26
## 2841     5.0 1127472530 2005-09-23 10:48:50
## 2842     5.0 1127469486 2005-09-23 09:58:06
## 2843     5.0 1127470677 2005-09-23 10:17:57
## 2844     5.0 1127470875 2005-09-23 10:21:15
## 2845     5.0 1127468906 2005-09-23 09:48:26
## 2846     3.0 1127472715 2005-09-23 10:51:55
## 2847     3.0 1127469890 2005-09-23 10:04:50
## 2848     3.5 1127473623 2005-09-23 11:07:03
## 2849     4.0 1127473860 2005-09-23 11:11:00
## 2850     3.0 1127469619 2005-09-23 10:00:19
## 2851     4.5 1127469870 2005-09-23 10:04:30
## 2852     3.5 1127473627 2005-09-23 11:07:07
## 2853     3.5 1127469711 2005-09-23 10:01:51
## 2854     3.0 1127469824 2005-09-23 10:03:44
## 2855     4.5 1127474088 2005-09-23 11:14:48
## 2856     4.5 1127469504 2005-09-23 09:58:24
## 2857     2.0 1127469746 2005-09-23 10:02:26
## 2858     4.5 1127469479 2005-09-23 09:57:59
## 2859     3.5 1127469374 2005-09-23 09:56:14
## 2860     4.0 1127469652 2005-09-23 10:00:52
## 2861     3.0 1127469690 2005-09-23 10:01:30
## 2862     2.5 1127472212 2005-09-23 10:43:32
## 2863     5.0 1127469609 2005-09-23 10:00:09
## 2864     5.0 1127471286 2005-09-23 10:28:06
## 2865     5.0 1127469583 2005-09-23 09:59:43
## 2866     4.0 1127476640 2005-09-23 11:57:20
## 2867     5.0 1127471284 2005-09-23 10:28:04
## 2868     4.0 1127469868 2005-09-23 10:04:28
## 2869     2.5 1127470023 2005-09-23 10:07:03
## 2870     2.0 1127469202 2005-09-23 09:53:22
## 2871     4.5 1127472389 2005-09-23 10:46:29
## 2872     4.0 1127474810 2005-09-23 11:26:50
## 2873     4.0 1127469266 2005-09-23 09:54:26
## 2874     4.0 1127473609 2005-09-23 11:06:49
## 2875     2.5 1127469817 2005-09-23 10:03:37
## 2876     5.0 1127468813 2005-09-23 09:46:53
## 2877     4.5 1127473589 2005-09-23 11:06:29
## 2878     4.5 1127471452 2005-09-23 10:30:52
## 2879     3.5 1127470537 2005-09-23 10:15:37
## 2880     4.5 1127470423 2005-09-23 10:13:43
## 2881     4.0 1127469591 2005-09-23 09:59:51
## 2882     4.0 1127473228 2005-09-23 11:00:28
## 2883     5.0 1127472406 2005-09-23 10:46:46
## 2884     3.0 1127472085 2005-09-23 10:41:25
## 2885     4.0 1127470532 2005-09-23 10:15:32
## 2886     4.0 1127468949 2005-09-23 09:49:09
## 2887     3.5 1127470327 2005-09-23 10:12:07
## 2888     4.5 1127470461 2005-09-23 10:14:21
## 2889     3.5 1127470285 2005-09-23 10:11:25
## 2890     4.0 1127470334 2005-09-23 10:12:14
## 2891     1.0 1127468701 2005-09-23 09:45:01
## 2892     4.0 1127469984 2005-09-23 10:06:24
## 2893     4.5 1127469664 2005-09-23 10:01:04
## 2894     1.5 1127469852 2005-09-23 10:04:12
## 2895     4.0 1127468683 2005-09-23 09:44:43
## 2896     4.5 1127471074 2005-09-23 10:24:34
## 2897     3.0 1127475013 2005-09-23 11:30:13
## 2898     5.0 1127469783 2005-09-23 10:03:03
## 2899     3.5 1127470473 2005-09-23 10:14:33
## 2900     0.5 1127470119 2005-09-23 10:08:39
## 2901     5.0 1127470830 2005-09-23 10:20:30
## 2902     3.5 1127471221 2005-09-23 10:27:01
## 2903     5.0 1127471153 2005-09-23 10:25:53
## 2904     5.0 1127469334 2005-09-23 09:55:34
## 2905     4.5 1127470728 2005-09-23 10:18:48
## 2906     4.0 1127474968 2005-09-23 11:29:28
## 2907     4.5 1127474815 2005-09-23 11:26:55
## 2908     4.5 1127475151 2005-09-23 11:32:31
## 2909     5.0 1127468922 2005-09-23 09:48:42
## 2910     4.0 1127470287 2005-09-23 10:11:27
## 2911     3.5 1127473495 2005-09-23 11:04:55
## 2912     0.5 1127470004 2005-09-23 10:06:44
## 2913     5.0 1127471176 2005-09-23 10:26:16
## 2914     4.0 1127469940 2005-09-23 10:05:40
## 2915     4.5 1127470007 2005-09-23 10:06:47
## 2916     4.0 1127475485 2005-09-23 11:38:05
## 2917     4.5 1127469643 2005-09-23 10:00:43
## 2918     3.0 1127473364 2005-09-23 11:02:44
## 2919     4.0 1127473564 2005-09-23 11:06:04
## 2920     5.0 1127470960 2005-09-23 10:22:40
## 2921     4.0 1127475207 2005-09-23 11:33:27
## 2922     0.5 1127469827 2005-09-23 10:03:47
## 2923     5.0 1127472353 2005-09-23 10:45:53
## 2924     2.5 1127474324 2005-09-23 11:18:44
## 2925     5.0 1127475000 2005-09-23 11:30:00
## 2926     4.5 1127471041 2005-09-23 10:24:01
## 2927     2.5 1127473845 2005-09-23 11:10:45
## 2928     3.0 1127475457 2005-09-23 11:37:37
## 2929     0.5 1127470247 2005-09-23 10:10:47
## 2930     1.5 1127475188 2005-09-23 11:33:08
## 2931     1.5 1127469195 2005-09-23 09:53:15
## 2932     4.0 1127473818 2005-09-23 11:10:18
## 2933     3.5 1127470134 2005-09-23 10:08:54
## 2934     4.5 1127468673 2005-09-23 09:44:33
## 2935     4.0 1127471240 2005-09-23 10:27:20
## 2936     0.5 1127470299 2005-09-23 10:11:39
## 2937     2.0 1127473010 2005-09-23 10:56:50
## 2938     4.5 1127470799 2005-09-23 10:19:59
## 2939     4.0 1127475183 2005-09-23 11:33:03
## 2940     4.5 1127470238 2005-09-23 10:10:38
## 2941     4.0 1127472858 2005-09-23 10:54:18
## 2942     2.5 1127475440 2005-09-23 11:37:20
## 2943     4.5 1127470685 2005-09-23 10:18:05
## 2944     2.0 1127473119 2005-09-23 10:58:39
## 2945     3.0 1127472423 2005-09-23 10:47:03
## 2946     4.0 1127471265 2005-09-23 10:27:45
## 2947     4.0 1127471454 2005-09-23 10:30:54
## 2948     2.0 1127471062 2005-09-23 10:24:22
## 2949     3.5 1127475067 2005-09-23 11:31:07
## 2950     4.5 1127474818 2005-09-23 11:26:58
## 2951     4.5 1127469753 2005-09-23 10:02:33
## 2952     5.0 1127470498 2005-09-23 10:14:58
## 2953     3.5 1127474362 2005-09-23 11:19:22
## 2954     4.0 1127474765 2005-09-23 11:26:05
## 2955     4.5 1127475051 2005-09-23 11:30:51
## 2956     3.0 1127474841 2005-09-23 11:27:21
## 2957     4.0 1127472872 2005-09-23 10:54:32
## 2958     3.5 1127475334 2005-09-23 11:35:34
## 2959     1.0 1127472991 2005-09-23 10:56:31
## 2960     0.5 1127472976 2005-09-23 10:56:16
## 2961     2.0 1127475308 2005-09-23 11:35:08
## 2962     2.0 1127473829 2005-09-23 11:10:29
## 2963     2.0 1127470144 2005-09-23 10:09:04
## 2964     2.0 1127472896 2005-09-23 10:54:56
## 2965     0.5 1127472979 2005-09-23 10:56:19
## 2966     4.0 1127470895 2005-09-23 10:21:35
## 2967     3.0 1127469259 2005-09-23 09:54:19
## 2968     0.5 1127473548 2005-09-23 11:05:48
## 2969     5.0 1127474791 2005-09-23 11:26:31
## 2970     4.0 1127474916 2005-09-23 11:28:36
## 2971     3.5 1127475452 2005-09-23 11:37:32
## 2972     4.5 1127468985 2005-09-23 09:49:45
## 2973     4.5 1127474277 2005-09-23 11:17:57
## 2974     3.5 1127471196 2005-09-23 10:26:36
## 2975     1.5 1127470254 2005-09-23 10:10:54
## 2976     4.0 1127473461 2005-09-23 11:04:21
## 2977     4.0 1127472413 2005-09-23 10:46:53
## 2978     4.0 1127472303 2005-09-23 10:45:03
## 2979     3.5 1127475092 2005-09-23 11:31:32
## 2980     2.0 1127471327 2005-09-23 10:28:47
## 2981     4.5 1127470187 2005-09-23 10:09:47
## 2982     5.0 1127471166 2005-09-23 10:26:06
## 2983     3.5 1127475055 2005-09-23 11:30:55
## 2984     3.5 1127473832 2005-09-23 11:10:32
## 2985     5.0 1127470752 2005-09-23 10:19:12
## 2986     4.0 1127471083 2005-09-23 10:24:43
## 2987     4.0 1127475101 2005-09-23 11:31:41
## 2988     2.5 1127470546 2005-09-23 10:15:46
## 2989     4.5 1127470734 2005-09-23 10:18:54
## 2990     2.5 1127474852 2005-09-23 11:27:32
## 2991     4.5 1127474908 2005-09-23 11:28:28
## 2992     4.5 1127470872 2005-09-23 10:21:12
## 2993     3.5 1127471213 2005-09-23 10:26:53
## 2994     4.0 1127472094 2005-09-23 10:41:34
## 2995     4.5 1127469062 2005-09-23 09:51:02
## 2996     4.5 1127470554 2005-09-23 10:15:54
## 2997     5.0 1127474398 2005-09-23 11:19:58
## 2998     4.5 1127471109 2005-09-23 10:25:09
## 2999     4.5 1127470693 2005-09-23 10:18:13
## 3000     2.0 1127473904 2005-09-23 11:11:44
## 3001     4.0 1127470592 2005-09-23 10:16:32
## 3002     4.0 1127473557 2005-09-23 11:05:57
## 3003     4.5 1127470361 2005-09-23 10:12:41
## 3004     5.0 1127473913 2005-09-23 11:11:53
## 3005     4.5 1127470380 2005-09-23 10:13:00
## 3006     1.0 1127475148 2005-09-23 11:32:28
## 3007     5.0 1127470520 2005-09-23 10:15:20
## 3008     5.0 1127469051 2005-09-23 09:50:51
## 3009     4.5 1127471038 2005-09-23 10:23:58
## 3010     5.0 1127473707 2005-09-23 11:08:27
## 3011     4.0 1127472156 2005-09-23 10:42:36
## 3012     4.0 1127474420 2005-09-23 11:20:20
## 3013     5.0 1127470503 2005-09-23 10:15:03
## 3014     3.5 1127471336 2005-09-23 10:28:56
## 3015     0.5 1127475448 2005-09-23 11:37:28
## 3016     3.0 1127474877 2005-09-23 11:27:57
## 3017     5.0 1127470713 2005-09-23 10:18:33
## 3018     3.0 1127472844 2005-09-23 10:54:04
## 3019     3.0 1127470866 2005-09-23 10:21:06
## 3020     4.5 1127474727 2005-09-23 11:25:27
## 3021     4.0 1127472266 2005-09-23 10:44:26
## 3022     3.5 1127471100 2005-09-23 10:25:00
## 3023     3.0 1127473138 2005-09-23 10:58:58
## 3024     2.0 1127473808 2005-09-23 11:10:08
## 3025     3.5 1127472829 2005-09-23 10:53:49
## 3026     3.0 1127471144 2005-09-23 10:25:44
## 3027     2.0 1127473772 2005-09-23 11:09:32
## 3028     0.5 1127473349 2005-09-23 11:02:29
## 3029     4.5 1127472292 2005-09-23 10:44:52
## 3030     0.5 1127475524 2005-09-23 11:38:44
## 3031     3.5 1127470706 2005-09-23 10:18:26
## 3032     4.5 1127470716 2005-09-23 10:18:36
## 3033     3.0 1127475246 2005-09-23 11:34:06
## 3034     5.0 1127470724 2005-09-23 10:18:44
## 3035     3.0 1127471549 2005-09-23 10:32:29
## 3036     5.0 1127470911 2005-09-23 10:21:51
## 3037     3.5 1127470788 2005-09-23 10:19:48
## 3038     2.5 1127471208 2005-09-23 10:26:48
## 3039     3.5 1127468773 2005-09-23 09:46:13
## 3040     5.0 1127471031 2005-09-23 10:23:51
## 3041     3.0 1127475110 2005-09-23 11:31:50
## 3042     4.0 1127470792 2005-09-23 10:19:52
## 3043     5.0 1127469035 2005-09-23 09:50:35
## 3044     3.0 1127475574 2005-09-23 11:39:34
## 3045     4.5 1127471248 2005-09-23 10:27:28
## 3046     5.0 1127469049 2005-09-23 09:50:49
## 3047     3.0 1127472057 2005-09-23 10:40:57
## 3048     4.5 1127474893 2005-09-23 11:28:13
## 3049     5.0 1127470680 2005-09-23 10:18:00
## 3050     2.5 1127475161 2005-09-23 11:32:41
## 3051     1.0 1127473991 2005-09-23 11:13:11
## 3052     2.0 1127475261 2005-09-23 11:34:21
## 3053     3.0 1127475175 2005-09-23 11:32:55
## 3054     5.0 1127470435 2005-09-23 10:13:55
## 3055     3.0  856006982 1997-02-15 11:43:02
## 3056     4.0  856006982 1997-02-15 11:43:02
## 3057     3.0  856006982 1997-02-15 11:43:02
## 3058     3.0  856007219 1997-02-15 11:46:59
## 3059     2.0  856007147 1997-02-15 11:45:47
## 3060     4.0  856006886 1997-02-15 11:41:26
## 3061     3.0  856007359 1997-02-15 11:49:19
## 3062     5.0  856006886 1997-02-15 11:41:26
## 3063     5.0  856006885 1997-02-15 11:41:25
## 3064     3.0  856006982 1997-02-15 11:43:02
## 3065     3.0  856007075 1997-02-15 11:44:35
## 3066     4.0  856006886 1997-02-15 11:41:26
## 3067     2.0  856007279 1997-02-15 11:47:59
## 3068     3.0  856007359 1997-02-15 11:49:19
## 3069     2.0  856007147 1997-02-15 11:45:47
## 3070     3.0  856007495 1997-02-15 11:51:35
## 3071     4.0  856007495 1997-02-15 11:51:35
## 3072     4.0  856007409 1997-02-15 11:50:09
## 3073     3.0  856007409 1997-02-15 11:50:09
## 3074     3.0  856006886 1997-02-15 11:41:26
## 3075     4.0  856007279 1997-02-15 11:47:59
## 3076     3.0  856007147 1997-02-15 11:45:47
## 3077     4.0  856006885 1997-02-15 11:41:25
## 3078     3.0  856007075 1997-02-15 11:44:35
## 3079     3.0  856007075 1997-02-15 11:44:35
## 3080     3.0  856006982 1997-02-15 11:43:02
## 3081     4.0  856006982 1997-02-15 11:43:02
## 3082     4.0  856007147 1997-02-15 11:45:47
## 3083     3.0  856007359 1997-02-15 11:49:19
## 3084     3.0  856006886 1997-02-15 11:41:26
## 3085     4.0  856007075 1997-02-15 11:44:35
## 3086     3.0  856007279 1997-02-15 11:47:59
## 3087     4.0  856007075 1997-02-15 11:44:35
## 3088     3.0  856007219 1997-02-15 11:46:59
## 3089     4.0  856006982 1997-02-15 11:43:02
## 3090     2.0  856006885 1997-02-15 11:41:25
## 3091     3.0  856007219 1997-02-15 11:46:59
## 3092     3.0  856007359 1997-02-15 11:49:19
## 3093     1.0  856007147 1997-02-15 11:45:47
## 3094     2.0  856007587 1997-02-15 11:53:07
## 3095     3.0  856006885 1997-02-15 11:41:25
## 3096     4.0  856007495 1997-02-15 11:51:35
## 3097     4.0  856006982 1997-02-15 11:43:02
## 3098     3.0  856007075 1997-02-15 11:44:35
## 3099     4.0  856007219 1997-02-15 11:46:59
## 3100     4.0  856007147 1997-02-15 11:45:47
## 3101     3.0  856092135 1997-02-16 11:22:15
## 3102     3.0  856007219 1997-02-15 11:46:59
## 3103     4.0  856007587 1997-02-15 11:53:07
## 3104     3.0  856007279 1997-02-15 11:47:59
## 3105     1.0  856007587 1997-02-15 11:53:07
## 3106     3.0  855190091 1997-02-06 00:48:11
## 3107     3.0  855194773 1997-02-06 02:06:13
## 3108     3.0  855194718 1997-02-06 02:05:18
## 3109     3.0  855192868 1997-02-06 01:34:28
## 3110     3.0  855190128 1997-02-06 00:48:48
## 3111     3.0  855190128 1997-02-06 00:48:48
## 3112     3.0  855190232 1997-02-06 00:50:32
## 3113     3.0  855192496 1997-02-06 01:28:16
## 3114     3.0  855192773 1997-02-06 01:32:53
## 3115     5.0  855190167 1997-02-06 00:49:27
## 3116     5.0  855191930 1997-02-06 01:18:50
## 3117     3.0  855193244 1997-02-06 01:40:44
## 3118     3.0  855192868 1997-02-06 01:34:28
## 3119     1.0  855194301 1997-02-06 01:58:21
## 3120     3.0  855190091 1997-02-06 00:48:11
## 3121     3.0  855190349 1997-02-06 00:52:29
## 3122     3.0  855190091 1997-02-06 00:48:11
## 3123     4.0  855191622 1997-02-06 01:13:42
## 3124     3.0  855192496 1997-02-06 01:28:16
## 3125     3.0  855190954 1997-02-06 01:02:34
## 3126     3.0  855193076 1997-02-06 01:37:56
## 3127     3.0  855192210 1997-02-06 01:23:30
## 3128     3.0  855191478 1997-02-06 01:11:18
## 3129     5.0  855191517 1997-02-06 01:11:57
## 3130     3.0  855193488 1997-02-06 01:44:48
## 3131     4.0  855192835 1997-02-06 01:33:55
## 3132     3.0  855190167 1997-02-06 00:49:27
## 3133     3.0  855192717 1997-02-06 01:31:57
## 3134     3.0  855190167 1997-02-06 00:49:27
## 3135     3.0  855190349 1997-02-06 00:52:29
## 3136     2.0  855193770 1997-02-06 01:49:30
## 3137     4.0  855191324 1997-02-06 01:08:44
## 3138     3.0  855190261 1997-02-06 00:51:01
## 3139     3.0  855193220 1997-02-06 01:40:20
## 3140     3.0  855190290 1997-02-06 00:51:30
## 3141     3.0  855190091 1997-02-06 00:48:11
## 3142     4.0  855190550 1997-02-06 00:55:50
## 3143     3.0  855190531 1997-02-06 00:55:31
## 3144     3.0  855192656 1997-02-06 01:30:56
## 3145     3.0  855193530 1997-02-06 01:45:30
## 3146     5.0  855191324 1997-02-06 01:08:44
## 3147     3.0  855190128 1997-02-06 00:48:48
## 3148     3.0  855194378 1997-02-06 01:59:38
## 3149     3.0  855191429 1997-02-06 01:10:29
## 3150     3.0  855190091 1997-02-06 00:48:11
## 3151     4.0  855193720 1997-02-06 01:48:40
## 3152     3.0  855191289 1997-02-06 01:08:09
## 3153     3.0  855193751 1997-02-06 01:49:11
## 3154     4.0  855191383 1997-02-06 01:09:43
## 3155     4.0  855191775 1997-02-06 01:16:15
## 3156     4.0  855194718 1997-02-06 02:05:18
## 3157     5.0  855191226 1997-02-06 01:07:06
## 3158     3.0  855191227 1997-02-06 01:07:07
## 3159     2.0  855194264 1997-02-06 01:57:44
## 3160     1.0  855194345 1997-02-06 01:59:05
## 3161     4.0  855191383 1997-02-06 01:09:43
## 3162     2.0  855192496 1997-02-06 01:28:16
## 3163     2.0  855193865 1997-02-06 01:51:05
## 3164     3.0  855192957 1997-02-06 01:35:57
## 3165     4.0  855191383 1997-02-06 01:09:43
## 3166     3.0  855193806 1997-02-06 01:50:06
## 3167     3.0  855191478 1997-02-06 01:11:18
## 3168     3.0  855193054 1997-02-06 01:37:34
## 3169     3.0  855192120 1997-02-06 01:22:00
## 3170     3.0  855194790 1997-02-06 02:06:30
## 3171     2.0  855193510 1997-02-06 01:45:10
## 3172     3.0  855191324 1997-02-06 01:08:44
## 3173     4.0  855191622 1997-02-06 01:13:42
## 3174     4.0  855191701 1997-02-06 01:15:01
## 3175     5.0  855192308 1997-02-06 01:25:08
## 3176     3.0  855194087 1997-02-06 01:54:47
## 3177     3.0  855191324 1997-02-06 01:08:44
## 3178     4.0  855191478 1997-02-06 01:11:18
## 3179     4.0  855191430 1997-02-06 01:10:30
## 3180     3.0  855193530 1997-02-06 01:45:30
## 3181     3.0  855191430 1997-02-06 01:10:30
## 3182     4.0  855190199 1997-02-06 00:49:59
## 3183     4.0  855194216 1997-02-06 01:56:56
## 3184     5.0  855193220 1997-02-06 01:40:20
## 3185     1.0  855194773 1997-02-06 02:06:13
## 3186     3.0  855191882 1997-02-06 01:18:02
## 3187     1.0  855194605 1997-02-06 02:03:25
## 3188     3.0  855192982 1997-02-06 01:36:22
## 3189     3.0  855192910 1997-02-06 01:35:10
## 3190     5.0  855191383 1997-02-06 01:09:43
## 3191     4.0  855193465 1997-02-06 01:44:25
## 3192     4.0  855194693 1997-02-06 02:04:53
## 3193     5.0  855191226 1997-02-06 01:07:06
## 3194     3.0  855193220 1997-02-06 01:40:20
## 3195     5.0  855191584 1997-02-06 01:13:04
## 3196     5.0  855191622 1997-02-06 01:13:42
## 3197     5.0  855191654 1997-02-06 01:14:14
## 3198     3.0  855194824 1997-02-06 02:07:04
## 3199     4.0  855195189 1997-02-06 02:13:09
## 3200     5.0  855191383 1997-02-06 01:09:43
## 3201     4.0  855192210 1997-02-06 01:23:30
## 3202     3.0  855192814 1997-02-06 01:33:34
## 3203     3.0  855193274 1997-02-06 01:41:14
## 3204     3.0  855194773 1997-02-06 02:06:13
## 3205     4.0  855191846 1997-02-06 01:17:26
## 3206     3.0  855193643 1997-02-06 01:47:23
## 3207     4.0  855193599 1997-02-06 01:46:39
## 3208     3.0  855193404 1997-02-06 01:43:24
## 3209     3.0  855194560 1997-02-06 02:02:40
## 3210     3.0  855191289 1997-02-06 01:08:09
## 3211     3.0  855192910 1997-02-06 01:35:10
## 3212     4.0  855191622 1997-02-06 01:13:42
## 3213     3.0  855193558 1997-02-06 01:45:58
## 3214     3.0  855193864 1997-02-06 01:51:04
## 3215     3.0  855192868 1997-02-06 01:34:28
## 3216     3.0  855192178 1997-02-06 01:22:58
## 3217     5.0  855192120 1997-02-06 01:22:00
## 3218     5.0  855193770 1997-02-06 01:49:30
## 3219     4.0  855193330 1997-02-06 01:42:10
## 3220     3.0  855195078 1997-02-06 02:11:18
## 3221     3.0  855192385 1997-02-06 01:26:25
## 3222     3.0  855192254 1997-02-06 01:24:14
## 3223     3.0  855194531 1997-02-06 02:02:11
## 3224     3.0  855192636 1997-02-06 01:30:36
## 3225     3.0  855193244 1997-02-06 01:40:44
## 3226     1.0  855192254 1997-02-06 01:24:14
## 3227     4.0  855191816 1997-02-06 01:16:56
## 3228     3.0  855190166 1997-02-06 00:49:26
## 3229     3.0  855191289 1997-02-06 01:08:09
## 3230     3.0  855193845 1997-02-06 01:50:45
## 3231     3.0  855191228 1997-02-06 01:07:08
## 3232     3.0  855192120 1997-02-06 01:22:00
## 3233     3.0  855193914 1997-02-06 01:51:54
## 3234     3.0  855193558 1997-02-06 01:45:58
## 3235     3.0  855192605 1997-02-06 01:30:05
## 3236     3.0  855193488 1997-02-06 01:44:48
## 3237     3.0  855191701 1997-02-06 01:15:01
## 3238     4.0  855194419 1997-02-06 02:00:19
## 3239     4.0  855192210 1997-02-06 01:23:30
## 3240     3.0  855194301 1997-02-06 01:58:21
## 3241     3.0  855193330 1997-02-06 01:42:10
## 3242     3.0  855192455 1997-02-06 01:27:35
## 3243     3.0  855193404 1997-02-06 01:43:24
## 3244     3.0  855192001 1997-02-06 01:20:01
## 3245     3.0  855194345 1997-02-06 01:59:05
## 3246     3.0  855193700 1997-02-06 01:48:20
## 3247     3.0  855193599 1997-02-06 01:46:39
## 3248     4.0  855192910 1997-02-06 01:35:10
## 3249     4.0  855192385 1997-02-06 01:26:25
## 3250     4.0  855193488 1997-02-06 01:44:48
## 3251     5.0  855193892 1997-02-06 01:51:32
## 3252     4.0  855194397 1997-02-06 01:59:57
## 3253     3.0  855192558 1997-02-06 01:29:18
## 3254     3.0  855192419 1997-02-06 01:26:59
## 3255     3.0  855191654 1997-02-06 01:14:14
## 3256     2.0  855193806 1997-02-06 01:50:06
## 3257     4.0  855192279 1997-02-06 01:24:39
## 3258     1.0  855192308 1997-02-06 01:25:08
## 3259     2.0  855192940 1997-02-06 01:35:40
## 3260     1.0  855193330 1997-02-06 01:42:10
## 3261     3.0  855193449 1997-02-06 01:44:09
## 3262     4.0  855191517 1997-02-06 01:11:57
## 3263     3.0  855190128 1997-02-06 00:48:48
## 3264     3.0  855194264 1997-02-06 01:57:44
## 3265     5.0  855191228 1997-02-06 01:07:08
## 3266     3.0  855193845 1997-02-06 01:50:45
## 3267     3.0  855192558 1997-02-06 01:29:18
## 3268     3.0  855192061 1997-02-06 01:21:01
## 3269     4.0  855194216 1997-02-06 01:56:56
## 3270     1.0  855193700 1997-02-06 01:48:20
## 3271     5.0  855193012 1997-02-06 01:36:52
## 3272     2.0  855193301 1997-02-06 01:41:41
## 3273     1.0  855194590 1997-02-06 02:03:10
## 3274     3.0  855193449 1997-02-06 01:44:09
## 3275     3.0  855193301 1997-02-06 01:41:41
## 3276     4.0  855191478 1997-02-06 01:11:18
## 3277     3.0  855192717 1997-02-06 01:31:57
## 3278     5.0  855193358 1997-02-06 01:42:38
## 3279     5.0  855192910 1997-02-06 01:35:10
## 3280     4.0  855191324 1997-02-06 01:08:44
## 3281     3.0  855192688 1997-02-06 01:31:28
## 3282     4.0  855191622 1997-02-06 01:13:42
## 3283     4.0  855194419 1997-02-06 02:00:19
## 3284     3.0  855192254 1997-02-06 01:24:14
## 3285     4.0  855192419 1997-02-06 01:26:59
## 3286     3.0  855192033 1997-02-06 01:20:33
## 3287     3.0  855190447 1997-02-06 00:54:07
## 3288     1.0  855194052 1997-02-06 01:54:12
## 3289     3.0  855194743 1997-02-06 02:05:43
## 3290     3.0  855195077 1997-02-06 02:11:17
## 3291     3.0  855191383 1997-02-06 01:09:43
## 3292     3.0  855191289 1997-02-06 01:08:09
## 3293     4.0  855191964 1997-02-06 01:19:24
## 3294     3.0  855191229 1997-02-06 01:07:09
## 3295     4.0  855191383 1997-02-06 01:09:43
## 3296     5.0  855195077 1997-02-06 02:11:17
## 3297     5.0  855191553 1997-02-06 01:12:33
## 3298     3.0  855193530 1997-02-06 01:45:30
## 3299     4.0  855192636 1997-02-06 01:30:36
## 3300     5.0  855190128 1997-02-06 00:48:48
## 3301     4.0  855192688 1997-02-06 01:31:28
## 3302     3.0  855190427 1997-02-06 00:53:47
## 3303     3.0  855190199 1997-02-06 00:49:59
## 3304     3.0  855190091 1997-02-06 00:48:11
## 3305     3.0  855190167 1997-02-06 00:49:27
## 3306     4.0  855190199 1997-02-06 00:49:59
## 3307     3.0  855190382 1997-02-06 00:53:02
## 3308     4.0  855190349 1997-02-06 00:52:29
## 3309     4.0  855194072 1997-02-06 01:54:32
## 3310     3.0  855190606 1997-02-06 00:56:46
## 3311     3.0  855193404 1997-02-06 01:43:24
## 3312     3.0  855190128 1997-02-06 00:48:48
## 3313     3.0  855190091 1997-02-06 00:48:11
## 3314     3.0  855190290 1997-02-06 00:51:30
## 3315     5.0  855191289 1997-02-06 01:08:09
## 3316     3.0  855190091 1997-02-06 00:48:11
## 3317     3.0  855190167 1997-02-06 00:49:27
## 3318     3.0  855190349 1997-02-06 00:52:29
## 3319     3.0  855191702 1997-02-06 01:15:02
## 3320     3.0  855190167 1997-02-06 00:49:27
## 3321     3.0  855190382 1997-02-06 00:53:02
## 3322     3.0  855191324 1997-02-06 01:08:44
## 3323     3.0  855190232 1997-02-06 00:50:32
## 3324     3.0  855190199 1997-02-06 00:49:59
## 3325     5.0  855191478 1997-02-06 01:11:18
## 3326     2.0  855190382 1997-02-06 00:53:02
## 3327     3.0  855194072 1997-02-06 01:54:32
## 3328     5.0  855192178 1997-02-06 01:22:58
## 3329     3.0  855192496 1997-02-06 01:28:16
## 3330     4.0  855191622 1997-02-06 01:13:42
## 3331     5.0  855191430 1997-02-06 01:10:30
## 3332     4.0  855191553 1997-02-06 01:12:33
## 3333     5.0  855192582 1997-02-06 01:29:42
## 3334     3.0  855191552 1997-02-06 01:12:32
## 3335     5.0  855191654 1997-02-06 01:14:14
## 3336     3.0  855193012 1997-02-06 01:36:52
## 3337     4.0  855192740 1997-02-06 01:32:20
## 3338     5.0  855192773 1997-02-06 01:32:53
## 3339     4.0  855193358 1997-02-06 01:42:38
## 3340     4.0  855192717 1997-02-06 01:31:57
## 3341     5.0  855191517 1997-02-06 01:11:57
## 3342     4.0  855191289 1997-02-06 01:08:09
## 3343     5.0  855192419 1997-02-06 01:26:59
## 3344     4.0  855193274 1997-02-06 01:41:14
## 3345     4.0  855192210 1997-02-06 01:23:30
## 3346     3.0  855192814 1997-02-06 01:33:34
## 3347     3.0  855192582 1997-02-06 01:29:42
## 3348     4.0  855192033 1997-02-06 01:20:33
## 3349     4.0  855192419 1997-02-06 01:26:59
## 3350     5.0  855192279 1997-02-06 01:24:39
## 3351     5.0  855192178 1997-02-06 01:22:58
## 3352     4.0  855192385 1997-02-06 01:26:25
## 3353     4.0  855192090 1997-02-06 01:21:30
## 3354     4.0  855192061 1997-02-06 01:21:01
## 3355     4.0  855194498 1997-02-06 02:01:38
## 3356     5.0  855192582 1997-02-06 01:29:42
## 3357     5.0  855192254 1997-02-06 01:24:14
## 3358     4.0  855193628 1997-02-06 01:47:08
## 3359     3.0  855193700 1997-02-06 01:48:20
## 3360     4.0  855192120 1997-02-06 01:22:00
## 3361     4.0  855195136 1997-02-06 02:12:16
## 3362     4.0  855192347 1997-02-06 01:25:47
## 3363     3.0  855192347 1997-02-06 01:25:47
## 3364     5.0  855192033 1997-02-06 01:20:33
## 3365     4.0  855193194 1997-02-06 01:39:54
## 3366     4.0  855191324 1997-02-06 01:08:44
## 3367     5.0  855190467 1997-02-06 00:54:27
## 3368     3.0  855192178 1997-02-06 01:22:58
## 3369     5.0  855190606 1997-02-06 00:56:46
## 3370     3.0  855190382 1997-02-06 00:53:02
## 3371     4.0  855190128 1997-02-06 00:48:48
## 3372     3.0  855191775 1997-02-06 01:16:15
## 3373     4.0  855191701 1997-02-06 01:15:01
## 3374     3.0  855191289 1997-02-06 01:08:09
## 3375     3.0  855195268 1997-02-06 02:14:28
## 3376     4.0  855191324 1997-02-06 01:08:44
## 3377     4.0  855191517 1997-02-06 01:11:57
## 3378     3.0  855193599 1997-02-06 01:46:39
## 3379     4.0  855191228 1997-02-06 01:07:08
## 3380     4.0  855191584 1997-02-06 01:13:04
## 3381     3.0  855194052 1997-02-06 01:54:12
## 3382     1.0  855192773 1997-02-06 01:32:53
## 3383     3.0  855192910 1997-02-06 01:35:10
## 3384     4.0  855191816 1997-02-06 01:16:56
## 3385     5.0  855192001 1997-02-06 01:20:01
## 3386     5.0  855191517 1997-02-06 01:11:57
## 3387     3.0  855193194 1997-02-06 01:39:54
## 3388     4.0  855191882 1997-02-06 01:18:02
## 3389     4.0  855191584 1997-02-06 01:13:04
## 3390     3.0  855192940 1997-02-06 01:35:40
## 3391     3.0  855194282 1997-02-06 01:58:02
## 3392     3.0  855195373 1997-02-06 02:16:13
## 3393     4.0  855193275 1997-02-06 01:41:15
## 3394     3.0  855192347 1997-02-06 01:25:47
## 3395     4.0  855192910 1997-02-06 01:35:10
## 3396     5.0  855191430 1997-02-06 01:10:30
## 3397     4.0  855191228 1997-02-06 01:07:08
## 3398     3.0  855192254 1997-02-06 01:24:14
## 3399     3.0  855192740 1997-02-06 01:32:20
## 3400     3.0  855191882 1997-02-06 01:18:02
## 3401     4.0  855193194 1997-02-06 01:39:54
## 3402     5.0  855192496 1997-02-06 01:28:16
## 3403     5.0  855192717 1997-02-06 01:31:57
## 3404     3.0  855190427 1997-02-06 00:53:47
## 3405     4.0  855192496 1997-02-06 01:28:16
## 3406     4.0  855191478 1997-02-06 01:11:18
## 3407     5.0  855191622 1997-02-06 01:13:42
## 3408     3.0  855191701 1997-02-06 01:15:01
## 3409     4.0  855191430 1997-02-06 01:10:30
## 3410     4.0  855191701 1997-02-06 01:15:01
## 3411     4.0  855191553 1997-02-06 01:12:33
## 3412     4.0  855191654 1997-02-06 01:14:14
## 3413     4.0  855191702 1997-02-06 01:15:02
## 3414     4.0  855191964 1997-02-06 01:19:24
## 3415     4.0  855191478 1997-02-06 01:11:18
## 3416     5.0  855191775 1997-02-06 01:16:15
## 3417     5.0  855191478 1997-02-06 01:11:18
## 3418     4.0  855191882 1997-02-06 01:18:02
## 3419     5.0  855192454 1997-02-06 01:27:34
## 3420     4.0  855191740 1997-02-06 01:15:40
## 3421     5.0  855191553 1997-02-06 01:12:33
## 3422     4.0  855191584 1997-02-06 01:13:04
## 3423     4.0  855192419 1997-02-06 01:26:59
## 3424     2.0  855192814 1997-02-06 01:33:34
## 3425     5.0  855192090 1997-02-06 01:21:30
## 3426     4.0  855192385 1997-02-06 01:26:25
## 3427     5.0  855191517 1997-02-06 01:11:57
## 3428     5.0  855192558 1997-02-06 01:29:18
## 3429     5.0  855191584 1997-02-06 01:13:04
## 3430     5.0  855191740 1997-02-06 01:15:40
## 3431     5.0  855191846 1997-02-06 01:17:26
## 3432     3.0  855192517 1997-02-06 01:28:37
## 3433     5.0  855191882 1997-02-06 01:18:02
## 3434     4.0  855191622 1997-02-06 01:13:42
## 3435     5.0  855192061 1997-02-06 01:21:01
## 3436     4.0  855191740 1997-02-06 01:15:40
## 3437     4.0  855192419 1997-02-06 01:26:59
## 3438     5.0  855192347 1997-02-06 01:25:47
## 3439     4.0  855191383 1997-02-06 01:09:43
## 3440     5.0  855191882 1997-02-06 01:18:02
## 3441     4.0  855192001 1997-02-06 01:20:01
## 3442     3.0  855192868 1997-02-06 01:34:28
## 3443     3.0  855191702 1997-02-06 01:15:02
## 3444     4.0  855192347 1997-02-06 01:25:47
## 3445     4.0  855191816 1997-02-06 01:16:56
## 3446     4.0  855191882 1997-02-06 01:18:02
## 3447     4.0  855191816 1997-02-06 01:16:56
## 3448     4.0  855191930 1997-02-06 01:18:50
## 3449     5.0  855192033 1997-02-06 01:20:33
## 3450     5.0  855192279 1997-02-06 01:24:39
## 3451     5.0  855192033 1997-02-06 01:20:33
## 3452     3.0  855192061 1997-02-06 01:21:01
## 3453     5.0  855192001 1997-02-06 01:20:01
## 3454     5.0  855192347 1997-02-06 01:25:47
## 3455     4.0  855191930 1997-02-06 01:18:50
## 3456     4.0  855191775 1997-02-06 01:16:15
## 3457     4.0  855192773 1997-02-06 01:32:53
## 3458     4.0  855191930 1997-02-06 01:18:50
## 3459     4.0  855191740 1997-02-06 01:15:40
## 3460     3.0  855192688 1997-02-06 01:31:28
## 3461     4.0  855192033 1997-02-06 01:20:33
## 3462     5.0  855192178 1997-02-06 01:22:58
## 3463     3.0  855192455 1997-02-06 01:27:35
## 3464     3.0  855191964 1997-02-06 01:19:24
## 3465     4.0  855192636 1997-02-06 01:30:36
## 3466     3.0  855192605 1997-02-06 01:30:05
## 3467     4.0  855191930 1997-02-06 01:18:50
## 3468     4.0  855191654 1997-02-06 01:14:14
## 3469     4.0  855191846 1997-02-06 01:17:26
## 3470     4.0  855192120 1997-02-06 01:22:00
## 3471     4.0  855191930 1997-02-06 01:18:50
## 3472     3.0  855191846 1997-02-06 01:17:26
## 3473     4.0  855193358 1997-02-06 01:42:38
## 3474     4.0  855192517 1997-02-06 01:28:37
## 3475     5.0  855191816 1997-02-06 01:16:56
## 3476     3.0  855193035 1997-02-06 01:37:15
## 3477     3.0  855192090 1997-02-06 01:21:30
## 3478     4.0  855192255 1997-02-06 01:24:15
## 3479     4.0  855192717 1997-02-06 01:31:57
## 3480     1.0  855192455 1997-02-06 01:27:35
## 3481     4.0  855192308 1997-02-06 01:25:08
## 3482     3.0  855192210 1997-02-06 01:23:30
## 3483     3.0  855192120 1997-02-06 01:22:00
## 3484     3.0  855193274 1997-02-06 01:41:14
## 3485     3.0  855192558 1997-02-06 01:29:18
## 3486     3.0  855193628 1997-02-06 01:47:08
## 3487     3.0  855192308 1997-02-06 01:25:08
## 3488     3.0  855193806 1997-02-06 01:50:06
## 3489     2.0  855193932 1997-02-06 01:52:12
## 3490     4.0  855192090 1997-02-06 01:21:30
## 3491     3.0  855193599 1997-02-06 01:46:39
## 3492     3.0  855194641 1997-02-06 02:04:01
## 3493     3.0  855192773 1997-02-06 01:32:53
## 3494     3.0  855193358 1997-02-06 01:42:38
## 3495     4.0  855192558 1997-02-06 01:29:18
## 3496     5.0  855192636 1997-02-06 01:30:36
## 3497     4.0  855192605 1997-02-06 01:30:05
## 3498     3.0  855192835 1997-02-06 01:33:55
## 3499     5.0  855192496 1997-02-06 01:28:16
## 3500     3.0  855192814 1997-02-06 01:33:34
## 3501     5.0  855190606 1997-02-06 00:56:46
## 3502     3.0  855190199 1997-02-06 00:49:59
## 3503     4.0  855190571 1997-02-06 00:56:11
## 3504     4.0  855192636 1997-02-06 01:30:36
## 3505     4.0  855193404 1997-02-06 01:43:24
## 3506     2.0  855193035 1997-02-06 01:37:15
## 3507     3.0  855193845 1997-02-06 01:50:45
## 3508     3.0  855192496 1997-02-06 01:28:16
## 3509     4.0  855193244 1997-02-06 01:40:44
## 3510     3.0  855192740 1997-02-06 01:32:20
## 3511     3.0  855193700 1997-02-06 01:48:20
## 3512     2.0  855193244 1997-02-06 01:40:44
## 3513     3.0  855193194 1997-02-06 01:39:54
## 3514     3.0  855194670 1997-02-06 02:04:30
## 3515     1.0  855194188 1997-02-06 01:56:28
## 3516     3.0  855193076 1997-02-06 01:37:56
## 3517     5.0  855192033 1997-02-06 01:20:33
## 3518     1.0  855193946 1997-02-06 01:52:26
## 3519     1.0  855194693 1997-02-06 02:04:53
## 3520     2.0  855190404 1997-02-06 00:53:24
## 3521     3.0  855190404 1997-02-06 00:53:24
## 3522     5.0  855192061 1997-02-06 01:21:01
## 3523     3.0  855193012 1997-02-06 01:36:52
## 3524     3.0  855190404 1997-02-06 00:53:24
## 3525     3.0  855192910 1997-02-06 01:35:10
## 3526     3.0  855192982 1997-02-06 01:36:22
## 3527     3.0  855192254 1997-02-06 01:24:14
## 3528     4.0  855193274 1997-02-06 01:41:14
## 3529     3.5 1238729767 2009-04-03 03:36:07
## 3530     2.5 1238729782 2009-04-03 03:36:22
## 3531     3.5 1238729861 2009-04-03 03:37:41
## 3532     3.5 1224042765 2008-10-15 03:52:45
## 3533     2.0 1238729747 2009-04-03 03:35:47
## 3534     3.0 1238729755 2009-04-03 03:35:55
## 3535     4.0 1238729818 2009-04-03 03:36:58
## 3536     2.5 1224042795 2008-10-15 03:53:15
## 3537     1.0 1238729849 2009-04-03 03:37:29
## 3538     1.5 1224043057 2008-10-15 03:57:37
## 3539     0.5 1238729735 2009-04-03 03:35:35
## 3540     3.5 1238729834 2009-04-03 03:37:14
## 3541     4.5 1224043037 2008-10-15 03:57:17
## 3542     1.0 1238729802 2009-04-03 03:36:42
## 3543     2.0 1238729739 2009-04-03 03:35:39
## 3544     3.5 1238729826 2009-04-03 03:37:06
## 3545     1.0 1238729854 2009-04-03 03:37:34
## 3546     4.0 1238729779 2009-04-03 03:36:19
## 3547     4.5 1238729750 2009-04-03 03:35:50
## 3548     3.0 1238729744 2009-04-03 03:35:44
## 3549     5.0 1238731010 2009-04-03 03:56:50
## 3550     3.0 1238729842 2009-04-03 03:37:22
## 3551     2.5 1224043054 2008-10-15 03:57:34
## 3552     3.5 1238729785 2009-04-03 03:36:25
## 3553     2.0 1238729764 2009-04-03 03:36:04
## 3554     4.0 1238729759 2009-04-03 03:35:59
## 3555     0.5 1238729741 2009-04-03 03:35:41
## 3556     4.0 1238729816 2009-04-03 03:36:56
## 3557     4.0 1238729844 2009-04-03 03:37:24
## 3558     2.0 1238729789 2009-04-03 03:36:29
## 3559     4.0 1224042769 2008-10-15 03:52:49
## 3560     5.0 1224043166 2008-10-15 03:59:26
## 3561     3.5 1238729831 2009-04-03 03:37:11
## 3562     5.0 1224043160 2008-10-15 03:59:20
## 3563     4.0 1224043081 2008-10-15 03:58:01
## 3564     5.0 1238729772 2009-04-03 03:36:12
## 3565     2.0 1238729822 2009-04-03 03:37:02
## 3566     3.0 1224043134 2008-10-15 03:58:54
## 3567     3.5 1238729311 2009-04-03 03:28:31
## 3568     2.0 1224043067 2008-10-15 03:57:47
## 3569     3.0 1224042752 2008-10-15 03:52:32
## 3570     1.5 1238729863 2009-04-03 03:37:43
## 3571     4.0 1224042813 2008-10-15 03:53:33
## 3572     4.5 1224043119 2008-10-15 03:58:39
## 3573     5.0 1224043170 2008-10-15 03:59:30
## 3574     2.0 1238729793 2009-04-03 03:36:33
## 3575     4.5 1238729807 2009-04-03 03:36:47
## 3576     4.5 1238729342 2009-04-03 03:29:02
## 3577     4.0 1224043156 2008-10-15 03:59:16
## 3578     3.0 1238729777 2009-04-03 03:36:17
## 3579     1.0 1238730775 2009-04-03 03:52:55
## 3580     4.0 1238730754 2009-04-03 03:52:34
## 3581     3.5 1238729811 2009-04-03 03:36:51
## 3582     3.5 1238730771 2009-04-03 03:52:51
## 3583     3.0 1224042777 2008-10-15 03:52:57
## 3584     2.5 1224042802 2008-10-15 03:53:22
## 3585     5.0 1238729865 2009-04-03 03:37:45
## 3586     5.0 1224042771 2008-10-15 03:52:51
## 3587     4.0 1224042740 2008-10-15 03:52:20
## 3588     4.0 1224042737 2008-10-15 03:52:17
## 3589     3.0 1224042811 2008-10-15 03:53:31
## 3590     4.5 1224042788 2008-10-15 03:53:08
## 3591     4.5 1238729799 2009-04-03 03:36:39
## 3592     5.0 1238731025 2009-04-03 03:57:05
## 3593     3.5 1238729839 2009-04-03 03:37:19
## 3594     0.5 1238731034 2009-04-03 03:57:14
## 3595     0.5 1224043052 2008-10-15 03:57:32
## 3596     0.5 1224042755 2008-10-15 03:52:35
## 3597     0.5 1238729331 2009-04-03 03:28:51
## 3598     4.5 1238731020 2009-04-03 03:57:00
## 3599     2.0 1224042780 2008-10-15 03:53:00
## 3600     2.0 1224042827 2008-10-15 03:53:47
## 3601     4.0 1224043029 2008-10-15 03:57:09
## 3602     4.0 1238729247 2009-04-03 03:27:27
## 3603     3.5 1224043145 2008-10-15 03:59:05
## 3604     4.0 1238729389 2009-04-03 03:29:49
## 3605     4.5 1224043219 2008-10-15 04:00:19
## 3606     4.5 1238730960 2009-04-03 03:56:00
## 3607     4.0 1224043284 2008-10-15 04:01:24
## 3608     4.0 1224043266 2008-10-15 04:01:06
## 3609     4.0 1224043033 2008-10-15 03:57:13
## 3610     5.0 1224043242 2008-10-15 04:00:42
## 3611     1.0 1224043213 2008-10-15 04:00:13
## 3612     4.0 1224043180 2008-10-15 03:59:40
## 3613     3.5 1224043257 2008-10-15 04:00:57
## 3614     1.5 1224043185 2008-10-15 03:59:45
## 3615     2.5 1224043294 2008-10-15 04:01:34
## 3616     4.0 1238729255 2009-04-03 03:27:35
## 3617     5.0 1224043273 2008-10-15 04:01:13
## 3618     4.0 1224043282 2008-10-15 04:01:22
## 3619     4.5 1238730751 2009-04-03 03:52:31
## 3620     1.0 1238729405 2009-04-03 03:30:05
## 3621     5.0 1224043232 2008-10-15 04:00:32
## 3622     4.0 1238730925 2009-04-03 03:55:25
## 3623     4.0 1224043238 2008-10-15 04:00:38
## 3624     3.5 1224043018 2008-10-15 03:56:58
## 3625     4.0 1238731039 2009-04-03 03:57:19
## 3626     5.0 1238731016 2009-04-03 03:56:56
## 3627     3.0  853846478 1997-01-21 11:34:38
## 3628     3.0  853846669 1997-01-21 11:37:49
## 3629     4.0  853157476 1997-01-13 12:11:16
## 3630     4.0  853846442 1997-01-21 11:34:02
## 3631     3.0  853157544 1997-01-13 12:12:24
## 3632     3.0  853846547 1997-01-21 11:35:47
## 3633     4.0  853846400 1997-01-21 11:33:20
## 3634     3.0  853157476 1997-01-13 12:11:16
## 3635     4.0  853157544 1997-01-13 12:12:24
## 3636     4.0  853846547 1997-01-21 11:35:47
## 3637     2.0  853846288 1997-01-21 11:31:28
## 3638     3.0  853847536 1997-01-21 11:52:16
## 3639     2.0  853846511 1997-01-21 11:35:11
## 3640     3.0  853846669 1997-01-21 11:37:49
## 3641     3.0  853846207 1997-01-21 11:30:07
## 3642     3.0  853847723 1997-01-21 11:55:23
## 3643     3.0  853857742 1997-01-21 14:42:22
## 3644     3.0  853846400 1997-01-21 11:33:20
## 3645     3.0  853847574 1997-01-21 11:52:54
## 3646     3.0  853846400 1997-01-21 11:33:20
## 3647     3.0  853846752 1997-01-21 11:39:12
## 3648     3.0  853847612 1997-01-21 11:53:32
## 3649     4.0  853846443 1997-01-21 11:34:03
## 3650     4.0  853846511 1997-01-21 11:35:11
## 3651     3.0  853852608 1997-01-21 13:16:48
## 3652     3.0  853846783 1997-01-21 11:39:43
## 3653     3.0  853856221 1997-01-21 14:17:01
## 3654     3.0  853846579 1997-01-21 11:36:19
## 3655     3.0  853846443 1997-01-21 11:34:03
## 3656     3.0  853846873 1997-01-21 11:41:13
## 3657     3.0  853846511 1997-01-21 11:35:11
## 3658     3.0  853847574 1997-01-21 11:52:54
## 3659     4.0  853846612 1997-01-21 11:36:52
## 3660     5.0  853846400 1997-01-21 11:33:20
## 3661     3.0  853846813 1997-01-21 11:40:13
## 3662     3.0  853847688 1997-01-21 11:54:48
## 3663     3.0  853846443 1997-01-21 11:34:03
## 3664     3.0  853846547 1997-01-21 11:35:47
## 3665     3.0  853847813 1997-01-21 11:56:53
## 3666     5.0  853846400 1997-01-21 11:33:20
## 3667     4.0  853846443 1997-01-21 11:34:03
## 3668     3.0  853846639 1997-01-21 11:37:19
## 3669     4.0  853846400 1997-01-21 11:33:20
## 3670     3.0  853846612 1997-01-21 11:36:52
## 3671     3.0  853846511 1997-01-21 11:35:11
## 3672     3.0  853846723 1997-01-21 11:38:43
## 3673     2.0  853846511 1997-01-21 11:35:11
## 3674     3.0  853157476 1997-01-13 12:11:16
## 3675     3.0  853157544 1997-01-13 12:12:24
## 3676     5.0  853848506 1997-01-21 12:08:26
## 3677     3.0  853157476 1997-01-13 12:11:16
## 3678     3.0  853845946 1997-01-21 11:25:46
## 3679     4.0  853850728 1997-01-21 12:45:28
## 3680     3.0  853850791 1997-01-21 12:46:31
## 3681     3.0  853850699 1997-01-21 12:44:59
## 3682     3.0  853850791 1997-01-21 12:46:31
## 3683     5.0  853848342 1997-01-21 12:05:42
## 3684     4.0  853850728 1997-01-21 12:45:28
## 3685     5.0  853850835 1997-01-21 12:47:15
## 3686     4.0  853852058 1997-01-21 13:07:38
## 3687     4.0  853850874 1997-01-21 12:47:54
## 3688     4.0  853851052 1997-01-21 12:50:52
## 3689     4.0  853849142 1997-01-21 12:19:02
## 3690     5.0  853850699 1997-01-21 12:44:59
## 3691     4.0  853848314 1997-01-21 12:05:14
## 3692     3.0  853851841 1997-01-21 13:04:01
## 3693     3.0  853851861 1997-01-21 13:04:21
## 3694     3.0  853851892 1997-01-21 13:04:52
## 3695     5.0  853850752 1997-01-21 12:45:52
## 3696     4.0  853850874 1997-01-21 12:47:54
## 3697     5.0  853850728 1997-01-21 12:45:28
## 3698     3.0  853849003 1997-01-21 12:16:43
## 3699     3.0  853848034 1997-01-21 12:00:34
## 3700     3.0  853851203 1997-01-21 12:53:23
## 3701     3.0  853848062 1997-01-21 12:01:02
## 3702     3.0  853852140 1997-01-21 13:09:00
## 3703     3.0  853848342 1997-01-21 12:05:42
## 3704     4.0  853848002 1997-01-21 12:00:02
## 3705     4.0  853846443 1997-01-21 11:34:03
## 3706     3.0  853846752 1997-01-21 11:39:12
## 3707     3.0  853846723 1997-01-21 11:38:43
## 3708     2.0  853853701 1997-01-21 13:35:01
## 3709     3.0  853847910 1997-01-21 11:58:30
## 3710     4.0  853848134 1997-01-21 12:02:14
## 3711     3.0  853853956 1997-01-21 13:39:16
## 3712     3.0  853847780 1997-01-21 11:56:20
## 3713     3.0  853847910 1997-01-21 11:58:30
## 3714     4.0  853852079 1997-01-21 13:07:59
## 3715     4.0  853851156 1997-01-21 12:52:36
## 3716     3.0  853851608 1997-01-21 13:00:08
## 3717     3.0  853848738 1997-01-21 12:12:18
## 3718     3.0  853852316 1997-01-21 13:11:56
## 3719     5.0  853847612 1997-01-21 11:53:32
## 3720     5.0  853846639 1997-01-21 11:37:19
## 3721     5.0  853852208 1997-01-21 13:10:08
## 3722     4.0  853851089 1997-01-21 12:51:29
## 3723     3.0  853850791 1997-01-21 12:46:31
## 3724     4.0  853847910 1997-01-21 11:58:30
## 3725     5.0  853847813 1997-01-21 11:56:53
## 3726     4.0  853848156 1997-01-21 12:02:36
## 3727     4.0  853848507 1997-01-21 12:08:27
## 3728     4.0  853850791 1997-01-21 12:46:31
## 3729     5.0  853851732 1997-01-21 13:02:12
## 3730     4.0  853851052 1997-01-21 12:50:52
## 3731     4.0  853848134 1997-01-21 12:02:14
## 3732     4.0  853849211 1997-01-21 12:20:11
## 3733     5.0  853851024 1997-01-21 12:50:24
## 3734     3.0  853850905 1997-01-21 12:48:25
## 3735     3.0  853851222 1997-01-21 12:53:42
## 3736     5.0  853850791 1997-01-21 12:46:31
## 3737     5.0  853850728 1997-01-21 12:45:28
## 3738     4.0  853851024 1997-01-21 12:50:24
## 3739     3.0  853850752 1997-01-21 12:45:52
## 3740     3.0  853850874 1997-01-21 12:47:54
## 3741     5.0  853848082 1997-01-21 12:01:22
## 3742     4.0  853852020 1997-01-21 13:07:00
## 3743     4.0  853850728 1997-01-21 12:45:28
## 3744     3.0  853850835 1997-01-21 12:47:15
## 3745     3.0  853850835 1997-01-21 12:47:15
## 3746     5.0  853850835 1997-01-21 12:47:15
## 3747     3.0  853850968 1997-01-21 12:49:28
## 3748     4.0  853851113 1997-01-21 12:51:53
## 3749     4.0  853851203 1997-01-21 12:53:23
## 3750     3.0  853851052 1997-01-21 12:50:52
## 3751     3.0  853850874 1997-01-21 12:47:54
## 3752     4.0  853849003 1997-01-21 12:16:43
## 3753     2.0  853848737 1997-01-21 12:12:17
## 3754     4.0  853850997 1997-01-21 12:49:57
## 3755     3.0  853850933 1997-01-21 12:48:53
## 3756     4.0  853850874 1997-01-21 12:47:54
## 3757     5.0  853850791 1997-01-21 12:46:31
## 3758     4.0  853850835 1997-01-21 12:47:15
## 3759     4.0  853848558 1997-01-21 12:09:18
## 3760     4.0  853851174 1997-01-21 12:52:54
## 3761     3.0  853852020 1997-01-21 13:07:00
## 3762     4.0  853851089 1997-01-21 12:51:29
## 3763     3.0  853851203 1997-01-21 12:53:23
## 3764     3.0  853852097 1997-01-21 13:08:17
## 3765     3.0  853850968 1997-01-21 12:49:28
## 3766     4.0  853851113 1997-01-21 12:51:53
## 3767     5.0  853850997 1997-01-21 12:49:57
## 3768     3.0  853853496 1997-01-21 13:31:36
## 3769     4.0  853851156 1997-01-21 12:52:36
## 3770     3.0  853853725 1997-01-21 13:35:25
## 3771     3.0  853852524 1997-01-21 13:15:24
## 3772     3.0  853852058 1997-01-21 13:07:38
## 3773     3.0  853853473 1997-01-21 13:31:13
## 3774     3.0  853852140 1997-01-21 13:09:00
## 3775     3.0  853851257 1997-01-21 12:54:17
## 3776     3.0  853852263 1997-01-21 13:11:03
## 3777     3.0  853851257 1997-01-21 12:54:17
## 3778     3.0  853853545 1997-01-21 13:32:25
## 3779     4.0  853849676 1997-01-21 12:27:56
## 3780     3.0  853851841 1997-01-21 13:04:01
## 3781     3.0  853850905 1997-01-21 12:48:25
## 3782     3.0  853852501 1997-01-21 13:15:01
## 3783     3.0  853850968 1997-01-21 12:49:28
## 3784     3.0  853854148 1997-01-21 13:42:28
## 3785     4.0  853851089 1997-01-21 12:51:29
## 3786     3.0  853853593 1997-01-21 13:33:13
## 3787     3.0  854522908 1997-01-29 07:28:28
## 3788     3.0  853850933 1997-01-21 12:48:53
## 3789     4.5 1131662086 2005-11-10 22:34:46
## 3790     2.0 1131662481 2005-11-10 22:41:21
## 3791     3.5 1131662466 2005-11-10 22:41:06
## 3792     2.0 1131661907 2005-11-10 22:31:47
## 3793     3.0 1131661969 2005-11-10 22:32:49
## 3794     3.0 1131662452 2005-11-10 22:40:52
## 3795     1.0 1131661890 2005-11-10 22:31:30
## 3796     4.5 1131664404 2005-11-10 23:13:24
## 3797     1.5 1131662930 2005-11-10 22:48:50
## 3798     2.0 1131664520 2005-11-10 23:15:20
## 3799     2.5 1131662440 2005-11-10 22:40:40
## 3800     2.0 1131662423 2005-11-10 22:40:23
## 3801     4.5 1131662653 2005-11-10 22:44:13
## 3802     4.0 1131663354 2005-11-10 22:55:54
## 3803     2.0 1131663069 2005-11-10 22:51:09
## 3804     5.0 1131664320 2005-11-10 23:12:00
## 3805     3.0 1131662435 2005-11-10 22:40:35
## 3806     2.0 1131753358 2005-11-11 23:55:58
## 3807     3.5 1131663409 2005-11-10 22:56:49
## 3808     2.5 1131662387 2005-11-10 22:39:47
## 3809     4.5 1131662090 2005-11-10 22:34:50
## 3810     4.5 1131662100 2005-11-10 22:35:00
## 3811     2.5 1131753373 2005-11-11 23:56:13
## 3812     4.5 1131664363 2005-11-10 23:12:43
## 3813     5.0 1131663387 2005-11-10 22:56:27
## 3814     3.0 1131661923 2005-11-10 22:32:03
## 3815     4.0 1131663369 2005-11-10 22:56:09
## 3816     1.0 1131664533 2005-11-10 23:15:33
## 3817     2.0 1131662084 2005-11-10 22:34:44
## 3818     5.0 1131663268 2005-11-10 22:54:28
## 3819     4.5 1131663223 2005-11-10 22:53:43
## 3820     4.5 1131723291 2005-11-11 15:34:51
## 3821     5.0 1131663139 2005-11-10 22:52:19
## 3822     1.5 1131662400 2005-11-10 22:40:00
## 3823     2.5 1131662414 2005-11-10 22:40:14
## 3824     4.0 1131662354 2005-11-10 22:39:14
## 3825     3.5 1131662357 2005-11-10 22:39:17
## 3826     4.0 1131662364 2005-11-10 22:39:24
## 3827     2.5 1131723086 2005-11-11 15:31:26
## 3828     2.0 1131662346 2005-11-10 22:39:06
## 3829     2.0 1131661960 2005-11-10 22:32:40
## 3830     4.5 1131663322 2005-11-10 22:55:22
## 3831     5.0 1131663397 2005-11-10 22:56:37
## 3832     5.0 1131663177 2005-11-10 22:52:57
## 3833     2.5 1131662370 2005-11-10 22:39:30
## 3834     3.5 1131662293 2005-11-10 22:38:13
## 3835     5.0 1131662093 2005-11-10 22:34:53
## 3836     3.5 1131663188 2005-11-10 22:53:08
## 3837     4.0 1131753179 2005-11-11 23:52:59
## 3838     4.0 1131662287 2005-11-10 22:38:07
## 3839     4.0 1131663479 2005-11-10 22:57:59
## 3840     3.0 1131753381 2005-11-11 23:56:21
## 3841     4.0 1131663366 2005-11-10 22:56:06
## 3842     5.0 1131663232 2005-11-10 22:53:52
## 3843     3.5 1131661937 2005-11-10 22:32:17
## 3844     4.5 1131663305 2005-11-10 22:55:05
## 3845     4.0 1131662309 2005-11-10 22:38:29
## 3846     2.0 1131662302 2005-11-10 22:38:22
## 3847     4.0 1131662635 2005-11-10 22:43:55
## 3848     3.5 1131662312 2005-11-10 22:38:32
## 3849     4.0 1131662317 2005-11-10 22:38:37
## 3850     4.0 1131661918 2005-11-10 22:31:58
## 3851     4.0 1131662328 2005-11-10 22:38:48
## 3852     4.0 1131662323 2005-11-10 22:38:43
## 3853     3.5 1131662334 2005-11-10 22:38:54
## 3854     4.5 1131663284 2005-11-10 22:54:44
## 3855     3.0 1131663044 2005-11-10 22:50:44
## 3856     4.0 1131664393 2005-11-10 23:13:13
## 3857     2.5 1131662271 2005-11-10 22:37:51
## 3858     2.0 1131663328 2005-11-10 22:55:28
## 3859     2.0 1131662659 2005-11-10 22:44:19
## 3860     2.5 1131662268 2005-11-10 22:37:48
## 3861     2.5 1131663443 2005-11-10 22:57:23
## 3862     2.0 1131664773 2005-11-10 23:19:33
## 3863     3.0 1131662252 2005-11-10 22:37:32
## 3864     3.5 1131662000 2005-11-10 22:33:20
## 3865     2.5 1131723166 2005-11-11 15:32:46
## 3866     4.0 1131663219 2005-11-10 22:53:39
## 3867     2.0 1131661994 2005-11-10 22:33:14
## 3868     4.5 1131663032 2005-11-10 22:50:32
## 3869     3.0 1131663020 2005-11-10 22:50:20
## 3870     2.5 1131664489 2005-11-10 23:14:49
## 3871     2.5 1131662243 2005-11-10 22:37:23
## 3872     3.0 1131662014 2005-11-10 22:33:34
## 3873     2.5 1131661978 2005-11-10 22:32:58
## 3874     3.5 1131723076 2005-11-11 15:31:16
## 3875     3.5 1131662226 2005-11-10 22:37:06
## 3876     2.5 1131661945 2005-11-10 22:32:25
## 3877     3.5 1131662232 2005-11-10 22:37:12
## 3878     4.0 1131662911 2005-11-10 22:48:31
## 3879     3.5 1131663357 2005-11-10 22:55:57
## 3880     4.0 1131664741 2005-11-10 23:19:01
## 3881     4.5 1131663683 2005-11-10 23:01:23
## 3882     3.5 1131664754 2005-11-10 23:19:14
## 3883     2.5 1131664719 2005-11-10 23:18:39
## 3884     3.0 1131723151 2005-11-11 15:32:31
## 3885     2.0 1131663013 2005-11-10 22:50:13
## 3886     4.0 1131664733 2005-11-10 23:18:53
## 3887     1.5 1131663552 2005-11-10 22:59:12
## 3888     4.5 1131664217 2005-11-10 23:10:17
## 3889     4.5 1131662900 2005-11-10 22:48:20
## 3890     2.0 1131723146 2005-11-11 15:32:26
## 3891     2.5 1131664710 2005-11-10 23:18:30
## 3892     2.5 1131723065 2005-11-11 15:31:05
## 3893     2.0 1131661911 2005-11-10 22:31:51
## 3894     2.0 1131664699 2005-11-10 23:18:19
## 3895     2.5 1131662202 2005-11-10 22:36:42
## 3896     2.0 1131662216 2005-11-10 22:36:56
## 3897     2.0 1131662209 2005-11-10 22:36:49
## 3898     2.0 1131662220 2005-11-10 22:37:00
## 3899     4.5 1131664480 2005-11-10 23:14:40
## 3900     3.0 1131662152 2005-11-10 22:35:52
## 3901     3.0 1131662710 2005-11-10 22:45:10
## 3902     2.0 1131663006 2005-11-10 22:50:06
## 3903     4.0 1131663393 2005-11-10 22:56:33
## 3904     1.5 1131662185 2005-11-10 22:36:25
## 3905     4.0 1131662179 2005-11-10 22:36:19
## 3906     2.0 1131664676 2005-11-10 23:17:56
## 3907     1.0 1131664687 2005-11-10 23:18:07
## 3908     4.0 1131663892 2005-11-10 23:04:52
## 3909     2.0 1131662174 2005-11-10 22:36:14
## 3910     4.0 1131662150 2005-11-10 22:35:50
## 3911     3.0 1131662717 2005-11-10 22:45:17
## 3912     4.0 1131664474 2005-11-10 23:14:34
## 3913     2.5 1131663311 2005-11-10 22:55:11
## 3914     5.0 1131662155 2005-11-10 22:35:55
## 3915     3.5 1131723124 2005-11-11 15:32:04
## 3916     2.5 1131662169 2005-11-10 22:36:09
## 3917     2.5 1131662162 2005-11-10 22:36:02
## 3918     4.0 1131664330 2005-11-10 23:12:10
## 3919     1.5 1131662194 2005-11-10 22:36:34
## 3920     2.0 1131723135 2005-11-11 15:32:15
## 3921     3.0 1131662989 2005-11-10 22:49:49
## 3922     2.5 1131662687 2005-11-10 22:44:47
## 3923     4.5 1131662678 2005-11-10 22:44:38
## 3924     1.5 1131662190 2005-11-10 22:36:30
## 3925     3.0 1131664651 2005-11-10 23:17:31
## 3926     4.0 1131753186 2005-11-11 23:53:06
## 3927     4.5 1131662694 2005-11-10 22:44:54
## 3928     3.0 1131663515 2005-11-10 22:58:35
## 3929     2.5 1131661897 2005-11-10 22:31:37
## 3930     2.5 1131664627 2005-11-10 23:17:07
## 3931     2.0 1131662894 2005-11-10 22:48:14
## 3932     4.5 1131663506 2005-11-10 22:58:26
## 3933     2.0 1131662700 2005-11-10 22:45:00
## 3934     2.0 1131723113 2005-11-11 15:31:53
## 3935     4.0 1131664598 2005-11-10 23:16:38
## 3936     2.5 1131753363 2005-11-11 23:56:03
## 3937     3.0 1131663359 2005-11-10 22:55:59
## 3938     2.0 1131662121 2005-11-10 22:35:21
## 3939     2.0 1131664612 2005-11-10 23:16:52
## 3940     4.5 1131663886 2005-11-10 23:04:46
## 3941     2.0 1131664618 2005-11-10 23:16:58
## 3942     2.0 1131723071 2005-11-11 15:31:11
## 3943     4.0 1131662565 2005-11-10 22:42:45
## 3944     5.0 1131662110 2005-11-10 22:35:10
## 3945     2.0 1131664374 2005-11-10 23:12:54
## 3946     3.5 1131663472 2005-11-10 22:57:52
## 3947     4.5 1131664226 2005-11-10 23:10:26
## 3948     3.5 1131664587 2005-11-10 23:16:27
## 3949     3.5 1131663565 2005-11-10 22:59:25
## 3950     2.5 1131663696 2005-11-10 23:01:36
## 3951     4.0 1131662966 2005-11-10 22:49:26
## 3952     2.5 1131663383 2005-11-10 22:56:23
## 3953     3.0 1131663420 2005-11-10 22:57:00
## 3954     4.0 1131661901 2005-11-10 22:31:41
## 3955     3.5 1131662103 2005-11-10 22:35:03
## 3956     2.5 1131662107 2005-11-10 22:35:07
## 3957     4.5 1131662960 2005-11-10 22:49:20
## 3958     5.0 1131662640 2005-11-10 22:44:00
## 3959     2.5 1131662670 2005-11-10 22:44:30
## 3960     4.0 1131663341 2005-11-10 22:55:41
## 3961     3.0 1131662525 2005-11-10 22:42:05
## 3962     2.5 1131664572 2005-11-10 23:16:12
## 3963     5.0 1131662096 2005-11-10 22:34:56
## 3964     2.5 1131664567 2005-11-10 23:16:07
## 3965     4.5 1131662075 2005-11-10 22:34:35
## 3966     3.5 1131662534 2005-11-10 22:42:14
## 3967     2.5 1131663373 2005-11-10 22:56:13
## 3968     4.5 1131663277 2005-11-10 22:54:37
## 3969     4.0 1131663330 2005-11-10 22:55:30
## 3970     3.5 1131663263 2005-11-10 22:54:23
## 3971     3.5 1131662504 2005-11-10 22:41:44
## 3972     4.0 1131663118 2005-11-10 22:51:58
## 3973     4.5 1131662637 2005-11-10 22:43:57
## 3974     3.5 1131663453 2005-11-10 22:57:33
## 3975     4.5 1131662846 2005-11-10 22:47:26
## 3976     4.5 1131663238 2005-11-10 22:53:58
## 3977     2.5 1131663156 2005-11-10 22:52:36
## 3978     2.0 1131662491 2005-11-10 22:41:31
## 3979     3.0 1131662517 2005-11-10 22:41:57
## 3980     4.0 1131663881 2005-11-10 23:04:41
## 3981     2.5 1131662684 2005-11-10 22:44:44
## 3982     2.5 1131723215 2005-11-11 15:33:35
## 3983     4.0 1131663918 2005-11-10 23:05:18
## 3984     2.0 1131664302 2005-11-10 23:11:42
## 3985     2.0 1131663158 2005-11-10 22:52:38
## 3986     4.0 1131663528 2005-11-10 22:58:48
## 3987     4.0 1131663431 2005-11-10 22:57:11
## 3988     4.0 1131662007 2005-11-10 22:33:27
## 3989     3.5 1131663298 2005-11-10 22:54:58
## 3990     3.0 1131662518 2005-11-10 22:41:58
## 3991     4.5 1131663403 2005-11-10 22:56:43
## 3992     3.0 1131663081 2005-11-10 22:51:21
## 3993     4.0 1131664239 2005-11-10 23:10:39
## 3994     3.5 1131662473 2005-11-10 22:41:13
## 3995     3.5 1131662938 2005-11-10 22:48:58
## 3996     4.5 1131663248 2005-11-10 22:54:08
## 3997     3.0 1131663440 2005-11-10 22:57:20
## 3998     3.0 1131663094 2005-11-10 22:51:34
## 3999     4.0 1131663467 2005-11-10 22:57:47
## 4000     4.5 1131663282 2005-11-10 22:54:42
## 4001     3.5 1131663378 2005-11-10 22:56:18
## 4002     4.0 1131663273 2005-11-10 22:54:33
## 4003     4.5 1131753070 2005-11-11 23:51:10
## 4004     4.0 1131663089 2005-11-10 22:51:29
## 4005     4.5 1131663293 2005-11-10 22:54:53
## 4006     2.5 1131663228 2005-11-10 22:53:48
## 4007     3.0 1131662462 2005-11-10 22:41:02
## 4008     5.0 1131663664 2005-11-10 23:01:04
## 4009     3.0 1148729853 2006-05-27 11:37:33
## 4010     3.5 1148730128 2006-05-27 11:42:08
## 4011     3.5 1166728170 2006-12-21 19:09:30
## 4012     4.0 1148672550 2006-05-26 19:42:30
## 4013     2.0 1148669114 2006-05-26 18:45:14
## 4014     1.5 1148720884 2006-05-27 09:08:04
## 4015     3.5 1148673467 2006-05-26 19:57:47
## 4016     4.0 1148730400 2006-05-27 11:46:40
## 4017     3.5 1166728173 2006-12-21 19:09:33
## 4018     4.5 1148669590 2006-05-26 18:53:10
## 4019     4.0 1148670466 2006-05-26 19:07:46
## 4020     3.5 1148672099 2006-05-26 19:34:59
## 4021     4.0 1166728220 2006-12-21 19:10:20
## 4022     4.0 1148669357 2006-05-26 18:49:17
## 4023     3.5 1148730116 2006-05-27 11:41:56
## 4024     3.5 1148669588 2006-05-26 18:53:08
## 4025     5.0 1148671365 2006-05-26 19:22:45
## 4026     3.5 1148672933 2006-05-26 19:48:53
## 4027     3.0 1148720873 2006-05-27 09:07:53
## 4028     4.0 1148672842 2006-05-26 19:47:22
## 4029     2.5 1148386188 2006-05-23 12:09:48
## 4030     3.5 1148778581 2006-05-28 01:09:41
## 4031     4.0 1148729797 2006-05-27 11:36:37
## 4032     4.0 1148729698 2006-05-27 11:34:58
## 4033     4.5 1148386155 2006-05-23 12:09:15
## 4034     4.5 1148729570 2006-05-27 11:32:50
## 4035     4.0 1148673304 2006-05-26 19:55:04
## 4036     4.0 1148669102 2006-05-26 18:45:02
## 4037     3.5 1148668973 2006-05-26 18:42:53
## 4038     4.5 1148668970 2006-05-26 18:42:50
## 4039     4.0 1148728957 2006-05-27 11:22:37
## 4040     3.5 1148673465 2006-05-26 19:57:45
## 4041     2.5 1148720795 2006-05-27 09:06:35
## 4042     4.0 1148672319 2006-05-26 19:38:39
## 4043     4.5 1148671517 2006-05-26 19:25:17
## 4044     4.0 1149868544 2006-06-09 15:55:44
## 4045     3.5 1148777951 2006-05-28 00:59:11
## 4046     2.5 1148777966 2006-05-28 00:59:26
## 4047     3.5 1148668967 2006-05-26 18:42:47
## 4048     5.0 1148668964 2006-05-26 18:42:44
## 4049     4.5 1148669351 2006-05-26 18:49:11
## 4050     4.5 1148672736 2006-05-26 19:45:36
## 4051     2.0 1148668961 2006-05-26 18:42:41
## 4052     4.0 1148673085 2006-05-26 19:51:25
## 4053     4.5 1148728785 2006-05-27 11:19:45
## 4054     4.0 1148673420 2006-05-26 19:57:00
## 4055     3.5 1148669891 2006-05-26 18:58:11
## 4056     3.5 1148730048 2006-05-27 11:40:48
## 4057     3.5 1148720861 2006-05-27 09:07:41
## 4058     3.5 1148673418 2006-05-26 19:56:58
## 4059     3.5 1148669887 2006-05-26 18:58:07
## 4060     3.5 1148730134 2006-05-27 11:42:14
## 4061     3.5 1148729018 2006-05-27 11:23:38
## 4062     3.0 1148720907 2006-05-27 09:08:27
## 4063     4.5 1148669346 2006-05-26 18:49:06
## 4064     4.5 1148669881 2006-05-26 18:58:01
## 4065     4.5 1148669092 2006-05-26 18:44:52
## 4066     4.5 1148672198 2006-05-26 19:36:38
## 4067     3.5 1148729022 2006-05-27 11:23:42
## 4068     3.5 1148720627 2006-05-27 09:03:47
## 4069     4.5 1166036040 2006-12-13 18:54:00
## 4070     2.5 1148729848 2006-05-27 11:37:28
## 4071     3.0 1148668958 2006-05-26 18:42:38
## 4072     3.5 1166728142 2006-12-21 19:09:02
## 4073     4.0 1166728178 2006-12-21 19:09:38
## 4074     3.5 1149868397 2006-06-09 15:53:17
## 4075     2.5 1148728787 2006-05-27 11:19:47
## 4076     3.5 1148670328 2006-05-26 19:05:28
## 4077     4.5 1148671818 2006-05-26 19:30:18
## 4078     4.5 1148672375 2006-05-26 19:39:35
## 4079     3.0 1149868548 2006-06-09 15:55:48
## 4080     4.0 1148669338 2006-05-26 18:48:58
## 4081     4.5 1148669574 2006-05-26 18:52:54
## 4082     4.5 1148672950 2006-05-26 19:49:10
## 4083     2.5 1148669090 2006-05-26 18:44:50
## 4084     4.5 1148669877 2006-05-26 18:57:57
## 4085     4.5 1166035850 2006-12-13 18:50:50
## 4086     4.5 1148669873 2006-05-26 18:57:53
## 4087     4.5 1148670499 2006-05-26 19:08:19
## 4088     4.5 1148669858 2006-05-26 18:57:38
## 4089     3.5 1148673415 2006-05-26 19:56:55
## 4090     2.0 1148669865 2006-05-26 18:57:45
## 4091     3.5 1148669863 2006-05-26 18:57:43
## 4092     3.5 1148669087 2006-05-26 18:44:47
## 4093     4.0 1148729708 2006-05-27 11:35:08
## 4094     5.0 1148670263 2006-05-26 19:04:23
## 4095     4.5 1148671970 2006-05-26 19:32:50
## 4096     4.5 1148671949 2006-05-26 19:32:29
## 4097     2.5 1148728764 2006-05-27 11:19:24
## 4098     3.5 1148671779 2006-05-26 19:29:39
## 4099     4.5 1148729610 2006-05-27 11:33:30
## 4100     4.0 1148728730 2006-05-27 11:18:50
## 4101     5.0 1148669850 2006-05-26 18:57:30
## 4102     3.5 1148730009 2006-05-27 11:40:09
## 4103     4.5 1148777884 2006-05-28 00:58:04
## 4104     4.0 1148671953 2006-05-26 19:32:33
## 4105     5.0 1148669852 2006-05-26 18:57:32
## 4106     4.0 1148670548 2006-05-26 19:09:08
## 4107     3.0 1148673452 2006-05-26 19:57:32
## 4108     3.5 1148778793 2006-05-28 01:13:13
## 4109     4.5 1148671777 2006-05-26 19:29:37
## 4110     5.0 1148669082 2006-05-26 18:44:42
## 4111     3.5 1148729982 2006-05-27 11:39:42
## 4112     4.0 1148729661 2006-05-27 11:34:21
## 4113     4.5 1148671884 2006-05-26 19:31:24
## 4114     4.0 1148671832 2006-05-26 19:30:32
## 4115     4.5 1148672493 2006-05-26 19:41:33
## 4116     3.5 1148671931 2006-05-26 19:32:11
## 4117     4.0 1148669571 2006-05-26 18:52:51
## 4118     3.5 1148721097 2006-05-27 09:11:37
## 4119     3.5 1148721092 2006-05-27 09:11:32
## 4120     3.5 1148728814 2006-05-27 11:20:14
## 4121     4.5 1148670154 2006-05-26 19:02:34
## 4122     5.0 1148669329 2006-05-26 18:48:49
## 4123     3.5 1148669327 2006-05-26 18:48:47
## 4124     3.5 1148729987 2006-05-27 11:39:47
## 4125     3.5 1148669080 2006-05-26 18:44:40
## 4126     3.5 1148721086 2006-05-27 09:11:26
## 4127     2.5 1148728784 2006-05-27 11:19:44
## 4128     3.0 1148668956 2006-05-26 18:42:36
## 4129     4.0 1148672085 2006-05-26 19:34:45
## 4130     4.5 1148672402 2006-05-26 19:40:02
## 4131     3.5 1148673456 2006-05-26 19:57:36
## 4132     4.0 1148669318 2006-05-26 18:48:38
## 4133     4.0 1148778808 2006-05-28 01:13:28
## 4134     4.0 1166728186 2006-12-21 19:09:46
## 4135     4.0 1148729677 2006-05-27 11:34:37
## 4136     3.5 1148671525 2006-05-26 19:25:25
## 4137     4.0 1148669833 2006-05-26 18:57:13
## 4138     2.5 1148669302 2006-05-26 18:48:22
## 4139     5.0 1148671542 2006-05-26 19:25:42
## 4140     3.0 1148673102 2006-05-26 19:51:42
## 4141     4.5 1148721090 2006-05-27 09:11:30
## 4142     4.0 1148721053 2006-05-27 09:10:53
## 4143     4.0 1148672286 2006-05-26 19:38:06
## 4144     5.0 1148670101 2006-05-26 19:01:41
## 4145     3.5 1148669299 2006-05-26 18:48:19
## 4146     3.0 1148670388 2006-05-26 19:06:28
## 4147     4.0 1148671770 2006-05-26 19:29:30
## 4148     4.0 1148728807 2006-05-27 11:20:07
## 4149     3.0 1149868223 2006-06-09 15:50:23
## 4150     4.0 1148669075 2006-05-26 18:44:35
## 4151     4.5 1148670482 2006-05-26 19:08:02
## 4152     4.5 1148670884 2006-05-26 19:14:44
## 4153     5.0 1148670172 2006-05-26 19:02:52
## 4154     4.5 1148670494 2006-05-26 19:08:14
## 4155     3.5 1148730030 2006-05-27 11:40:30
## 4156     4.0 1148669828 2006-05-26 18:57:08
## 4157     4.5 1148671384 2006-05-26 19:23:04
## 4158     4.5 1148669826 2006-05-26 18:57:06
## 4159     5.0 1148669072 2006-05-26 18:44:32
## 4160     4.5 1148669820 2006-05-26 18:57:00
## 4161     3.5 1148670496 2006-05-26 19:08:16
## 4162     5.0 1148670275 2006-05-26 19:04:35
## 4163     4.0 1148670888 2006-05-26 19:14:48
## 4164     3.5 1148670960 2006-05-26 19:16:00
## 4165     3.5 1148671412 2006-05-26 19:23:32
## 4166     5.0 1148669055 2006-05-26 18:44:15
## 4167     4.5 1148672270 2006-05-26 19:37:50
## 4168     3.5 1148672325 2006-05-26 19:38:45
## 4169     5.0 1148669822 2006-05-26 18:57:02
## 4170     4.5 1148670266 2006-05-26 19:04:26
## 4171     3.5 1148671596 2006-05-26 19:26:36
## 4172     4.5 1148671816 2006-05-26 19:30:16
## 4173     3.5 1149868188 2006-06-09 15:49:48
## 4174     4.0 1148671814 2006-05-26 19:30:14
## 4175     4.0 1148673449 2006-05-26 19:57:29
## 4176     4.0 1166036046 2006-12-13 18:54:06
## 4177     4.0 1166035984 2006-12-13 18:53:04
## 4178     3.5 1148778850 2006-05-28 01:14:10
## 4179     3.5 1148386185 2006-05-23 12:09:45
## 4180     1.5 1148669296 2006-05-26 18:48:16
## 4181     4.5 1148729642 2006-05-27 11:34:02
## 4182     3.5 1148730410 2006-05-27 11:46:50
## 4183     2.5 1148720563 2006-05-27 09:02:43
## 4184     3.5 1148672048 2006-05-26 19:34:08
## 4185     3.5 1148671992 2006-05-26 19:33:12
## 4186     4.0 1166036059 2006-12-13 18:54:19
## 4187     4.0 1148671859 2006-05-26 19:30:59
## 4188     4.5 1148671856 2006-05-26 19:30:56
## 4189     4.0 1148671782 2006-05-26 19:29:42
## 4190     5.0 1148671642 2006-05-26 19:27:22
## 4191     4.5 1148386150 2006-05-23 12:09:10
## 4192     3.5 1148777838 2006-05-28 00:57:18
## 4193     3.5 1148730086 2006-05-27 11:41:26
## 4194     3.5 1148671587 2006-05-26 19:26:27
## 4195     4.0 1148671822 2006-05-26 19:30:22
## 4196     4.0 1148778812 2006-05-28 01:13:32
## 4197     3.0 1148778787 2006-05-28 01:13:07
## 4198     4.0 1148730406 2006-05-27 11:46:46
## 4199     3.5 1148728732 2006-05-27 11:18:52
## 4200     5.0 1148671808 2006-05-26 19:30:08
## 4201     4.0 1148669291 2006-05-26 18:48:11
## 4202     4.5 1148729820 2006-05-27 11:37:00
## 4203     2.0 1148670285 2006-05-26 19:04:45
## 4204     3.5 1148720736 2006-05-27 09:05:36
## 4205     5.0 1148670134 2006-05-26 19:02:14
## 4206     3.0 1148777902 2006-05-28 00:58:22
## 4207     4.0 1148671835 2006-05-26 19:30:35
## 4208     4.0 1148669816 2006-05-26 18:56:56
## 4209     3.5 1148386142 2006-05-23 12:09:02
## 4210     3.5 1148730139 2006-05-27 11:42:19
## 4211     5.0 1148728738 2006-05-27 11:18:58
## 4212     4.0 1148728856 2006-05-27 11:20:56
## 4213     4.5 1148670953 2006-05-26 19:15:53
## 4214     4.0 1148669057 2006-05-26 18:44:17
## 4215     3.5 1148672025 2006-05-26 19:33:45
## 4216     4.0 1148672530 2006-05-26 19:42:10
## 4217     2.5 1148777918 2006-05-28 00:58:38
## 4218     4.5 1148669286 2006-05-26 18:48:06
## 4219     3.0 1148669063 2006-05-26 18:44:23
## 4220     2.5 1148670340 2006-05-26 19:05:40
## 4221     2.5 1166728237 2006-12-21 19:10:37
## 4222     3.5 1148669051 2006-05-26 18:44:11
## 4223     3.5 1148730168 2006-05-27 11:42:48
## 4224     4.0 1148729341 2006-05-27 11:29:01
## 4225     4.0 1148669808 2006-05-26 18:56:48
## 4226     3.5 1148720760 2006-05-27 09:06:00
## 4227     3.5 1148669282 2006-05-26 18:48:02
## 4228     3.0 1148720878 2006-05-27 09:07:58
## 4229     2.0 1149868079 2006-06-09 15:47:59
## 4230     1.5 1148720958 2006-05-27 09:09:18
## 4231     4.5 1148386128 2006-05-23 12:08:48
## 4232     3.0 1148720919 2006-05-27 09:08:39
## 4233     3.5 1166728241 2006-12-21 19:10:41
## 4234     2.0 1148720846 2006-05-27 09:07:26
## 4235     3.0 1148669048 2006-05-26 18:44:08
## 4236     0.5 1148778558 2006-05-28 01:09:18
## 4237     1.0 1148670343 2006-05-26 19:05:43
## 4238     3.5 1148668953 2006-05-26 18:42:33
## 4239     4.0 1148669800 2006-05-26 18:56:40
## 4240     2.5 1148669045 2006-05-26 18:44:05
## 4241     4.0 1148670522 2006-05-26 19:08:42
## 4242     4.5 1148671498 2006-05-26 19:24:58
## 4243     4.0 1148671436 2006-05-26 19:23:56
## 4244     5.0 1148670981 2006-05-26 19:16:21
## 4245     4.0 1148669270 2006-05-26 18:47:50
## 4246     3.5 1148729054 2006-05-27 11:24:14
## 4247     5.0 1148670121 2006-05-26 19:02:01
## 4248     3.0 1148669792 2006-05-26 18:56:32
## 4249     4.0 1148669789 2006-05-26 18:56:29
## 4250     4.5 1148728970 2006-05-27 11:22:50
## 4251     5.0 1148669787 2006-05-26 18:56:27
## 4252     3.5 1148669267 2006-05-26 18:47:47
## 4253     3.5 1148728611 2006-05-27 11:16:51
## 4254     3.5 1148670970 2006-05-26 19:16:10
## 4255     5.0 1148671375 2006-05-26 19:22:55
## 4256     3.0 1148730178 2006-05-27 11:42:58
## 4257     3.0 1148673442 2006-05-26 19:57:22
## 4258     3.5 1148730066 2006-05-27 11:41:06
## 4259     3.5 1148669265 2006-05-26 18:47:45
## 4260     2.0 1148720837 2006-05-27 09:07:17
## 4261     3.0 1148728727 2006-05-27 11:18:47
## 4262     4.0 1148669541 2006-05-26 18:52:21
## 4263     1.5 1148728810 2006-05-27 11:20:10
## 4264     4.0 1148672116 2006-05-26 19:35:16
## 4265     3.5 1148728751 2006-05-27 11:19:11
## 4266     4.0 1148721075 2006-05-27 09:11:15
## 4267     4.5 1148672322 2006-05-26 19:38:42
## 4268     4.0 1148669538 2006-05-26 18:52:18
## 4269     4.0 1148728761 2006-05-27 11:19:21
## 4270     3.5 1148730162 2006-05-27 11:42:42
## 4271     4.5 1148728725 2006-05-27 11:18:45
## 4272     3.0 1148728794 2006-05-27 11:19:54
## 4273     4.0 1148673306 2006-05-26 19:55:06
## 4274     3.0 1148671908 2006-05-26 19:31:48
## 4275     3.0 1148728778 2006-05-27 11:19:38
## 4276     4.0 1148728759 2006-05-27 11:19:19
## 4277     1.0 1148728746 2006-05-27 11:19:06
## 4278     3.5 1148728769 2006-05-27 11:19:29
## 4279     3.5 1148728790 2006-05-27 11:19:50
## 4280     2.5 1148728802 2006-05-27 11:20:02
## 4281     1.5 1148728736 2006-05-27 11:18:56
## 4282     4.0 1148728753 2006-05-27 11:19:13
## 4283     3.5 1148728767 2006-05-27 11:19:27
## 4284     3.5 1148728429 2006-05-27 11:13:49
## 4285     3.5 1148669764 2006-05-26 18:56:04
## 4286     3.5 1148669261 2006-05-26 18:47:41
## 4287     4.0 1148729668 2006-05-27 11:34:28
## 4288     4.5 1148673438 2006-05-26 19:57:18
## 4289     4.0 1148669760 2006-05-26 18:56:00
## 4290     4.0 1148672527 2006-05-26 19:42:07
## 4291     3.0 1148669036 2006-05-26 18:43:56
## 4292     3.5 1148669531 2006-05-26 18:52:11
## 4293     4.0 1148671551 2006-05-26 19:25:51
## 4294     2.5 1148728867 2006-05-27 11:21:07
## 4295     5.0 1148671632 2006-05-26 19:27:12
## 4296     4.0 1148670901 2006-05-26 19:15:01
## 4297     2.0 1148720894 2006-05-27 09:08:14
## 4298     4.0 1148729968 2006-05-27 11:39:28
## 4299     1.5 1148669258 2006-05-26 18:47:38
## 4300     3.5 1166728231 2006-12-21 19:10:31
## 4301     5.0 1148672486 2006-05-26 19:41:26
## 4302     3.0 1148730098 2006-05-27 11:41:38
## 4303     4.0 1148672510 2006-05-26 19:41:50
## 4304     3.5 1148672500 2006-05-26 19:41:40
## 4305     5.0 1148671801 2006-05-26 19:30:01
## 4306     3.5 1148386163 2006-05-23 12:09:23
## 4307     4.0 1148671878 2006-05-26 19:31:18
## 4308     3.5 1148672515 2006-05-26 19:41:55
## 4309     3.5 1148669228 2006-05-26 18:47:08
## 4310     3.5 1148729360 2006-05-27 11:29:20
## 4311     3.5 1148669739 2006-05-26 18:55:39
## 4312     4.0 1148669751 2006-05-26 18:55:51
## 4313     4.0 1148671976 2006-05-26 19:32:56
## 4314     4.0 1148672768 2006-05-26 19:46:08
## 4315     3.5 1148673578 2006-05-26 19:59:38
## 4316     5.0 1148669024 2006-05-26 18:43:44
## 4317     3.5 1148730155 2006-05-27 11:42:35
## 4318     2.5 1148669021 2006-05-26 18:43:41
## 4319     3.5 1148669225 2006-05-26 18:47:05
## 4320     2.5 1148669239 2006-05-26 18:47:19
## 4321     3.0 1148671939 2006-05-26 19:32:19
## 4322     5.0 1148671652 2006-05-26 19:27:32
## 4323     3.0 1148386176 2006-05-23 12:09:36
## 4324     4.0 1148729689 2006-05-27 11:34:49
## 4325     3.5 1148730053 2006-05-27 11:40:53
## 4326     4.0 1148720603 2006-05-27 09:03:23
## 4327     3.5 1148778590 2006-05-28 01:09:50
## 4328     4.5 1148728756 2006-05-27 11:19:16
## 4329     4.0 1148669018 2006-05-26 18:43:38
## 4330     3.0 1148729858 2006-05-27 11:37:38
## 4331     4.0 1149868383 2006-06-09 15:53:03
## 4332     2.5 1148669219 2006-05-26 18:46:59
## 4333     4.0 1148669215 2006-05-26 18:46:55
## 4334     4.0 1149868257 2006-06-09 15:50:57
## 4335     2.0 1149868567 2006-06-09 15:56:07
## 4336     3.5 1149868269 2006-06-09 15:51:09
## 4337     4.0 1149868185 2006-06-09 15:49:45
## 4338     3.0 1148672184 2006-05-26 19:36:24
## 4339     3.5 1148669719 2006-05-26 18:55:19
## 4340     3.5 1148730088 2006-05-27 11:41:28
## 4341     4.0 1148729974 2006-05-27 11:39:34
## 4342     3.5 1166728248 2006-12-21 19:10:48
## 4343     2.5 1148670873 2006-05-26 19:14:33
## 4344     4.5 1148669716 2006-05-26 18:55:16
## 4345     3.5 1148671340 2006-05-26 19:22:20
## 4346     4.5 1148671324 2006-05-26 19:22:04
## 4347     3.0 1148669012 2006-05-26 18:43:32
## 4348     5.0 1148670082 2006-05-26 19:01:22
## 4349     1.5 1148386172 2006-05-23 12:09:32
## 4350     4.0 1148669210 2006-05-26 18:46:50
## 4351     4.5 1148669709 2006-05-26 18:55:09
## 4352     3.0 1166036066 2006-12-13 18:54:26
## 4353     3.5 1148673094 2006-05-26 19:51:34
## 4354     2.0 1148669714 2006-05-26 18:55:14
## 4355     4.5 1148671845 2006-05-26 19:30:45
## 4356     4.0 1148728854 2006-05-27 11:20:54
## 4357     3.5 1149868713 2006-06-09 15:58:33
## 4358     4.0 1148671606 2006-05-26 19:26:46
## 4359     5.0 1148672620 2006-05-26 19:43:40
## 4360     4.0 1148729011 2006-05-27 11:23:31
## 4361     2.0 1149867815 2006-06-09 15:43:35
## 4362     4.0 1149868231 2006-06-09 15:50:31
## 4363     2.5 1148669200 2006-05-26 18:46:40
## 4364     3.5 1148669501 2006-05-26 18:51:41
## 4365     3.5 1148672034 2006-05-26 19:33:54
## 4366     4.0 1148729102 2006-05-27 11:25:02
## 4367     4.0 1148672294 2006-05-26 19:38:14
## 4368     3.5 1148673075 2006-05-26 19:51:15
## 4369     4.0 1148671999 2006-05-26 19:33:19
## 4370     4.0 1148672683 2006-05-26 19:44:43
## 4371     3.5 1148669008 2006-05-26 18:43:28
## 4372     3.5 1148730113 2006-05-27 11:41:53
## 4373     3.5 1148669191 2006-05-26 18:46:31
## 4374     3.5 1148778865 2006-05-28 01:14:25
## 4375     4.0 1148729713 2006-05-27 11:35:13
## 4376     4.5 1148672556 2006-05-26 19:42:36
## 4377     3.5 1149868562 2006-06-09 15:56:02
## 4378     4.5 1148671474 2006-05-26 19:24:34
## 4379     4.5 1148670519 2006-05-26 19:08:39
## 4380     3.5 1148778622 2006-05-28 01:10:22
## 4381     2.5 1148720744 2006-05-27 09:05:44
## 4382     3.5 1148669706 2006-05-26 18:55:06
## 4383     2.0 1148669188 2006-05-26 18:46:28
## 4384     5.0 1148673055 2006-05-26 19:50:55
## 4385     3.0 1148672778 2006-05-26 19:46:18
## 4386     2.5 1148720826 2006-05-27 09:07:06
## 4387     5.0 1148670143 2006-05-26 19:02:23
## 4388     2.5 1148671916 2006-05-26 19:31:56
## 4389     4.5 1148671881 2006-05-26 19:31:21
## 4390     3.0 1148673280 2006-05-26 19:54:40
## 4391     3.5 1148728895 2006-05-27 11:21:35
## 4392     3.5 1148669703 2006-05-26 18:55:03
## 4393     3.0 1148729851 2006-05-27 11:37:31
## 4394     2.0 1148728701 2006-05-27 11:18:21
## 4395     2.5 1148669181 2006-05-26 18:46:21
## 4396     4.0 1148728602 2006-05-27 11:16:42
## 4397     4.5 1148669695 2006-05-26 18:54:55
## 4398     4.0 1148672142 2006-05-26 19:35:42
## 4399     5.0 1148672449 2006-05-26 19:40:49
## 4400     3.5 1148672101 2006-05-26 19:35:01
## 4401     4.5 1148671428 2006-05-26 19:23:48
## 4402     4.5 1148671904 2006-05-26 19:31:44
## 4403     3.0 1148669488 2006-05-26 18:51:28
## 4404     4.5 1148729808 2006-05-27 11:36:48
## 4405     3.5 1148730163 2006-05-27 11:42:43
## 4406     4.0 1148670551 2006-05-26 19:09:11
## 4407     5.0 1148671686 2006-05-26 19:28:06
## 4408     4.0 1148671963 2006-05-26 19:32:43
## 4409     2.5 1148721061 2006-05-27 09:11:01
## 4410     3.5 1148728891 2006-05-27 11:21:31
## 4411     5.0 1148728875 2006-05-27 11:21:15
## 4412     3.5 1148721102 2006-05-27 09:11:42
## 4413     4.5 1148386153 2006-05-23 12:09:13
## 4414     1.5 1166035912 2006-12-13 18:51:52
## 4415     4.0 1148673292 2006-05-26 19:54:52
## 4416     4.5 1148670554 2006-05-26 19:09:14
## 4417     4.0 1149868559 2006-06-09 15:55:59
## 4418     4.5 1148669482 2006-05-26 18:51:22
## 4419     3.0 1148669175 2006-05-26 18:46:15
## 4420     4.5 1148669004 2006-05-26 18:43:24
## 4421     3.5 1148721082 2006-05-27 09:11:22
## 4422     3.5 1148729373 2006-05-27 11:29:33
## 4423     3.5 1148671696 2006-05-26 19:28:16
## 4424     4.5 1148671997 2006-05-26 19:33:17
## 4425     3.5 1148669480 2006-05-26 18:51:20
## 4426     3.0 1148669173 2006-05-26 18:46:13
## 4427     3.5 1148730416 2006-05-27 11:46:56
## 4428     4.0 1148670362 2006-05-26 19:06:02
## 4429     4.0 1148669470 2006-05-26 18:51:10
## 4430     2.0 1148721157 2006-05-27 09:12:37
## 4431     1.0 1148669685 2006-05-26 18:54:45
## 4432     4.0 1148728779 2006-05-27 11:19:39
## 4433     3.0 1148669465 2006-05-26 18:51:05
## 4434     2.0 1148386159 2006-05-23 12:09:19
## 4435     4.0 1148672311 2006-05-26 19:38:31
## 4436     3.0 1148669458 2006-05-26 18:50:58
## 4437     3.5 1149868554 2006-06-09 15:55:54
## 4438     3.5 1148669165 2006-05-26 18:46:05
## 4439     3.5 1148730072 2006-05-27 11:41:12
## 4440     4.0 1148671793 2006-05-26 19:29:53
## 4441     2.5 1148777893 2006-05-28 00:58:13
## 4442     4.0 1148386124 2006-05-23 12:08:44
## 4443     2.0 1148669688 2006-05-26 18:54:48
## 4444     4.0 1148729675 2006-05-27 11:34:35
## 4445     2.0 1148671784 2006-05-26 19:29:44
## 4446     3.0 1148669156 2006-05-26 18:45:56
## 4447     3.0 1148721105 2006-05-27 09:11:45
## 4448     4.5 1148669002 2006-05-26 18:43:22
## 4449     4.5 1148672113 2006-05-26 19:35:13
## 4450     5.0 1148673043 2006-05-26 19:50:43
## 4451     4.5 1148671887 2006-05-26 19:31:27
## 4452     4.0 1148777876 2006-05-28 00:57:56
## 4453     3.5 1148729496 2006-05-27 11:31:36
## 4454     4.0 1148669000 2006-05-26 18:43:20
## 4455     4.0 1148670535 2006-05-26 19:08:55
## 4456     4.0 1148670060 2006-05-26 19:01:00
## 4457     4.0 1166036125 2006-12-13 18:55:25
## 4458     4.5 1149868172 2006-06-09 15:49:32
## 4459     3.5 1148672776 2006-05-26 19:46:16
## 4460     2.0 1148729830 2006-05-27 11:37:10
## 4461     3.5 1148728652 2006-05-27 11:17:32
## 4462     3.5 1148386146 2006-05-23 12:09:06
## 4463     3.5 1148669449 2006-05-26 18:50:49
## 4464     3.5 1148671975 2006-05-26 19:32:55
## 4465     1.0 1149868599 2006-06-09 15:56:39
## 4466     3.0 1148669447 2006-05-26 18:50:47
## 4467     2.0 1148670048 2006-05-26 19:00:48
## 4468     4.0 1148669443 2006-05-26 18:50:43
## 4469     4.5 1148670464 2006-05-26 19:07:44
## 4470     4.0 1148671013 2006-05-26 19:16:53
## 4471     4.0 1148778637 2006-05-28 01:10:37
## 4472     3.5 1148670046 2006-05-26 19:00:46
## 4473     2.0 1148670035 2006-05-26 19:00:35
## 4474     3.5 1148672150 2006-05-26 19:35:50
## 4475     4.5 1148672412 2006-05-26 19:40:12
## 4476     1.5 1148778542 2006-05-28 01:09:02
## 4477     3.5 1148670033 2006-05-26 19:00:33
## 4478     3.0 1148670029 2006-05-26 19:00:29
## 4479     0.5 1148669153 2006-05-26 18:45:53
## 4480     2.0 1148672030 2006-05-26 19:33:50
## 4481     3.0 1148672429 2006-05-26 19:40:29
## 4482     4.0 1148672167 2006-05-26 19:36:07
## 4483     3.5 1148672010 2006-05-26 19:33:30
## 4484     3.5 1148669150 2006-05-26 18:45:50
## 4485     3.0 1148730000 2006-05-27 11:40:00
## 4486     1.5 1148729027 2006-05-27 11:23:47
## 4487     3.5 1148670025 2006-05-26 19:00:25
## 4488     4.0 1148671968 2006-05-26 19:32:48
## 4489     4.0 1148673475 2006-05-26 19:57:55
## 4490     3.0 1148670015 2006-05-26 19:00:15
## 4491     4.0 1148669432 2006-05-26 18:50:32
## 4492     4.0 1149868082 2006-06-09 15:48:02
## 4493     3.5 1148669430 2006-05-26 18:50:30
## 4494     3.5 1148669145 2006-05-26 18:45:45
## 4495     3.5 1148730080 2006-05-27 11:41:20
## 4496     3.5 1148669142 2006-05-26 18:45:42
## 4497     3.5 1148730186 2006-05-27 11:43:06
## 4498     3.5 1148673770 2006-05-26 20:02:50
## 4499     3.0 1148670011 2006-05-26 19:00:11
## 4500     5.0 1148669659 2006-05-26 18:54:19
## 4501     5.0 1148673020 2006-05-26 19:50:20
## 4502     5.0 1148673264 2006-05-26 19:54:24
## 4503     5.0 1148668997 2006-05-26 18:43:17
## 4504     2.0 1148729348 2006-05-27 11:29:08
## 4505     3.0 1148730142 2006-05-27 11:42:22
## 4506     4.5 1148730339 2006-05-27 11:45:39
## 4507     4.0 1148672064 2006-05-26 19:34:24
## 4508     4.0 1148670407 2006-05-26 19:06:47
## 4509     4.5 1148668988 2006-05-26 18:43:08
## 4510     4.5 1148671395 2006-05-26 19:23:15
## 4511     1.0 1148669423 2006-05-26 18:50:23
## 4512     3.5 1148671310 2006-05-26 19:21:50
## 4513     3.0 1148668984 2006-05-26 18:43:04
## 4514     3.0 1149868375 2006-06-09 15:52:55
## 4515     3.0 1148670003 2006-05-26 19:00:03
## 4516     4.0 1148672017 2006-05-26 19:33:37
## 4517     4.0 1148669420 2006-05-26 18:50:20
## 4518     4.0 1148721046 2006-05-27 09:10:46
## 4519     4.5 1148669995 2006-05-26 18:59:55
## 4520     4.0 1149868484 2006-06-09 15:54:44
## 4521     5.0 1148671005 2006-05-26 19:16:45
## 4522     4.0 1148669126 2006-05-26 18:45:26
## 4523     4.0 1148669408 2006-05-26 18:50:08
## 4524     2.5 1166728155 2006-12-21 19:09:15
## 4525     3.5 1148777819 2006-05-28 00:56:59
## 4526     3.5 1148669987 2006-05-26 18:59:47
## 4527     2.0 1148670299 2006-05-26 19:04:59
## 4528     4.0 1148673117 2006-05-26 19:51:57
## 4529     3.5 1148721129 2006-05-27 09:12:09
## 4530     3.5 1148729991 2006-05-27 11:39:51
## 4531     0.5 1148668981 2006-05-26 18:43:01
## 4532     3.5 1148669651 2006-05-26 18:54:11
## 4533     3.5 1148730375 2006-05-27 11:46:15
## 4534     3.0 1148671569 2006-05-26 19:26:09
## 4535     4.0 1148671806 2006-05-26 19:30:06
## 4536     2.5 1148669404 2006-05-26 18:50:04
## 4537     2.0 1148728872 2006-05-27 11:21:12
## 4538     3.0 1148669643 2006-05-26 18:54:03
## 4539     3.0 1148729764 2006-05-27 11:36:04
## 4540     4.0 1166728165 2006-12-21 19:09:25
## 4541     3.5 1148728844 2006-05-27 11:20:44
## 4542     3.5 1148670503 2006-05-26 19:08:23
## 4543     4.5 1148670377 2006-05-26 19:06:17
## 4544     4.0 1148729681 2006-05-27 11:34:41
## 4545     4.5 1148729615 2006-05-27 11:33:35
## 4546     3.5 1148728452 2006-05-27 11:14:12
## 4547     3.5 1148672044 2006-05-26 19:34:04
## 4548     4.0 1148669981 2006-05-26 18:59:41
## 4549     2.5 1148668978 2006-05-26 18:42:58
## 4550     4.0 1148671891 2006-05-26 19:31:31
## 4551     4.0 1148778680 2006-05-28 01:11:20
## 4552     1.5 1148728632 2006-05-27 11:17:12
## 4553     5.0 1148671465 2006-05-26 19:24:25
## 4554     4.0 1148728401 2006-05-27 11:13:21
## 4555     4.0 1148730381 2006-05-27 11:46:21
## 4556     4.0 1148670412 2006-05-26 19:06:52
## 4557     3.5 1148729985 2006-05-27 11:39:45
## 4558     3.5 1148672553 2006-05-26 19:42:33
## 4559     4.5 1148728488 2006-05-27 11:14:48
## 4560     5.0 1148669635 2006-05-26 18:53:55
## 4561     2.5 1148728773 2006-05-27 11:19:33
## 4562     5.0 1148671728 2006-05-26 19:28:48
## 4563     4.5 1148670480 2006-05-26 19:08:00
## 4564     4.5 1148671984 2006-05-26 19:33:04
## 4565     3.0 1166035845 2006-12-13 18:50:45
## 4566     5.0 1148670462 2006-05-26 19:07:42
## 4567     2.5 1148673567 2006-05-26 19:59:27
## 4568     2.5 1149868386 2006-06-09 15:53:06
## 4569     3.5 1148730363 2006-05-27 11:46:03
## 4570     4.0 1148673695 2006-05-26 20:01:35
## 4571     4.0 1148671914 2006-05-26 19:31:54
## 4572     4.0 1148669973 2006-05-26 18:59:33
## 4573     3.5 1149868589 2006-06-09 15:56:29
## 4574     3.5 1148673429 2006-05-26 19:57:09
## 4575     4.5 1148729589 2006-05-27 11:33:09
## 4576     3.5 1148670511 2006-05-26 19:08:31
## 4577     3.5 1148777788 2006-05-28 00:56:28
## 4578     1.5 1148671670 2006-05-26 19:27:50
## 4579     3.5 1148728655 2006-05-27 11:17:35
## 4580     3.0 1148730486 2006-05-27 11:48:06
## 4581     4.5 1148729602 2006-05-27 11:33:22
## 4582     3.5 1148730325 2006-05-27 11:45:25
## 4583     4.0 1148729489 2006-05-27 11:31:29
## 4584     3.5 1166728191 2006-12-21 19:09:51
## 4585     4.5 1148672103 2006-05-26 19:35:03
## 4586     3.5 1148777833 2006-05-28 00:57:13
## 4587     2.5 1149868022 2006-06-09 15:47:02
## 4588     4.5 1148673277 2006-05-26 19:54:37
## 4589     3.0 1148672862 2006-05-26 19:47:42
## 4590     4.0 1148669957 2006-05-26 18:59:17
## 4591     3.5 1148672069 2006-05-26 19:34:29
## 4592     1.5 1148669388 2006-05-26 18:49:48
## 4593     3.0 1148672708 2006-05-26 19:45:08
## 4594     4.0 1148671403 2006-05-26 19:23:23
## 4595     4.0 1148670473 2006-05-26 19:07:53
## 4596     3.5 1148777887 2006-05-28 00:58:07
## 4597     3.0 1148669120 2006-05-26 18:45:20
## 4598     3.5 1148670540 2006-05-26 19:09:00
## 4599     3.5 1148671873 2006-05-26 19:31:13
## 4600     4.0 1148728657 2006-05-27 11:17:37
## 4601     5.0 1148673160 2006-05-26 19:52:40
## 4602     4.5 1148729597 2006-05-27 11:33:17
## 4603     4.0 1148729704 2006-05-27 11:35:04
## 4604     5.0 1148721147 2006-05-27 09:12:27
## 4605     4.0 1148673289 2006-05-26 19:54:49
## 4606     3.0 1148669952 2006-05-26 18:59:12
## 4607     3.0 1149867788 2006-06-09 15:43:08
## 4608     2.5 1148669950 2006-05-26 18:59:10
## 4609     3.5 1148673142 2006-05-26 19:52:22
## 4610     3.0 1148777906 2006-05-28 00:58:26
## 4611     4.5 1149868005 2006-06-09 15:46:45
## 4612     2.5 1148721109 2006-05-27 09:11:49
## 4613     2.0 1148721080 2006-05-27 09:11:20
## 4614     4.0 1148669947 2006-05-26 18:59:07
## 4615     4.0 1148669620 2006-05-26 18:53:40
## 4616     3.5 1148671989 2006-05-26 19:33:09
## 4617     2.0 1148720869 2006-05-27 09:07:49
## 4618     1.5 1148673512 2006-05-26 19:58:32
## 4619     4.0 1148721066 2006-05-27 09:11:06
## 4620     4.0 1148778107 2006-05-28 01:01:47
## 4621     2.5 1148672120 2006-05-26 19:35:20
## 4622     4.5 1148729768 2006-05-27 11:36:08
## 4623     4.5 1148672289 2006-05-26 19:38:09
## 4624     4.5 1148729652 2006-05-27 11:34:12
## 4625     4.0 1148721133 2006-05-27 09:12:13
## 4626     4.5 1148729574 2006-05-27 11:32:54
## 4627     2.0 1148729032 2006-05-27 11:23:52
## 4628     3.5 1148671849 2006-05-26 19:30:49
## 4629     5.0 1148672629 2006-05-26 19:43:49
## 4630     3.5 1148672333 2006-05-26 19:38:53
## 4631     4.0 1166728160 2006-12-21 19:09:20
## 4632     4.5 1148386181 2006-05-23 12:09:41
## 4633     3.0 1148671300 2006-05-26 19:21:40
## 4634     2.0 1149867747 2006-06-09 15:42:27
## 4635     2.0 1148669384 2006-05-26 18:49:44
## 4636     4.0 1148669943 2006-05-26 18:59:03
## 4637     4.0 1148673554 2006-05-26 19:59:14
## 4638     4.0 1148777881 2006-05-28 00:58:01
## 4639     3.0 1148669381 2006-05-26 18:49:41
## 4640     4.5 1148670469 2006-05-26 19:07:49
## 4641     4.5 1148730359 2006-05-27 11:45:59
## 4642     3.5 1148671745 2006-05-26 19:29:05
## 4643     3.5 1148673159 2006-05-26 19:52:39
## 4644     2.0 1148673729 2006-05-26 20:02:09
## 4645     3.5 1166036074 2006-12-13 18:54:34
## 4646     4.0 1148672248 2006-05-26 19:37:28
## 4647     3.5 1148671356 2006-05-26 19:22:36
## 4648     3.5 1148672143 2006-05-26 19:35:43
## 4649     1.0 1166035969 2006-12-13 18:52:49
## 4650     4.0 1148670517 2006-05-26 19:08:37
## 4651     4.0 1148728880 2006-05-27 11:21:20
## 4652     3.0 1148729504 2006-05-27 11:31:44
## 4653     3.5 1148728467 2006-05-27 11:14:27
## 4654     4.5 1148669605 2006-05-26 18:53:25
## 4655     4.0 1148728849 2006-05-27 11:20:49
## 4656     3.5 1148673274 2006-05-26 19:54:34
## 4657     3.0 1148672148 2006-05-26 19:35:48
## 4658     3.5 1148672825 2006-05-26 19:47:05
## 4659     3.5 1148728858 2006-05-27 11:20:58
## 4660     4.0 1148673762 2006-05-26 20:02:42
## 4661     4.5 1148673478 2006-05-26 19:57:58
## 4662     3.5 1148671852 2006-05-26 19:30:52
## 4663     3.5 1148777848 2006-05-28 00:57:28
## 4664     2.0 1148729024 2006-05-27 11:23:44
## 4665     3.5 1148670303 2006-05-26 19:05:03
## 4666     2.5 1148777970 2006-05-28 00:59:30
## 4667     4.5 1148669373 2006-05-26 18:49:33
## 4668     4.0 1148778304 2006-05-28 01:05:04
## 4669     3.5 1148673283 2006-05-26 19:54:43
## 4670     5.0 1148671738 2006-05-26 19:28:58
## 4671     4.5 1148671289 2006-05-26 19:21:29
## 4672     3.5 1148730147 2006-05-27 11:42:27
## 4673     4.5 1148672765 2006-05-26 19:46:05
## 4674     4.0 1148673065 2006-05-26 19:51:05
## 4675     3.0 1148673032 2006-05-26 19:50:32
## 4676     3.5 1148730109 2006-05-27 11:41:49
## 4677     4.5 1148672235 2006-05-26 19:37:15
## 4678     2.5 1148777777 2006-05-28 00:56:17
## 4679     4.0 1148672082 2006-05-26 19:34:42
## 4680     4.0 1148670559 2006-05-26 19:09:19
## 4681     5.0 1148672259 2006-05-26 19:37:39
## 4682     4.5 1166035835 2006-12-13 18:50:35
## 4683     3.0 1148669930 2006-05-26 18:58:50
## 4684     3.0 1148730354 2006-05-27 11:45:54
## 4685     3.0 1148672301 2006-05-26 19:38:21
## 4686     4.5 1148672274 2006-05-26 19:37:54
## 4687     3.5 1148672278 2006-05-26 19:37:58
## 4688     4.5 1148670456 2006-05-26 19:07:36
## 4689     3.5 1148730062 2006-05-27 11:41:02
## 4690     3.5 1148669374 2006-05-26 18:49:34
## 4691     4.0 1148669926 2006-05-26 18:58:46
## 4692     4.0 1149867880 2006-06-09 15:44:40
## 4693     3.5 1148728505 2006-05-27 11:15:05
## 4694     3.5 1149868226 2006-06-09 15:50:26
## 4695     4.0 1166035981 2006-12-13 18:53:01
## 4696     2.5 1148673735 2006-05-26 20:02:15
## 4697     5.0 1148728740 2006-05-27 11:19:00
## 4698     4.0 1148670866 2006-05-26 19:14:26
## 4699     3.5 1148730017 2006-05-27 11:40:17
## 4700     3.5 1148673299 2006-05-26 19:54:59
## 4701     3.0 1148671579 2006-05-26 19:26:19
## 4702     2.5 1148728469 2006-05-27 11:14:29
## 4703     4.0 1148673587 2006-05-26 19:59:47
## 4704     3.0 1148672716 2006-05-26 19:45:16
## 4705     3.5 1148730328 2006-05-27 11:45:28
## 4706     3.5 1148730343 2006-05-27 11:45:43
## 4707     4.5 1148728385 2006-05-27 11:13:05
## 4708     3.5 1148730331 2006-05-27 11:45:31
## 4709     3.0 1148670189 2006-05-26 19:03:09
## 4710     4.0 1148670454 2006-05-26 19:07:34
## 4711     4.0 1148670525 2006-05-26 19:08:45
## 4712     4.5 1148671229 2006-05-26 19:20:29
## 4713     4.0 1148673719 2006-05-26 20:01:59
## 4714     4.5 1148670458 2006-05-26 19:07:38
## 4715     4.0 1149867915 2006-06-09 15:45:15
## 4716     3.5 1148671243 2006-05-26 19:20:43
## 4717     4.0 1148729077 2006-05-27 11:24:37
## 4718     4.0 1148671251 2006-05-26 19:20:51
## 4719     3.0 1148673758 2006-05-26 20:02:38
## 4720     3.0 1148671278 2006-05-26 19:21:18
## 4721     4.5 1148729584 2006-05-27 11:33:04
## 4722     2.0 1148720535 2006-05-27 09:02:15
## 4723     2.5 1148728902 2006-05-27 11:21:42
## 4724     3.5 1148777867 2006-05-28 00:57:47
## 4725     4.0 1148671219 2006-05-26 19:20:19
## 4726     4.0 1149867706 2006-06-09 15:41:46
## 4727     3.5 1148671236 2006-05-26 19:20:36
## 4728     3.0 1148778653 2006-05-28 01:10:53
## 4729     4.5 1148669596 2006-05-26 18:53:16
## 4730     4.0 1148670935 2006-05-26 19:15:35
## 4731     3.5 1148672962 2006-05-26 19:49:22
## 4732     1.5 1149867891 2006-06-09 15:44:51
## 4733     2.5 1166728253 2006-12-21 19:10:53
## 4734     3.5 1166728226 2006-12-21 19:10:26
## 4735     5.0  849321588 1996-11-30 02:39:48
## 4736     3.0  849321616 1996-11-30 02:40:16
## 4737     4.0  849321769 1996-11-30 02:42:49
## 4738     3.0  849321588 1996-11-30 02:39:48
## 4739     3.0  849282414 1996-11-29 15:46:54
## 4740     4.0  849282506 1996-11-29 15:48:26
## 4741     5.0  849282414 1996-11-29 15:46:54
## 4742     3.0  849282540 1996-11-29 15:49:00
## 4743     4.0  849282540 1996-11-29 15:49:00
## 4744     4.0  849282414 1996-11-29 15:46:54
## 4745     4.0  849282507 1996-11-29 15:48:27
## 4746     3.0  849282506 1996-11-29 15:48:26
## 4747     4.0  849282414 1996-11-29 15:46:54
## 4748     3.0  849282414 1996-11-29 15:46:54
## 4749     3.0  849321669 1996-11-30 02:41:09
## 4750     4.0  849321569 1996-11-30 02:39:29
## 4751     3.0  849321569 1996-11-30 02:39:29
## 4752     4.0  849282720 1996-11-29 15:52:00
## 4753     4.0  849321569 1996-11-30 02:39:29
## 4754     3.0  849321955 1996-11-30 02:45:55
## 4755     4.0  849321826 1996-11-30 02:43:46
## 4756     3.0  859625254 1997-03-29 08:47:34
## 4757     4.0  859625180 1997-03-29 08:46:20
## 4758     3.0  859625874 1997-03-29 08:57:54
## 4759     4.0  859625336 1997-03-29 08:48:56
## 4760     4.0  859625336 1997-03-29 08:48:56
## 4761     3.0  859625254 1997-03-29 08:47:34
## 4762     3.0  859625254 1997-03-29 08:47:34
## 4763     2.0  859625336 1997-03-29 08:48:56
## 4764     2.0  859625772 1997-03-29 08:56:12
## 4765     3.0  859625553 1997-03-29 08:52:33
## 4766     4.0  859625495 1997-03-29 08:51:35
## 4767     4.0  859625180 1997-03-29 08:46:20
## 4768     3.0  859625336 1997-03-29 08:48:56
## 4769     3.0  859625254 1997-03-29 08:47:34
## 4770     2.0  859625336 1997-03-29 08:48:56
## 4771     5.0  859625442 1997-03-29 08:50:42
## 4772     3.0  859625495 1997-03-29 08:51:35
## 4773     2.0  859625824 1997-03-29 08:57:04
## 4774     5.0  859625254 1997-03-29 08:47:34
## 4775     1.0  859625931 1997-03-29 08:58:51
## 4776     3.0  859625442 1997-03-29 08:50:42
## 4777     5.0  859625974 1997-03-29 08:59:34
## 4778     2.0  859625669 1997-03-29 08:54:29
## 4779     3.0  859625669 1997-03-29 08:54:29
## 4780     2.0  859625845 1997-03-29 08:57:25
## 4781     3.0  859626258 1997-03-29 09:04:18
## 4782     5.0 1360087980 2013-02-05 18:13:00
## 4783     4.5 1354313537 2012-11-30 22:12:17
## 4784     4.5 1360088070 2013-02-05 18:14:30
## 4785     4.5 1360088047 2013-02-05 18:14:07
## 4786     0.5 1351544773 2012-10-29 21:06:13
## 4787     4.5 1351544454 2012-10-29 21:00:54
## 4788     3.5 1360088114 2013-02-05 18:15:14
## 4789     2.5 1360088108 2013-02-05 18:15:08
## 4790     3.0 1360087975 2013-02-05 18:12:55
## 4791     3.5 1360087955 2013-02-05 18:12:35
## 4792     0.5 1360088129 2013-02-05 18:15:29
## 4793     4.0 1360087964 2013-02-05 18:12:44
## 4794     0.5 1360088074 2013-02-05 18:14:34
## 4795     4.5 1352058551 2012-11-04 19:49:11
## 4796     2.0 1360088133 2013-02-05 18:15:33
## 4797     3.0 1360088079 2013-02-05 18:14:39
## 4798     3.0 1360088041 2013-02-05 18:14:01
## 4799     3.5 1360088007 2013-02-05 18:13:27
## 4800     2.5 1360087958 2013-02-05 18:12:38
## 4801     1.0 1360088125 2013-02-05 18:15:25
## 4802     3.5 1352636797 2012-11-11 12:26:37
## 4803     4.0 1360088014 2013-02-05 18:13:34
## 4804     3.5 1354752756 2012-12-06 00:12:36
## 4805     3.5 1360088060 2013-02-05 18:14:20
## 4806     2.5 1360088081 2013-02-05 18:14:41
## 4807     3.0 1351544331 2012-10-29 20:58:51
## 4808     3.0 1360088143 2013-02-05 18:15:43
## 4809     4.5 1354313990 2012-11-30 22:19:50
## 4810     3.5 1360088024 2013-02-05 18:13:44
## 4811     4.0 1360088089 2013-02-05 18:14:49
## 4812     3.5 1352058567 2012-11-04 19:49:27
## 4813     3.5 1371811577 2013-06-21 10:46:17
## 4814     3.5 1360088053 2013-02-05 18:14:13
## 4815     4.0 1360088064 2013-02-05 18:14:24
## 4816     3.5 1352058572 2012-11-04 19:49:32
## 4817     1.5 1351544316 2012-10-29 20:58:36
## 4818     4.0 1352636822 2012-11-11 12:27:02
## 4819     3.5 1360088119 2013-02-05 18:15:19
## 4820     3.5 1371811514 2013-06-21 10:45:14
## 4821     3.5 1351544445 2012-10-29 21:00:45
## 4822     4.0 1354752882 2012-12-06 00:14:42
## 4823     3.0 1351544792 2012-10-29 21:06:32
## 4824     3.0 1351544355 2012-10-29 20:59:15
## 4825     4.0 1352636799 2012-11-11 12:26:39
## 4826     3.0 1352058527 2012-11-04 19:48:47
## 4827     4.0 1371811575 2013-06-21 10:46:15
## 4828     4.0 1363376250 2013-03-15 19:37:30
## 4829     5.0 1352058619 2012-11-04 19:50:19
## 4830     5.0 1354752806 2012-12-06 00:13:26
## 4831     4.5 1354752751 2012-12-06 00:12:31
## 4832     4.0 1360088058 2013-02-05 18:14:18
## 4833     4.0 1354752886 2012-12-06 00:14:46
## 4834     2.0 1351544362 2012-10-29 20:59:22
## 4835     4.5 1371811559 2013-06-21 10:45:59
## 4836     3.0 1352058543 2012-11-04 19:49:03
## 4837     4.0 1352597810 2012-11-11 01:36:50
## 4838     2.5 1353708984 2012-11-23 22:16:24
## 4839     2.5 1352058529 2012-11-04 19:48:49
## 4840     4.0 1351544464 2012-10-29 21:01:04
## 4841     5.0 1351545050 2012-10-29 21:10:50
## 4842     4.0 1351544397 2012-10-29 20:59:57
## 4843     3.0 1351545093 2012-10-29 21:11:33
## 4844     3.5 1351544451 2012-10-29 21:00:51
## 4845     4.0 1353708990 2012-11-23 22:16:30
## 4846     2.5 1354752813 2012-12-06 00:13:33
## 4847     4.0 1351545101 2012-10-29 21:11:41
## 4848     4.0 1352058758 2012-11-04 19:52:38
## 4849     2.0 1351544780 2012-10-29 21:06:20
## 4850     4.5 1351544467 2012-10-29 21:01:07
## 4851     1.5 1352058557 2012-11-04 19:49:17
## 4852     3.5 1351545042 2012-10-29 21:10:42
## 4853     4.0 1353344972 2012-11-19 17:09:32
## 4854     3.0 1352058609 2012-11-04 19:50:09
## 4855     3.5 1352597808 2012-11-11 01:36:48
## 4856     4.0 1353345028 2012-11-19 17:10:28
## 4857     4.0 1353344992 2012-11-19 17:09:52
## 4858     4.0 1352058538 2012-11-04 19:48:58
## 4859     4.0 1364420293 2013-03-27 21:38:13
## 4860     2.0 1353708976 2012-11-23 22:16:16
## 4861     2.5 1352058766 2012-11-04 19:52:46
## 4862     4.0 1360088161 2013-02-05 18:16:01
## 4863     3.0 1352058603 2012-11-04 19:50:03
## 4864     2.0 1352921335 2012-11-14 19:28:55
## 4865     5.0 1352597728 2012-11-11 01:35:28
## 4866     0.5 1357253672 2013-01-03 22:54:32
## 4867     1.5 1357253678 2013-01-03 22:54:38
## 4868     3.5 1353344968 2012-11-19 17:09:28
## 4869     4.0 1351545056 2012-10-29 21:10:56
## 4870     3.0 1352921346 2012-11-14 19:29:06
## 4871     4.5 1352597710 2012-11-11 01:35:10
## 4872     4.0 1363810269 2013-03-20 20:11:09
## 4873     3.5 1365194619 2013-04-05 20:43:39
## 4874     3.5 1352838248 2012-11-13 20:24:08
## 4875     4.5 1352058756 2012-11-04 19:52:36
## 4876     3.0 1352058778 2012-11-04 19:52:58
## 4877     4.0 1352058548 2012-11-04 19:49:08
## 4878     2.0 1351545109 2012-10-29 21:11:49
## 4879     5.0 1352058660 2012-11-04 19:51:00
## 4880     1.5 1351545104 2012-10-29 21:11:44
## 4881     4.0 1351545119 2012-10-29 21:11:59
## 4882     0.5 1357253708 2013-01-03 22:55:08
## 4883     5.0 1351544753 2012-10-29 21:05:53
## 4884     3.0 1353708965 2012-11-23 22:16:05
## 4885     2.0 1352838206 2012-11-13 20:23:26
## 4886     4.0 1353344939 2012-11-19 17:08:59
## 4887     4.0 1352058784 2012-11-04 19:53:04
## 4888     4.0 1352921319 2012-11-14 19:28:39
## 4889     3.0 1353344981 2012-11-19 17:09:41
## 4890     4.0 1352058516 2012-11-04 19:48:36
## 4891     3.0 1357253700 2013-01-03 22:55:00
## 4892     3.5 1352921338 2012-11-14 19:28:58
## 4893     3.0 1361215024 2013-02-18 19:17:04
## 4894     4.5 1351545085 2012-10-29 21:11:25
## 4895     4.0 1352597707 2012-11-11 01:35:07
## 4896     5.0 1353708699 2012-11-23 22:11:39
## 4897     5.0 1351545082 2012-10-29 21:11:22
## 4898     4.5 1352058510 2012-11-04 19:48:30
## 4899     3.5 1352058533 2012-11-04 19:48:53
## 4900     4.0 1351545138 2012-10-29 21:12:18
## 4901     4.5 1352058666 2012-11-04 19:51:06
## 4902     4.5 1352921298 2012-11-14 19:28:18
## 4903     3.0 1353797039 2012-11-24 22:43:59
## 4904     4.5 1352921315 2012-11-14 19:28:35
## 4905     4.0 1352597697 2012-11-11 01:34:57
## 4906     3.0 1353962805 2012-11-26 20:46:45
## 4907     4.0 1352058503 2012-11-04 19:48:23
## 4908     3.5 1353868066 2012-11-25 18:27:46
## 4909     5.0 1352597714 2012-11-11 01:35:14
## 4910     3.5 1351545097 2012-10-29 21:11:37
## 4911     4.0 1352838254 2012-11-13 20:24:14
## 4912     4.0 1352920880 2012-11-14 19:21:20
## 4913     4.0 1353709027 2012-11-23 22:17:07
## 4914     4.5 1365194986 2013-04-05 20:49:46
## 4915     3.0 1352058770 2012-11-04 19:52:50
## 4916     5.0 1352058561 2012-11-04 19:49:21
## 4917     2.5 1353344881 2012-11-19 17:08:01
## 4918     2.5 1352921375 2012-11-14 19:29:35
## 4919     0.5 1357253685 2013-01-03 22:54:45
## 4920     4.0 1352838245 2012-11-13 20:24:05
## 4921     3.5 1352838242 2012-11-13 20:24:02
## 4922     3.5 1361215017 2013-02-18 19:16:57
## 4923     2.5 1352058524 2012-11-04 19:48:44
## 4924     3.0 1353708936 2012-11-23 22:15:36
## 4925     3.5 1351544480 2012-10-29 21:01:20
## 4926     3.5 1351545114 2012-10-29 21:11:54
## 4927     5.0 1352597791 2012-11-11 01:36:31
## 4928     3.5 1352597733 2012-11-11 01:35:33
## 4929     5.0 1352058657 2012-11-04 19:50:57
## 4930     3.0 1353868028 2012-11-25 18:27:08
## 4931     5.0 1352597790 2012-11-11 01:36:30
## 4932     3.0 1352838257 2012-11-13 20:24:17
## 4933     5.0 1352920912 2012-11-14 19:21:52
## 4934     3.0 1353345002 2012-11-19 17:10:02
## 4935     3.5 1353345011 2012-11-19 17:10:11
## 4936     4.5 1357253777 2013-01-03 22:56:17
## 4937     3.0 1352838237 2012-11-13 20:23:57
## 4938     5.0 1352597777 2012-11-11 01:36:17
## 4939     3.5 1353709018 2012-11-23 22:16:58
## 4940     3.5 1352597735 2012-11-11 01:35:35
## 4941     2.0 1353797029 2012-11-24 22:43:49
## 4942     3.5 1351545047 2012-10-29 21:10:47
## 4943     3.5 1352838229 2012-11-13 20:23:49
## 4944     0.5 1357253681 2013-01-03 22:54:41
## 4945     2.0 1353345007 2012-11-19 17:10:07
## 4946     3.5 1352597807 2012-11-11 01:36:47
## 4947     3.5 1352597692 2012-11-11 01:34:52
## 4948     4.5 1353344976 2012-11-19 17:09:36
## 4949     3.5 1354313972 2012-11-30 22:19:32
## 4950     2.0 1354313516 2012-11-30 22:11:56
## 4951     4.0 1351544798 2012-10-29 21:06:38
## 4952     3.5 1351545019 2012-10-29 21:10:19
## 4953     4.5 1354313566 2012-11-30 22:12:46
## 4954     4.0  939077258 1999-10-04 22:47:38
## 4955     5.0  939079553 1999-10-04 23:25:53
## 4956     4.0  939076893 1999-10-04 22:41:33
## 4957     4.0  939077164 1999-10-04 22:46:04
## 4958     5.0  939079002 1999-10-04 23:16:42
## 4959     4.0  939076893 1999-10-04 22:41:33
## 4960     4.0  939080935 1999-10-04 23:48:55
## 4961     4.0  939078921 1999-10-04 23:15:21
## 4962     4.0  939079553 1999-10-04 23:25:53
## 4963     4.0  939080148 1999-10-04 23:35:48
## 4964     4.0  939079118 1999-10-04 23:18:38
## 4965     5.0  939080090 1999-10-04 23:34:50
## 4966     3.0  939079855 1999-10-04 23:30:55
## 4967     4.0  939079553 1999-10-04 23:25:53
## 4968     2.0  939082326 1999-10-05 00:12:06
## 4969     3.0  939078921 1999-10-04 23:15:21
## 4970     2.0  939077258 1999-10-04 22:47:38
## 4971     4.0  939079779 1999-10-04 23:29:39
## 4972     4.0  939082276 1999-10-05 00:11:16
## 4973     1.0  939076569 1999-10-04 22:36:09
## 4974     4.0  939076677 1999-10-04 22:37:57
## 4975     5.0  939076519 1999-10-04 22:35:19
## 4976     5.0  939076519 1999-10-04 22:35:19
## 4977     5.0  938942396 1999-10-03 09:19:56
## 4978     5.0  938944078 1999-10-03 09:47:58
## 4979     4.0  938944407 1999-10-03 09:53:27
## 4980     5.0  938944923 1999-10-03 10:02:03
## 4981     5.0  938944407 1999-10-03 09:53:27
## 4982     5.0  938944744 1999-10-03 09:59:04
## 4983     5.0  938944550 1999-10-03 09:55:50
## 4984     3.0  938944636 1999-10-03 09:57:16
## 4985     4.0  938942682 1999-10-03 09:24:42
## 4986     5.0  938944975 1999-10-03 10:02:55
## 4987     4.0  938944975 1999-10-03 10:02:55
## 4988     4.0  938943150 1999-10-03 09:32:30
## 4989     5.0  938942682 1999-10-03 09:24:42
## 4990     4.0  938942755 1999-10-03 09:25:55
## 4991     5.0  938942821 1999-10-03 09:27:01
## 4992     4.0  938944683 1999-10-03 09:58:03
## 4993     2.0  938944139 1999-10-03 09:48:59
## 4994     5.0  938944408 1999-10-03 09:53:28
## 4995     5.0  938943028 1999-10-03 09:30:28
## 4996     4.0  938942614 1999-10-03 09:23:34
## 4997     5.0  938943524 1999-10-03 09:38:44
## 4998     4.0  938944744 1999-10-03 09:59:04
## 4999     5.0  938943150 1999-10-03 09:32:30
## 5000     5.0  938944457 1999-10-03 09:54:17
## 5001     5.0  938943202 1999-10-03 09:33:22
## 5002     5.0  938944923 1999-10-03 10:02:03
## 5003     5.0  938943028 1999-10-03 09:30:28
## 5004     5.0  938944505 1999-10-03 09:55:05
## 5005     4.0  938944139 1999-10-03 09:48:59
## 5006     5.0  938944636 1999-10-03 09:57:16
## 5007     4.0  938943245 1999-10-03 09:34:05
## 5008     5.0  938942458 1999-10-03 09:20:58
## 5009     4.0  938944683 1999-10-03 09:58:03
## 5010     1.0  938942755 1999-10-03 09:25:55
## 5011     4.0  938944505 1999-10-03 09:55:05
## 5012     5.0  938943202 1999-10-03 09:33:22
## 5013     4.0  938944407 1999-10-03 09:53:27
## 5014     3.0  938943150 1999-10-03 09:32:30
## 5015     2.0  938942821 1999-10-03 09:27:01
## 5016     3.0  938942529 1999-10-03 09:22:09
## 5017     5.0  938944457 1999-10-03 09:54:17
## 5018     5.0  938943408 1999-10-03 09:36:48
## 5019     4.0  938943524 1999-10-03 09:38:44
## 5020     4.0  938944975 1999-10-03 10:02:55
## 5021     5.0  938944237 1999-10-03 09:50:37
## 5022     2.0  938944923 1999-10-03 10:02:03
## 5023     4.0  938943150 1999-10-03 09:32:30
## 5024     5.0  938944505 1999-10-03 09:55:05
## 5025     5.0  938943879 1999-10-03 09:44:39
## 5026     4.0  938943976 1999-10-03 09:46:16
## 5027     5.0 1313927169 2011-08-21 11:46:09
## 5028     2.0 1313925564 2011-08-21 11:19:24
## 5029     0.5 1313925259 2011-08-21 11:14:19
## 5030     3.0 1313925074 2011-08-21 11:11:14
## 5031     0.5 1313925699 2011-08-21 11:21:39
## 5032     0.5 1313925185 2011-08-21 11:13:05
## 5033     1.5 1313925639 2011-08-21 11:20:39
## 5034     3.5 1313924474 2011-08-21 11:01:14
## 5035     3.0 1313924446 2011-08-21 11:00:46
## 5036     5.0 1313927206 2011-08-21 11:46:46
## 5037     3.0 1313925688 2011-08-21 11:21:28
## 5038     2.5 1313925589 2011-08-21 11:19:49
## 5039     0.5 1313925693 2011-08-21 11:21:33
## 5040     4.0 1313924856 2011-08-21 11:07:36
## 5041     2.0 1313925220 2011-08-21 11:13:40
## 5042     2.5 1313927224 2011-08-21 11:47:04
## 5043     5.0 1313927249 2011-08-21 11:47:29
## 5044     2.5 1313927226 2011-08-21 11:47:06
## 5045     4.0 1313925421 2011-08-21 11:17:01
## 5046     4.5 1313927193 2011-08-21 11:46:33
## 5047     5.0 1313927309 2011-08-21 11:48:29
## 5048     3.0 1313924902 2011-08-21 11:08:22
## 5049     4.0  944943070 1999-12-11 20:11:10
## 5050     2.0  945277634 1999-12-15 17:07:14
## 5051     4.0  945276746 1999-12-15 16:52:26
## 5052     4.0  968786809 2000-09-12 19:26:49
## 5053     4.0  948141296 2000-01-17 20:34:56
## 5054     4.0  945276564 1999-12-15 16:49:24
## 5055     5.0  945115684 1999-12-13 20:08:04
## 5056     2.0  945277971 1999-12-15 17:12:51
## 5057     5.0  945276705 1999-12-15 16:51:45
## 5058     4.0  945278756 1999-12-15 17:25:56
## 5059     4.0  945115684 1999-12-13 20:08:04
## 5060     2.0  945122277 1999-12-13 21:57:57
## 5061     4.0 1039067883 2002-12-05 05:58:03
## 5062     3.0  945278415 1999-12-15 17:20:15
## 5063     3.0 1060795346 2003-08-13 17:22:26
## 5064     4.0  986745716 2001-04-08 16:01:56
## 5065     5.0  945113887 1999-12-13 19:38:07
## 5066     5.0  945122740 1999-12-13 22:05:40
## 5067     2.0  945277094 1999-12-15 16:58:14
## 5068     4.0 1007352836 2001-12-03 04:13:56
## 5069     2.0  945706968 1999-12-20 16:22:48
## 5070     4.0  945277812 1999-12-15 17:10:12
## 5071     5.0  945122218 1999-12-13 21:56:58
## 5072     4.0  945113485 1999-12-13 19:31:25
## 5073     3.0  994458116 2001-07-06 22:21:56
## 5074     4.0  951010161 2000-02-20 01:29:21
## 5075     5.0  945122277 1999-12-13 21:57:57
## 5076     3.0  945277588 1999-12-15 17:06:28
## 5077     5.0  948166619 2000-01-18 03:36:59
## 5078     1.0  945113597 1999-12-13 19:33:17
## 5079     4.0  948141601 2000-01-17 20:40:01
## 5080     4.0  994458393 2001-07-06 22:26:33
## 5081     2.0  999626484 2001-09-04 18:01:24
## 5082     3.0  994458432 2001-07-06 22:27:12
## 5083     2.0  945278527 1999-12-15 17:22:07
## 5084     2.0  945277654 1999-12-15 17:07:34
## 5085     4.0  996057525 2001-07-25 10:38:45
## 5086     2.0  945279013 1999-12-15 17:30:13
## 5087     2.0  986009538 2001-03-31 03:32:18
## 5088     4.0  945114746 1999-12-13 19:52:26
## 5089     4.0  948141681 2000-01-17 20:41:21
## 5090     3.0  945276587 1999-12-15 16:49:47
## 5091     4.0  948167472 2000-01-18 03:51:12
## 5092     4.0  951008613 2000-02-20 01:03:33
## 5093     4.0  996883776 2001-08-04 00:09:36
## 5094     4.0  945115182 1999-12-13 19:59:42
## 5095     5.0  964459362 2000-07-24 17:22:42
## 5096     1.0  952884892 2000-03-12 18:14:52
## 5097     5.0  994439589 2001-07-06 17:13:09
## 5098     5.0  945122065 1999-12-13 21:54:25
## 5099     4.0  945277330 1999-12-15 17:02:10
## 5100     5.0  945112993 1999-12-13 19:23:13
## 5101     5.0  945121922 1999-12-13 21:52:02
## 5102     2.0  994458003 2001-07-06 22:20:03
## 5103     5.0  945114800 1999-12-13 19:53:20
## 5104     5.0  945277064 1999-12-15 16:57:44
## 5105     4.0  960819270 2000-06-12 14:14:30
## 5106     5.0  945122709 1999-12-13 22:05:09
## 5107     4.0  945122526 1999-12-13 22:02:06
## 5108     3.0  945276685 1999-12-15 16:51:25
## 5109     4.0  945277588 1999-12-15 17:06:28
## 5110     3.0  945277422 1999-12-15 17:03:42
## 5111     4.0  945277277 1999-12-15 17:01:17
## 5112     4.0  945276660 1999-12-15 16:51:00
## 5113     4.0  945277224 1999-12-15 17:00:24
## 5114     4.0  945277520 1999-12-15 17:05:20
## 5115     4.0  948165514 2000-01-18 03:18:34
## 5116     5.0  945114031 1999-12-13 19:40:31
## 5117     2.0  995228802 2001-07-15 20:26:42
## 5118     2.0  945278777 1999-12-15 17:26:17
## 5119     4.0  946161737 1999-12-25 22:42:17
## 5120     4.0  945114071 1999-12-13 19:41:11
## 5121     2.0  945277698 1999-12-15 17:08:18
## 5122     5.0  945115767 1999-12-13 20:09:27
## 5123     3.0  954818652 2000-04-04 03:24:12
## 5124     4.0  945277634 1999-12-15 17:07:14
## 5125     4.0  945122305 1999-12-13 21:58:25
## 5126     4.0  986009342 2001-03-31 03:29:02
## 5127     4.0  945277919 1999-12-15 17:11:59
## 5128     5.0  945276439 1999-12-15 16:47:19
## 5129     5.0  945122219 1999-12-13 21:56:59
## 5130     4.0  944943155 1999-12-11 20:12:35
## 5131     4.0  945277405 1999-12-15 17:03:25
## 5132     4.0  945112993 1999-12-13 19:23:13
## 5133     4.0  945278328 1999-12-15 17:18:48
## 5134     5.0  945115411 1999-12-13 20:03:31
## 5135     4.0  945114453 1999-12-13 19:47:33
## 5136     4.0  948140634 2000-01-17 20:23:54
## 5137     4.0  945278179 1999-12-15 17:16:19
## 5138     4.0  945276493 1999-12-15 16:48:13
## 5139     4.0  945277277 1999-12-15 17:01:17
## 5140     4.0  968786739 2000-09-12 19:25:39
## 5141     5.0  945122127 1999-12-13 21:55:27
## 5142     5.0  945122648 1999-12-13 22:04:08
## 5143     5.0  945114031 1999-12-13 19:40:31
## 5144     4.0  945278094 1999-12-15 17:14:54
## 5145     2.0  945277535 1999-12-15 17:05:35
## 5146     2.0  945116219 1999-12-13 20:16:59
## 5147     5.0  945121654 1999-12-13 21:47:34
## 5148     3.0  945122884 1999-12-13 22:08:04
## 5149     2.0  945277742 1999-12-15 17:09:02
## 5150     4.0  946161937 1999-12-25 22:45:37
## 5151     4.0  945115684 1999-12-13 20:08:04
## 5152     4.0  945115018 1999-12-13 19:56:58
## 5153     3.0  945276726 1999-12-15 16:52:06
## 5154     4.0  960820031 2000-06-12 14:27:11
## 5155     4.0  948166511 2000-01-18 03:35:11
## 5156     4.0  948140535 2000-01-17 20:22:15
## 5157     5.0  945115684 1999-12-13 20:08:04
## 5158     4.0  945113656 1999-12-13 19:34:16
## 5159     3.0  945276726 1999-12-15 16:52:06
## 5160     4.0  945278021 1999-12-15 17:13:41
## 5161     2.0  945277405 1999-12-15 17:03:25
## 5162     5.0  945276393 1999-12-15 16:46:33
## 5163     4.0  948140376 2000-01-17 20:19:36
## 5164     5.0  945115727 1999-12-13 20:08:47
## 5165     4.0  945294508 1999-12-15 21:48:28
## 5166     4.0  945114031 1999-12-13 19:40:31
## 5167     3.0  945116219 1999-12-13 20:16:59
## 5168     5.0  945122884 1999-12-13 22:08:04
## 5169     4.0  960918653 2000-06-13 17:50:53
## 5170     4.0  945122819 1999-12-13 22:06:59
## 5171     5.0  945121703 1999-12-13 21:48:23
## 5172     5.0  946162223 1999-12-25 22:50:23
## 5173     3.0  951009961 2000-02-20 01:26:01
## 5174     5.0  945276778 1999-12-15 16:52:58
## 5175     2.0  945277181 1999-12-15 16:59:41
## 5176     3.0  945278043 1999-12-15 17:14:03
## 5177     4.0  945277145 1999-12-15 16:59:05
## 5178     4.0  945277919 1999-12-15 17:11:59
## 5179     3.0  945112993 1999-12-13 19:23:13
## 5180     3.0  945278328 1999-12-15 17:18:48
## 5181     3.0  951009383 2000-02-20 01:16:23
## 5182     4.0  990239999 2001-05-19 02:39:59
## 5183     4.0  945277224 1999-12-15 17:00:24
## 5184     3.0  945276900 1999-12-15 16:55:00
## 5185     4.0  945115105 1999-12-13 19:58:25
## 5186     5.0  945277026 1999-12-15 16:57:06
## 5187     1.0  945278630 1999-12-15 17:23:50
## 5188     4.0  945276918 1999-12-15 16:55:18
## 5189     5.0  945113250 1999-12-13 19:27:30
## 5190     2.0  960819972 2000-06-12 14:26:12
## 5191     5.0  945123379 1999-12-13 22:16:19
## 5192     4.0  945280609 1999-12-15 17:56:49
## 5193     4.0  948167638 2000-01-18 03:53:58
## 5194     4.0  948167359 2000-01-18 03:49:19
## 5195     4.0  948167200 2000-01-18 03:46:40
## 5196     5.0  945113329 1999-12-13 19:28:49
## 5197     5.0  945113429 1999-12-13 19:30:29
## 5198     4.0  945115727 1999-12-13 20:08:47
## 5199     4.0  952885624 2000-03-12 18:27:04
## 5200     5.0  945114843 1999-12-13 19:54:03
## 5201     5.0  945115217 1999-12-13 20:00:17
## 5202     5.0  945280543 1999-12-15 17:55:43
## 5203     5.0  945123035 1999-12-13 22:10:35
## 5204     4.0  945114984 1999-12-13 19:56:24
## 5205     5.0  945123334 1999-12-13 22:15:34
## 5206     4.0  945114585 1999-12-13 19:49:45
## 5207     4.0  961353806 2000-06-18 18:43:26
## 5208     4.0  945123629 1999-12-13 22:20:29
## 5209     4.0  945115133 1999-12-13 19:58:53
## 5210     4.0  948166413 2000-01-18 03:33:33
## 5211     4.0  945116296 1999-12-13 20:18:16
## 5212     3.0  986009052 2001-03-31 03:24:12
## 5213     4.0  960819546 2000-06-12 14:19:06
## 5214     3.0  945295766 1999-12-15 22:09:26
## 5215     3.0  945295955 1999-12-15 22:12:35
## 5216     4.0  945295766 1999-12-15 22:09:26
## 5217     2.0  945295766 1999-12-15 22:09:26
## 5218     3.0  945295766 1999-12-15 22:09:26
## 5219     4.0  945295766 1999-12-15 22:09:26
## 5220     3.0  945278498 1999-12-15 17:21:38
## 5221     4.0  945295702 1999-12-15 22:08:22
## 5222     4.0  968785945 2000-09-12 19:12:25
## 5223     4.0  945115767 1999-12-13 20:09:27
## 5224     4.0  945116137 1999-12-13 20:15:37
## 5225     3.0  946162006 1999-12-25 22:46:46
## 5226     3.0  945295466 1999-12-15 22:04:26
## 5227     2.0  945114585 1999-12-13 19:49:45
## 5228     5.0  945294292 1999-12-15 21:44:52
## 5229     4.0  945294437 1999-12-15 21:47:17
## 5230     4.0  945114495 1999-12-13 19:48:15
## 5231     4.0  945113844 1999-12-13 19:37:24
## 5232     4.0  948166679 2000-01-18 03:37:59
## 5233     4.0  945294811 1999-12-15 21:53:31
## 5234     5.0  948167359 2000-01-18 03:49:19
## 5235     4.0  945294381 1999-12-15 21:46:21
## 5236     1.0  945295052 1999-12-15 21:57:32
## 5237     4.0  948141124 2000-01-17 20:32:04
## 5238     1.0  945115105 1999-12-13 19:58:25
## 5239     5.0  945121755 1999-12-13 21:49:15
## 5240     5.0  945113694 1999-12-13 19:34:54
## 5241     5.0  945294381 1999-12-15 21:46:21
## 5242     4.0  945115628 1999-12-13 20:07:08
## 5243     4.0  960917771 2000-06-13 17:36:11
## 5244     4.0  952885531 2000-03-12 18:25:31
## 5245     3.0 1039068134 2002-12-05 06:02:14
## 5246     4.0  945116296 1999-12-13 20:18:16
## 5247     4.0  945115411 1999-12-13 20:03:31
## 5248     2.0  960819766 2000-06-12 14:22:46
## 5249     3.0  945294508 1999-12-15 21:48:28
## 5250     3.0  945294700 1999-12-15 21:51:40
## 5251     3.0  945122605 1999-12-13 22:03:25
## 5252     5.0  945114819 1999-12-13 19:53:39
## 5253     4.0  968786007 2000-09-12 19:13:27
## 5254     4.0  945294437 1999-12-15 21:47:17
## 5255     3.0  945114638 1999-12-13 19:50:38
## 5256     4.0  944943070 1999-12-11 20:11:10
## 5257     4.0  945123680 1999-12-13 22:21:20
## 5258     3.0  945114495 1999-12-13 19:48:15
## 5259     5.0  945294292 1999-12-15 21:44:52
## 5260     3.0  948166414 2000-01-18 03:33:34
## 5261     2.0  945114673 1999-12-13 19:51:13
## 5262     5.0  945113377 1999-12-13 19:29:37
## 5263     5.0  945123246 1999-12-13 22:14:06
## 5264     4.0  945294508 1999-12-15 21:48:28
## 5265     3.0  951007847 2000-02-20 00:50:47
## 5266     5.0  945114231 1999-12-13 19:43:51
## 5267     4.0  945295323 1999-12-15 22:02:03
## 5268     4.0  952884971 2000-03-12 18:16:11
## 5269     5.0  945294381 1999-12-15 21:46:21
## 5270     5.0  945123035 1999-12-13 22:10:35
## 5271     4.0  945115684 1999-12-13 20:08:04
## 5272     5.0  948166414 2000-01-18 03:33:34
## 5273     4.0  945296019 1999-12-15 22:13:39
## 5274     5.0  945294292 1999-12-15 21:44:52
## 5275     5.0  945123065 1999-12-13 22:11:05
## 5276     5.0  945114800 1999-12-13 19:53:20
## 5277     5.0  945123522 1999-12-13 22:18:42
## 5278     2.0  945114453 1999-12-13 19:47:33
## 5279     4.0  945116137 1999-12-13 20:15:37
## 5280     5.0  945114495 1999-12-13 19:48:15
## 5281     4.0  945114271 1999-12-13 19:44:31
## 5282     4.0  945122127 1999-12-13 21:55:27
## 5283     4.0  945294508 1999-12-15 21:48:28
## 5284     4.0  952885104 2000-03-12 18:18:24
## 5285     5.0  945123210 1999-12-13 22:13:30
## 5286     5.0  945123065 1999-12-13 22:11:05
## 5287     4.0  945114365 1999-12-13 19:46:05
## 5288     4.0  945123827 1999-12-13 22:23:47
## 5289     5.0  945114843 1999-12-13 19:54:03
## 5290     4.0  945121960 1999-12-13 21:52:40
## 5291     5.0  945115218 1999-12-13 20:00:18
## 5292     5.0  945112993 1999-12-13 19:23:13
## 5293     5.0  951010688 2000-02-20 01:38:08
## 5294     4.0  945115293 1999-12-13 20:01:33
## 5295     5.0  945123246 1999-12-13 22:14:06
## 5296     5.0  945114271 1999-12-13 19:44:31
## 5297     5.0  945122526 1999-12-13 22:02:06
## 5298     3.0  945113844 1999-12-13 19:37:24
## 5299     4.0  948166855 2000-01-18 03:40:55
## 5300     4.0  945880277 1999-12-22 16:31:17
## 5301     3.0  945294811 1999-12-15 21:53:31
## 5302     4.0  945294509 1999-12-15 21:48:29
## 5303     5.0  945123170 1999-12-13 22:12:50
## 5304     4.0  945115684 1999-12-13 20:08:04
## 5305     4.0  945115218 1999-12-13 20:00:18
## 5306     4.0  944943155 1999-12-11 20:12:35
## 5307     4.0  952885624 2000-03-12 18:27:04
## 5308     3.0  951009284 2000-02-20 01:14:44
## 5309     4.0  945294509 1999-12-15 21:48:29
## 5310     4.0  945295543 1999-12-15 22:05:43
## 5311     4.0  960917865 2000-06-13 17:37:45
## 5312     5.0  945295702 1999-12-15 22:08:22
## 5313     4.0  945296019 1999-12-15 22:13:39
## 5314     4.0  945121560 1999-12-13 21:46:00
## 5315     5.0  945122846 1999-12-13 22:07:26
## 5316     3.0  945115456 1999-12-13 20:04:16
## 5317     4.0  945295052 1999-12-15 21:57:32
## 5318     4.0  945115807 1999-12-13 20:10:07
## 5319     4.0  945879533 1999-12-22 16:18:53
## 5320     5.0  945113981 1999-12-13 19:39:41
## 5321     5.0  945277990 1999-12-15 17:13:10
## 5322     4.0  945277207 1999-12-15 17:00:07
## 5323     3.0  945277674 1999-12-15 17:07:54
## 5324     4.0  945295052 1999-12-15 21:57:32
## 5325     4.0  945295543 1999-12-15 22:05:43
## 5326     3.0  945277556 1999-12-15 17:05:56
## 5327     4.0  945280937 1999-12-15 18:02:17
## 5328     3.0  960918255 2000-06-13 17:44:15
## 5329     3.0  945278359 1999-12-15 17:19:19
## 5330     4.0  994439147 2001-07-06 17:05:47
## 5331     5.0  945114495 1999-12-13 19:48:15
## 5332     5.0  945294509 1999-12-15 21:48:29
## 5333     4.0  945277002 1999-12-15 16:56:42
## 5334     3.0  945115018 1999-12-13 19:56:58
## 5335     4.0  945278156 1999-12-15 17:15:56
## 5336     3.0  945277760 1999-12-15 17:09:20
## 5337     3.0  960819894 2000-06-12 14:24:54
## 5338     4.0  948142097 2000-01-17 20:48:17
## 5339     4.0  945278857 1999-12-15 17:27:37
## 5340     5.0  945114724 1999-12-13 19:52:04
## 5341     4.0  945277520 1999-12-15 17:05:20
## 5342     4.0  945278415 1999-12-15 17:20:15
## 5343     4.0  945277797 1999-12-15 17:09:57
## 5344     3.0 1011327941 2002-01-18 04:25:41
## 5345     4.0  980135256 2001-01-22 03:47:36
## 5346     4.0  945278003 1999-12-15 17:13:23
## 5347     3.0  945278893 1999-12-15 17:28:13
## 5348     4.0  948165379 2000-01-18 03:16:19
## 5349     4.0  945880463 1999-12-22 16:34:23
## 5350     5.0  946162247 1999-12-25 22:50:47
## 5351     2.0  945277026 1999-12-15 16:57:06
## 5352     3.0  945122819 1999-12-13 22:06:59
## 5353     4.0  945277971 1999-12-15 17:12:51
## 5354     5.0  945276984 1999-12-15 16:56:24
## 5355     5.0  945276587 1999-12-15 16:49:47
## 5356     2.0  945123592 1999-12-13 22:19:52
## 5357     3.0  945276660 1999-12-15 16:51:00
## 5358     5.0  945113887 1999-12-13 19:38:07
## 5359     4.0  968786680 2000-09-12 19:24:40
## 5360     4.0  948140224 2000-01-17 20:17:04
## 5361     3.0  945276960 1999-12-15 16:56:00
## 5362     5.0  945116175 1999-12-13 20:16:15
## 5363     4.0  945276439 1999-12-15 16:47:19
## 5364     4.0  945122330 1999-12-13 21:58:50
## 5365     5.0  945123741 1999-12-13 22:22:21
## 5366     5.0  946162223 1999-12-25 22:50:23
## 5367     4.0  946161879 1999-12-25 22:44:39
## 5368     3.0  948142097 2000-01-17 20:48:17
## 5369     5.0  945114071 1999-12-13 19:41:11
## 5370     4.0  945115767 1999-12-13 20:09:27
## 5371     5.0  945121832 1999-12-13 21:50:32
## 5372     5.0  945277361 1999-12-15 17:02:41
## 5373     4.0  945277460 1999-12-15 17:04:20
## 5374     2.0  945122710 1999-12-13 22:05:10
## 5375     5.0  945116296 1999-12-13 20:18:16
## 5376     3.0  945122710 1999-12-13 22:05:10
## 5377     4.0  945115933 1999-12-13 20:12:13
## 5378     4.0  994439516 2001-07-06 17:11:56
## 5379     5.0  951010688 2000-02-20 01:38:08
## 5380     4.0  986008828 2001-03-31 03:20:28
## 5381     4.0  945278540 1999-12-15 17:22:20
## 5382     3.0  945279033 1999-12-15 17:30:33
## 5383     4.0  948141222 2000-01-17 20:33:42
## 5384     3.0  945276705 1999-12-15 16:51:45
## 5385     4.0  949977510 2000-02-08 02:38:30
## 5386     3.0  945279097 1999-12-15 17:31:37
## 5387     5.0  945122010 1999-12-13 21:53:30
## 5388     4.0  948141904 2000-01-17 20:45:04
## 5389     2.0 1030334513 2002-08-26 04:01:53
## 5390     1.0  948165859 2000-01-18 03:24:19
## 5391     5.0  945122605 1999-12-13 22:03:25
## 5392     4.0  945276249 1999-12-15 16:44:09
## 5393     4.0  945278278 1999-12-15 17:17:58
## 5394     4.0  945115864 1999-12-13 20:11:04
## 5395     3.0  945296041 1999-12-15 22:14:01
## 5396     4.0  945114192 1999-12-13 19:43:12
## 5397     4.0  945123854 1999-12-13 22:24:14
## 5398     4.0  945113057 1999-12-13 19:24:17
## 5399     4.0  948167081 2000-01-18 03:44:41
## 5400     4.0  952885034 2000-03-12 18:17:14
## 5401     5.0  945114883 1999-12-13 19:54:43
## 5402     4.0  945114961 1999-12-13 19:56:01
## 5403     4.0  945113844 1999-12-13 19:37:24
## 5404     4.0  945123497 1999-12-13 22:18:17
## 5405     3.0  945115767 1999-12-13 20:09:27
## 5406     5.0  945114800 1999-12-13 19:53:20
## 5407     5.0  945294381 1999-12-15 21:46:21
## 5408     5.0  945114883 1999-12-13 19:54:43
## 5409     4.0  986738498 2001-04-08 14:01:38
## 5410     4.0  945294381 1999-12-15 21:46:21
## 5411     3.0  945116252 1999-12-13 20:17:32
## 5412     4.0  945294641 1999-12-15 21:50:41
## 5413     5.0  945123317 1999-12-13 22:15:17
## 5414     4.0  945294641 1999-12-15 21:50:41
## 5415     4.0  945294764 1999-12-15 21:52:44
## 5416     3.0  945278278 1999-12-15 17:17:58
## 5417     3.0  994457962 2001-07-06 22:19:22
## 5418     3.0  948167472 2000-01-18 03:51:12
## 5419     4.0  945294811 1999-12-15 21:53:31
## 5420     3.0  945278244 1999-12-15 17:17:24
## 5421     3.0  948167277 2000-01-18 03:47:57
## 5422     3.0  952884997 2000-03-12 18:16:37
## 5423     5.0 1039070774 2002-12-05 06:46:14
## 5424     1.0  945115480 1999-12-13 20:04:40
## 5425     4.0  945115548 1999-12-13 20:05:48
## 5426     5.0  945113656 1999-12-13 19:34:16
## 5427     1.0  944943070 1999-12-11 20:11:10
## 5428     4.0  945113775 1999-12-13 19:36:15
## 5429     5.0  945294381 1999-12-15 21:46:21
## 5430     4.0  945123718 1999-12-13 22:21:58
## 5431     4.0  951008775 2000-02-20 01:06:15
## 5432     3.0  948166931 2000-01-18 03:42:11
## 5433     4.0  986735779 2001-04-08 13:16:19
## 5434     2.0  945277311 1999-12-15 17:01:51
## 5435     4.0  960818505 2000-06-12 14:01:45
## 5436     3.0  945295156 1999-12-15 21:59:16
## 5437     4.0  945277405 1999-12-15 17:03:25
## 5438     2.0  994439964 2001-07-06 17:19:24
## 5439     4.0  945276856 1999-12-15 16:54:16
## 5440     3.0  945295466 1999-12-15 22:04:26
## 5441     3.0  945276493 1999-12-15 16:48:13
## 5442     4.0  945294437 1999-12-15 21:47:17
## 5443     4.0  945294811 1999-12-15 21:53:31
## 5444     3.0  952744480 2000-03-11 03:14:40
## 5445     3.0  945294641 1999-12-15 21:50:41
## 5446     4.0  948166679 2000-01-18 03:37:59
## 5447     4.0  948141369 2000-01-17 20:36:09
## 5448     2.0  968788273 2000-09-12 19:51:13
## 5449     2.0  945295156 1999-12-15 21:59:16
## 5450     4.0  945276960 1999-12-15 16:56:00
## 5451     4.0  945116219 1999-12-13 20:16:59
## 5452     3.0  945295766 1999-12-15 22:09:26
## 5453     3.0  945116220 1999-12-13 20:17:00
## 5454     3.0  945294700 1999-12-15 21:51:40
## 5455     4.0  945295052 1999-12-15 21:57:32
## 5456     1.0  945294872 1999-12-15 21:54:32
## 5457     2.0  945113656 1999-12-13 19:34:16
## 5458     5.0  945280501 1999-12-15 17:55:01
## 5459     4.0  946162071 1999-12-25 22:47:51
## 5460     4.0  945294381 1999-12-15 21:46:21
## 5461     4.0  952743252 2000-03-11 02:54:12
## 5462     4.0  945295955 1999-12-15 22:12:35
## 5463     3.0  968787840 2000-09-12 19:44:00
## 5464     3.0  945294700 1999-12-15 21:51:40
## 5465     5.0  945114961 1999-12-13 19:56:01
## 5466     5.0  945276882 1999-12-15 16:54:42
## 5467     3.0  945276439 1999-12-15 16:47:19
## 5468     4.0  945294641 1999-12-15 21:50:41
## 5469     5.0  945115900 1999-12-13 20:11:40
## 5470     4.0  948167638 2000-01-18 03:53:58
## 5471     4.0  945294764 1999-12-15 21:52:44
## 5472     4.0  945276685 1999-12-15 16:51:25
## 5473     4.0  951009217 2000-02-20 01:13:37
## 5474     3.0  945277634 1999-12-15 17:07:14
## 5475     2.0  960917865 2000-06-13 17:37:45
## 5476     3.0  948165999 2000-01-18 03:26:39
## 5477     2.0  945294858 1999-12-15 21:54:18
## 5478     2.0  945295069 1999-12-15 21:57:49
## 5479     4.0  945277094 1999-12-15 16:58:14
## 5480     5.0 1037583956 2002-11-18 01:45:56
## 5481     5.0  945278188 1999-12-15 17:16:28
## 5482     3.0  945277113 1999-12-15 16:58:33
## 5483     1.0  945295214 1999-12-15 22:00:14
## 5484     5.0  945114406 1999-12-13 19:46:46
## 5485     5.0  945122526 1999-12-13 22:02:06
## 5486     2.0  945278963 1999-12-15 17:29:23
## 5487     5.0  945115512 1999-12-13 20:05:12
## 5488     4.0  945294509 1999-12-15 21:48:29
## 5489     4.0  945276393 1999-12-15 16:46:33
## 5490     4.0  948069839 2000-01-17 00:43:59
## 5491     3.0  945294811 1999-12-15 21:53:31
## 5492     4.0  945114453 1999-12-13 19:47:33
## 5493     4.0  945277718 1999-12-15 17:08:38
## 5494     5.0  945122794 1999-12-13 22:06:34
## 5495     3.0  945115512 1999-12-13 20:05:12
## 5496     3.0  945277654 1999-12-15 17:07:34
## 5497     5.0  945115270 1999-12-13 20:01:10
## 5498     3.0  960918218 2000-06-13 17:43:38
## 5499     3.0  945295543 1999-12-15 22:05:43
## 5500     4.0  948070285 2000-01-17 00:51:25
## 5501     5.0  945276439 1999-12-15 16:47:19
## 5502     5.0  948166591 2000-01-18 03:36:31
## 5503     2.0  945295588 1999-12-15 22:06:28
## 5504     4.0  945294811 1999-12-15 21:53:31
## 5505     3.0  945294509 1999-12-15 21:48:29
## 5506     3.0  945880314 1999-12-22 16:31:54
## 5507     4.0  945295052 1999-12-15 21:57:32
## 5508     3.0  945117801 1999-12-13 20:43:21
## 5509     5.0  948167472 2000-01-18 03:51:12
## 5510     5.0  945117110 1999-12-13 20:31:50
## 5511     4.0  945296110 1999-12-15 22:15:10
## 5512     3.0  954818726 2000-04-04 03:25:26
## 5513     3.0  948141433 2000-01-17 20:37:13
## 5514     4.0  945294700 1999-12-15 21:51:40
## 5515     4.0  945295588 1999-12-15 22:06:28
## 5516     4.0  945295156 1999-12-15 21:59:16
## 5517     4.0  945295214 1999-12-15 22:00:14
## 5518     4.0  945278718 1999-12-15 17:25:18
## 5519     3.0  945880314 1999-12-22 16:31:54
## 5520     3.0  945294912 1999-12-15 21:55:12
## 5521     2.0  945294912 1999-12-15 21:55:12
## 5522     4.0  945277094 1999-12-15 16:58:14
## 5523     1.0  945116330 1999-12-13 20:18:50
## 5524     4.0  945122740 1999-12-13 22:05:40
## 5525     4.0  946161981 1999-12-25 22:46:21
## 5526     2.0  945122356 1999-12-13 21:59:16
## 5527     4.0  945296019 1999-12-15 22:13:39
## 5528     4.0  945294437 1999-12-15 21:47:17
## 5529     4.0  945294641 1999-12-15 21:50:41
## 5530     2.0  945295214 1999-12-15 22:00:14
## 5531     4.0  945294764 1999-12-15 21:52:44
## 5532     5.0  945294381 1999-12-15 21:46:21
## 5533     5.0  945115345 1999-12-13 20:02:25
## 5534     3.0  945117685 1999-12-13 20:41:25
## 5535     1.0  945295052 1999-12-15 21:57:32
## 5536     2.0  945294858 1999-12-15 21:54:18
## 5537     3.0  945294764 1999-12-15 21:52:44
## 5538     4.0  945295543 1999-12-15 22:05:43
## 5539     3.0  968788273 2000-09-12 19:51:13
## 5540     3.0  945295466 1999-12-15 22:04:26
## 5541     4.0  945295543 1999-12-15 22:05:43
## 5542     3.0  945295543 1999-12-15 22:05:43
## 5543     4.0  945295703 1999-12-15 22:08:23
## 5544     2.0  945295588 1999-12-15 22:06:28
## 5545     2.0  945295543 1999-12-15 22:05:43
## 5546     3.0  945295543 1999-12-15 22:05:43
## 5547     2.0  994438963 2001-07-06 17:02:43
## 5548     4.0  945295543 1999-12-15 22:05:43
## 5549     4.0  945117600 1999-12-13 20:40:00
## 5550     2.0  945294641 1999-12-15 21:50:41
## 5551     4.0  945117751 1999-12-13 20:42:31
## 5552     3.0  945117284 1999-12-13 20:34:44
## 5553     3.0  945117855 1999-12-13 20:44:15
## 5554     3.0  986009301 2001-03-31 03:28:21
## 5555     4.0  945118444 1999-12-13 20:54:04
## 5556     5.0  945113775 1999-12-13 19:36:15
## 5557     4.0  945118833 1999-12-13 21:00:33
## 5558     5.0  949984748 2000-02-08 04:39:08
## 5559     3.0  945278292 1999-12-15 17:18:12
## 5560     3.0 1012830681 2002-02-04 13:51:21
## 5561     4.0  945294641 1999-12-15 21:50:41
## 5562     4.0  948167578 2000-01-18 03:52:58
## 5563     4.0  945294764 1999-12-15 21:52:44
## 5564     1.0  945295156 1999-12-15 21:59:16
## 5565     3.0  945115326 1999-12-13 20:02:06
## 5566     4.0  946161135 1999-12-25 22:32:15
## 5567     5.0  945118470 1999-12-13 20:54:30
## 5568     4.0  945118833 1999-12-13 21:00:33
## 5569     2.0  945117855 1999-12-13 20:44:15
## 5570     2.0  945114316 1999-12-13 19:45:16
## 5571     3.0  945117685 1999-12-13 20:41:25
## 5572     4.0  945118444 1999-12-13 20:54:04
## 5573     4.0  945294437 1999-12-15 21:47:17
## 5574     5.0  945114961 1999-12-13 19:56:01
## 5575     4.0  945295323 1999-12-15 22:02:03
## 5576     3.0  945116067 1999-12-13 20:14:27
## 5577     5.0  948166619 2000-01-18 03:36:59
## 5578     4.0  945294976 1999-12-15 21:56:16
## 5579     4.0  948141418 2000-01-17 20:36:58
## 5580     4.0  960917771 2000-06-13 17:36:11
## 5581     4.0  986738419 2001-04-08 14:00:19
## 5582     2.0  945294700 1999-12-15 21:51:40
## 5583     5.0  945118236 1999-12-13 20:50:36
## 5584     5.0  945118516 1999-12-13 20:55:16
## 5585     3.0  945118400 1999-12-13 20:53:20
## 5586     4.0 1002769837 2001-10-11 03:10:37
## 5587     4.0  945294764 1999-12-15 21:52:44
## 5588     3.0  945113125 1999-12-13 19:25:25
## 5589     2.0  945113981 1999-12-13 19:39:41
## 5590     3.0  945278645 1999-12-15 17:24:05
## 5591     3.0  945295156 1999-12-15 21:59:16
## 5592     4.0  945294437 1999-12-15 21:47:17
## 5593     5.0  951010736 2000-02-20 01:38:56
## 5594     4.0  945294912 1999-12-15 21:55:12
## 5595     4.0  945277046 1999-12-15 16:57:26
## 5596     4.0  945117941 1999-12-13 20:45:41
## 5597     4.0  947306097 2000-01-08 04:34:57
## 5598     4.0  948140044 2000-01-17 20:14:04
## 5599     4.0  945118685 1999-12-13 20:58:05
## 5600     4.0  945118578 1999-12-13 20:56:18
## 5601     2.0  945295588 1999-12-15 22:06:28
## 5602     5.0  945115018 1999-12-13 19:56:58
## 5603     4.0  945295797 1999-12-15 22:09:57
## 5604     5.0  945118093 1999-12-13 20:48:13
## 5605     4.0  961265714 2000-06-17 18:15:14
## 5606     4.0  945114365 1999-12-13 19:46:05
## 5607     4.0  945277277 1999-12-15 17:01:17
## 5608     4.0  945118754 1999-12-13 20:59:14
## 5609     4.0  945115242 1999-12-13 20:00:42
## 5610     4.0  945277046 1999-12-15 16:57:26
## 5611     4.0  960715669 2000-06-11 09:27:49
## 5612     4.0 1010373507 2002-01-07 03:18:27
## 5613     4.0  945116175 1999-12-13 20:16:15
## 5614     5.0  945113844 1999-12-13 19:37:24
## 5615     5.0  945115548 1999-12-13 20:05:48
## 5616     5.0  945123854 1999-12-13 22:24:14
## 5617     3.0  945295052 1999-12-15 21:57:32
## 5618     5.0  945295703 1999-12-15 22:08:23
## 5619     4.0  948140634 2000-01-17 20:23:54
## 5620     3.0  951162572 2000-02-21 19:49:32
## 5621     5.0  945115628 1999-12-13 20:07:08
## 5622     4.0  945294811 1999-12-15 21:53:31
## 5623     4.0  945118444 1999-12-13 20:54:04
## 5624     4.0  960658881 2000-06-10 17:41:21
## 5625     4.0  945296019 1999-12-15 22:13:39
## 5626     4.0  945115990 1999-12-13 20:13:10
## 5627     5.0  945123170 1999-12-13 22:12:50
## 5628     3.0  945118516 1999-12-13 20:55:16
## 5629     2.0  945118906 1999-12-13 21:01:46
## 5630     4.0  945294641 1999-12-15 21:50:41
## 5631     5.0  945294641 1999-12-15 21:50:41
## 5632     4.0  945294858 1999-12-15 21:54:18
## 5633     4.0  945295466 1999-12-15 22:04:26
## 5634     5.0  945113775 1999-12-13 19:36:15
## 5635     3.0  945295466 1999-12-15 22:04:26
## 5636     3.0  945123497 1999-12-13 22:18:17
## 5637     4.0  951008850 2000-02-20 01:07:30
## 5638     4.0  945295466 1999-12-15 22:04:26
## 5639     4.0  952885177 2000-03-12 18:19:37
## 5640     5.0 1014613565 2002-02-25 05:06:05
## 5641     4.0  945115864 1999-12-13 20:11:04
## 5642     3.0  945276778 1999-12-15 16:52:58
## 5643     4.0  948167081 2000-01-18 03:44:41
## 5644     2.0  945277311 1999-12-15 17:01:51
## 5645     5.0  945113694 1999-12-13 19:34:54
## 5646     4.0  954815132 2000-04-04 02:25:32
## 5647     4.0  948167200 2000-01-18 03:46:40
## 5648     4.0  948141681 2000-01-17 20:41:21
## 5649     3.0  945118516 1999-12-13 20:55:16
## 5650     3.0 1033398031 2002-09-30 15:00:31
## 5651     2.0  945294811 1999-12-15 21:53:31
## 5652     3.0  945113597 1999-12-13 19:33:17
## 5653     4.0  951008931 2000-02-20 01:08:51
## 5654     5.0  945115727 1999-12-13 20:08:47
## 5655     5.0  945294641 1999-12-15 21:50:41
## 5656     4.0  945115767 1999-12-13 20:09:27
## 5657     4.0  948140431 2000-01-17 20:20:31
## 5658     4.0 1039070693 2002-12-05 06:44:53
## 5659     2.0  945116137 1999-12-13 20:15:37
## 5660     5.0  945113057 1999-12-13 19:24:17
## 5661     5.0  948069950 2000-01-17 00:45:50
## 5662     4.0  951009217 2000-02-20 01:13:37
## 5663     3.0  945278929 1999-12-15 17:28:49
## 5664     3.0  986738761 2001-04-08 14:06:01
## 5665     4.0  952885578 2000-03-12 18:26:18
## 5666     3.0  945295766 1999-12-15 22:09:26
## 5667     4.0  946590784 1999-12-30 21:53:04
## 5668     4.0  945115767 1999-12-13 20:09:27
## 5669     4.0  968785158 2000-09-12 18:59:18
## 5670     5.0  949713340 2000-02-05 01:15:40
## 5671     4.0  960918160 2000-06-13 17:42:40
## 5672     3.0  945117941 1999-12-13 20:45:41
## 5673     3.0  948595947 2000-01-23 02:52:27
## 5674     4.0  996708747 2001-08-01 23:32:27
## 5675     4.0  949275887 2000-01-30 23:44:47
## 5676     3.0  950389052 2000-02-12 20:57:32
## 5677     4.0  951162481 2000-02-21 19:48:01
## 5678     5.0  948070040 2000-01-17 00:47:20
## 5679     4.0  951010161 2000-02-20 01:29:21
## 5680     4.0  951162533 2000-02-21 19:48:53
## 5681     4.0  951008022 2000-02-20 00:53:42
## 5682     1.0  952744452 2000-03-11 03:14:12
## 5683     4.0  948142236 2000-01-17 20:50:36
## 5684     4.0  948165577 2000-01-18 03:19:37
## 5685     5.0  948164324 2000-01-18 02:58:44
## 5686     3.0  951009046 2000-02-20 01:10:46
## 5687     4.0  948141904 2000-01-17 20:45:04
## 5688     4.0  952059599 2000-03-03 04:59:59
## 5689     4.0  948070151 2000-01-17 00:49:11
## 5690     4.0  948140634 2000-01-17 20:23:54
## 5691     4.0  952884934 2000-03-12 18:15:34
## 5692     3.0  960819766 2000-06-12 14:22:46
## 5693     3.0  960819374 2000-06-12 14:16:14
## 5694     4.0  948070151 2000-01-17 00:49:11
## 5695     3.0  951009046 2000-02-20 01:10:46
## 5696     4.0  951009251 2000-02-20 01:14:11
## 5697     2.0  952224346 2000-03-05 02:45:46
## 5698     4.0  954816853 2000-04-04 02:54:13
## 5699     5.0  951007880 2000-02-20 00:51:20
## 5700     4.0  951009217 2000-02-20 01:13:37
## 5701     2.0  994439603 2001-07-06 17:13:23
## 5702     4.0  960918606 2000-06-13 17:50:06
## 5703     4.0  953426082 2000-03-19 00:34:42
## 5704     5.0  986008589 2001-03-31 03:16:29
## 5705     4.0  954814831 2000-04-04 02:20:31
## 5706     5.0  952743252 2000-03-11 02:54:12
## 5707     4.0  952743110 2000-03-11 02:51:50
## 5708     5.0  952742834 2000-03-11 02:47:14
## 5709     4.0  952743008 2000-03-11 02:50:08
## 5710     4.0  960917657 2000-06-13 17:34:17
## 5711     2.0  954818846 2000-04-04 03:27:26
## 5712     4.0  952059512 2000-03-03 04:58:32
## 5713     3.0  968788547 2000-09-12 19:55:47
## 5714     3.0  954818365 2000-04-04 03:19:25
## 5715     4.0  986748223 2001-04-08 16:43:43
## 5716     4.0  952742981 2000-03-11 02:49:41
## 5717     4.0  960918160 2000-06-13 17:42:40
## 5718     4.0 1039070693 2002-12-05 06:44:53
## 5719     4.0  954816853 2000-04-04 02:54:13
## 5720     4.0  952744582 2000-03-11 03:16:22
## 5721     2.0  960917865 2000-06-13 17:37:45
## 5722     3.0  954818149 2000-04-04 03:15:49
## 5723     4.0  954816853 2000-04-04 02:54:13
## 5724     4.0  960918381 2000-06-13 17:46:21
## 5725     5.0  960918333 2000-06-13 17:45:33
## 5726     2.0  960819182 2000-06-12 14:13:02
## 5727     4.0  954816963 2000-04-04 02:56:03
## 5728     3.0  955926108 2000-04-16 23:01:48
## 5729     4.0  960819851 2000-06-12 14:24:11
## 5730     3.0  960918425 2000-06-13 17:47:05
## 5731     4.0  954816242 2000-04-04 02:44:02
## 5732     4.0  960818935 2000-06-12 14:08:55
## 5733     4.0  954818244 2000-04-04 03:17:24
## 5734     4.0  954814782 2000-04-04 02:19:42
## 5735     4.0  954815298 2000-04-04 02:28:18
## 5736     3.0  960918218 2000-06-13 17:43:38
## 5737     4.0  954816963 2000-04-04 02:56:03
## 5738     5.0  956970748 2000-04-29 01:12:28
## 5739     3.0  960917702 2000-06-13 17:35:02
## 5740     4.0  960917609 2000-06-13 17:33:29
## 5741     2.0  960819512 2000-06-12 14:18:32
## 5742     4.0  954818365 2000-04-04 03:19:25
## 5743     3.0  957052972 2000-04-30 00:02:52
## 5744     4.0  986011269 2001-03-31 04:01:09
## 5745     4.0  957566237 2000-05-05 22:37:17
## 5746     5.0  954814639 2000-04-04 02:17:19
## 5747     4.0  960918106 2000-06-13 17:41:46
## 5748     4.0  954815680 2000-04-04 02:34:40
## 5749     4.0  960918499 2000-06-13 17:48:19
## 5750     4.0  954815132 2000-04-04 02:25:32
## 5751     4.0  960918106 2000-06-13 17:41:46
## 5752     4.0  994279619 2001-07-04 20:46:59
## 5753     4.0  960819972 2000-06-12 14:26:12
## 5754     2.0  986008334 2001-03-31 03:12:14
## 5755     4.0  976597909 2000-12-12 05:11:49
## 5756     4.0  960917528 2000-06-13 17:32:08
## 5757     4.0  986738498 2001-04-08 14:01:38
## 5758     4.0  960819270 2000-06-12 14:14:30
## 5759     4.0  994279649 2001-07-04 20:47:29
## 5760     4.0  960918218 2000-06-13 17:43:38
## 5761     4.0  960917771 2000-06-13 17:36:11
## 5762     4.0  960918106 2000-06-13 17:41:46
## 5763     5.0  960917558 2000-06-13 17:32:38
## 5764     4.0  960917609 2000-06-13 17:33:29
## 5765     4.0  960917609 2000-06-13 17:33:29
## 5766     4.0  968787368 2000-09-12 19:36:08
## 5767     2.0  960917865 2000-06-13 17:37:45
## 5768     3.0  960917657 2000-06-13 17:34:17
## 5769     4.0  960918106 2000-06-13 17:41:46
## 5770     3.0  960917771 2000-06-13 17:36:11
## 5771     4.0  960818505 2000-06-12 14:01:45
## 5772     5.0  960818373 2000-06-12 13:59:33
## 5773     4.0  960918160 2000-06-13 17:42:40
## 5774     4.0  960917609 2000-06-13 17:33:29
## 5775     5.0  986739028 2001-04-08 14:10:28
## 5776     4.0  986008260 2001-03-31 03:11:00
## 5777     5.0  963756658 2000-07-16 14:10:58
## 5778     3.0  986745621 2001-04-08 16:00:21
## 5779     4.0  996418263 2001-07-29 14:51:03
## 5780     4.0  968787421 2000-09-12 19:37:01
## 5781     2.0  968788764 2000-09-12 19:59:24
## 5782     3.0 1039065693 2002-12-05 05:21:33
## 5783     4.0  965514373 2000-08-05 22:26:13
## 5784     4.0  986738865 2001-04-08 14:07:45
## 5785     4.0  968787159 2000-09-12 19:32:39
## 5786     4.0  994457359 2001-07-06 22:09:19
## 5787     4.0  994455829 2001-07-06 21:43:49
## 5788     4.0  968786587 2000-09-12 19:23:07
## 5789     4.0 1055788141 2003-06-16 18:29:01
## 5790     4.0  986739319 2001-04-08 14:15:19
## 5791     4.0  986008295 2001-03-31 03:11:35
## 5792     5.0  986008260 2001-03-31 03:11:00
## 5793     2.0  994438640 2001-07-06 16:57:20
## 5794     4.0  997488960 2001-08-11 00:16:00
## 5795     4.0  995850415 2001-07-23 01:06:55
## 5796     4.0  994279539 2001-07-04 20:45:39
## 5797     4.0  986738419 2001-04-08 14:00:19
## 5798     5.0  986738498 2001-04-08 14:01:38
## 5799     5.0  994457943 2001-07-06 22:19:03
## 5800     4.0  986738419 2001-04-08 14:00:19
## 5801     4.0  996950355 2001-08-04 18:39:15
## 5802     2.0 1015714238 2002-03-09 22:50:38
## 5803     5.0 1001961206 2001-10-01 18:33:26
## 5804     4.0 1017012514 2002-03-24 23:28:34
## 5805     4.0 1055788174 2003-06-16 18:29:34
## 5806     3.0 1009341085 2001-12-26 04:31:25
## 5807     5.0  994439405 2001-07-06 17:10:05
## 5808     4.0  994279539 2001-07-04 20:45:39
## 5809     5.0  980135286 2001-01-22 03:48:06
## 5810     5.0  980818214 2001-01-30 01:30:14
## 5811     5.0  986735749 2001-04-08 13:15:49
## 5812     3.0  986738661 2001-04-08 14:04:21
## 5813     4.0  986738559 2001-04-08 14:02:39
## 5814     4.0  994289229 2001-07-04 23:27:09
## 5815     4.0  986008739 2001-03-31 03:18:59
## 5816     4.0  986738559 2001-04-08 14:02:39
## 5817     3.0  994459012 2001-07-06 22:36:52
## 5818     4.0  986738419 2001-04-08 14:00:19
## 5819     4.0  986738419 2001-04-08 14:00:19
## 5820     5.0 1002769931 2001-10-11 03:12:11
## 5821     3.0  986738661 2001-04-08 14:04:21
## 5822     4.0  986738559 2001-04-08 14:02:39
## 5823     4.0  985829845 2001-03-29 01:37:25
## 5824     4.0 1039066670 2002-12-05 05:37:50
## 5825     4.0  986738613 2001-04-08 14:03:33
## 5826     4.0  986738559 2001-04-08 14:02:39
## 5827     2.0  986738761 2001-04-08 14:06:01
## 5828     1.0 1039070344 2002-12-05 06:39:04
## 5829     5.0  994457943 2001-07-06 22:19:03
## 5830     3.0  986008184 2001-03-31 03:09:44
## 5831     4.0  986739319 2001-04-08 14:15:19
## 5832     5.0  986008618 2001-03-31 03:16:58
## 5833     3.0  986738613 2001-04-08 14:03:33
## 5834     3.0 1055785445 2003-06-16 17:44:05
## 5835     3.0  986008121 2001-03-31 03:08:41
## 5836     5.0  990924261 2001-05-27 00:44:21
## 5837     4.0  993305342 2001-06-23 14:09:02
## 5838     4.0  994456359 2001-07-06 21:52:39
## 5839     5.0  994456480 2001-07-06 21:54:40
## 5840     4.0  994457484 2001-07-06 22:11:24
## 5841     4.0  994456957 2001-07-06 22:02:37
## 5842     3.0  994457827 2001-07-06 22:17:07
## 5843     4.0  990239709 2001-05-19 02:35:09
## 5844     5.0 1006149047 2001-11-19 05:50:47
## 5845     5.0  993305296 2001-06-23 14:08:16
## 5846     4.0  990924190 2001-05-27 00:43:10
## 5847     3.0  994458606 2001-07-06 22:30:06
## 5848     4.0  994458330 2001-07-06 22:25:30
## 5849     4.0  994457641 2001-07-06 22:14:01
## 5850     4.0 1039066094 2002-12-05 05:28:14
## 5851     5.0  990239742 2001-05-19 02:35:42
## 5852     3.0 1039066739 2002-12-05 05:38:59
## 5853     4.0  993305401 2001-06-23 14:10:01
## 5854     4.0  998109431 2001-08-18 04:37:11
## 5855     3.0 1039067403 2002-12-05 05:50:03
## 5856     4.0 1039069100 2002-12-05 06:18:20
## 5857     4.0  994456359 2001-07-06 21:52:39
## 5858     4.0  995253235 2001-07-16 03:13:55
## 5859     3.0  999310004 2001-09-01 02:06:44
## 5860     2.0 1039067528 2002-12-05 05:52:08
## 5861     5.0  994474005 2001-07-07 02:46:45
## 5862     2.0 1039069165 2002-12-05 06:19:25
## 5863     4.0 1039066447 2002-12-05 05:34:07
## 5864     4.0 1000003813 2001-09-09 02:50:13
## 5865     4.0  994458116 2001-07-06 22:21:56
## 5866     5.0  994456957 2001-07-06 22:02:37
## 5867     3.0  994457142 2001-07-06 22:05:42
## 5868     4.0 1039067222 2002-12-05 05:47:02
## 5869     4.0  994457417 2001-07-06 22:10:17
## 5870     3.0 1039067434 2002-12-05 05:50:34
## 5871     3.0  994440115 2001-07-06 17:21:55
## 5872     4.0 1039066779 2002-12-05 05:39:39
## 5873     2.0 1039066699 2002-12-05 05:38:19
## 5874     3.0  994457641 2001-07-06 22:14:01
## 5875     4.0 1002770429 2001-10-11 03:20:29
## 5876     4.0 1039066447 2002-12-05 05:34:07
## 5877     4.0 1009340636 2001-12-26 04:23:56
## 5878     4.0 1039066670 2002-12-05 05:37:50
## 5879     5.0  994456213 2001-07-06 21:50:13
## 5880     4.0  994458764 2001-07-06 22:32:44
## 5881     3.0 1039067528 2002-12-05 05:52:08
## 5882     2.0 1002770641 2001-10-11 03:24:01
## 5883     5.0  994457057 2001-07-06 22:04:17
## 5884     4.0 1039066538 2002-12-05 05:35:38
## 5885     4.0 1039066094 2002-12-05 05:28:14
## 5886     4.0 1039067284 2002-12-05 05:48:04
## 5887     4.0  994458546 2001-07-06 22:29:06
## 5888     1.0  994458003 2001-07-06 22:20:03
## 5889     5.0  994456213 2001-07-06 21:50:13
## 5890     3.0  994457962 2001-07-06 22:19:22
## 5891     2.0  996950674 2001-08-04 18:44:34
## 5892     5.0  994456636 2001-07-06 21:57:16
## 5893     2.0  996950674 2001-08-04 18:44:34
## 5894     4.0  997064028 2001-08-06 02:13:48
## 5895     4.0  996939545 2001-08-04 15:39:05
## 5896     4.0  996950608 2001-08-04 18:43:28
## 5897     3.0  996950542 2001-08-04 18:42:22
## 5898     4.0 1009339092 2001-12-26 03:58:12
## 5899     4.0  996950542 2001-08-04 18:42:22
## 5900     4.0  996950542 2001-08-04 18:42:22
## 5901     3.0  996950542 2001-08-04 18:42:22
## 5902     2.0  996950542 2001-08-04 18:42:22
## 5903     3.0 1014533110 2002-02-24 06:45:10
## 5904     4.0 1021348160 2002-05-14 03:49:20
## 5905     4.0 1039066923 2002-12-05 05:42:03
## 5906     4.0 1039070065 2002-12-05 06:34:25
## 5907     5.0 1002769606 2001-10-11 03:06:46
## 5908     4.0 1002769606 2001-10-11 03:06:46
## 5909     4.0 1001732228 2001-09-29 02:57:08
## 5910     4.0 1003621148 2001-10-20 23:39:08
## 5911     3.0 1002769561 2001-10-11 03:06:01
## 5912     5.0 1002769561 2001-10-11 03:06:01
## 5913     4.0 1030333611 2002-08-26 03:46:51
## 5914     4.0 1004923866 2001-11-05 01:31:06
## 5915     4.0 1006148969 2001-11-19 05:49:29
## 5916     3.0 1006492881 2001-11-23 05:21:21
## 5917     4.0 1009935138 2002-01-02 01:32:18
## 5918     4.0 1055788107 2003-06-16 18:28:27
## 5919     3.0 1006492955 2001-11-23 05:22:35
## 5920     4.0 1006492955 2001-11-23 05:22:35
## 5921     2.0 1006492955 2001-11-23 05:22:35
## 5922     3.0 1009340636 2001-12-26 04:23:56
## 5923     4.0 1008086617 2001-12-11 16:03:37
## 5924     4.0 1020575100 2002-05-05 05:05:00
## 5925     5.0 1009695904 2001-12-30 07:05:04
## 5926     4.0 1009340636 2001-12-26 04:23:56
## 5927     5.0 1017556925 2002-03-31 06:42:05
## 5928     4.0 1012097954 2002-01-27 02:19:14
## 5929     3.0 1010289168 2002-01-06 03:52:48
## 5930     5.0 1019362987 2002-04-21 04:23:07
## 5931     4.0 1015738983 2002-03-10 05:43:03
## 5932     3.0 1011328056 2002-01-18 04:27:36
## 5933     3.0 1009937419 2002-01-02 02:10:19
## 5934     4.0 1011328004 2002-01-18 04:26:44
## 5935     3.0  945114153 1999-12-13 19:42:33
## 5936     3.0 1011328004 2002-01-18 04:26:44
## 5937     5.0 1012169711 2002-01-27 22:15:11
## 5938     4.0 1014004783 2002-02-18 03:59:43
## 5939     4.0 1055791286 2003-06-16 19:21:26
## 5940     4.0 1014004783 2002-02-18 03:59:43
## 5941     2.0 1012830712 2002-02-04 13:51:52
## 5942     3.0 1016419671 2002-03-18 02:47:51
## 5943     5.0 1020056483 2002-04-29 05:01:23
## 5944     4.0 1014004730 2002-02-18 03:58:50
## 5945     4.0 1030933052 2002-09-02 02:17:32
## 5946     4.0 1015205545 2002-03-04 01:32:25
## 5947     3.0 1014613681 2002-02-25 05:08:01
## 5948     4.0 1014613681 2002-02-25 05:08:01
## 5949     4.0 1014613681 2002-02-25 05:08:01
## 5950     3.0 1039065866 2002-12-05 05:24:26
## 5951     4.0 1015713629 2002-03-09 22:40:29
## 5952     3.0 1015205474 2002-03-04 01:31:14
## 5953     4.0 1015205474 2002-03-04 01:31:14
## 5954     1.0 1036123436 2002-11-01 04:03:56
## 5955     4.0 1019363280 2002-04-21 04:28:00
## 5956     2.0 1019363280 2002-04-21 04:28:00
## 5957     5.0 1033397995 2002-09-30 14:59:55
## 5958     4.0 1037686951 2002-11-19 06:22:31
## 5959     5.0 1031799237 2002-09-12 02:53:57
## 5960     3.0 1019363219 2002-04-21 04:26:59
## 5961     3.0 1019363219 2002-04-21 04:26:59
## 5962     4.0 1020056776 2002-04-29 05:06:16
## 5963     3.0 1020056776 2002-04-29 05:06:16
## 5964     4.0 1019363168 2002-04-21 04:26:08
## 5965     2.0 1019363168 2002-04-21 04:26:08
## 5966     4.0 1019363168 2002-04-21 04:26:08
## 5967     4.0 1020056711 2002-04-29 05:05:11
## 5968     4.0 1060013900 2003-08-04 16:18:20
## 5969     1.0 1020056711 2002-04-29 05:05:11
## 5970     2.0 1021348305 2002-05-14 03:51:45
## 5971     4.0 1022478671 2002-05-27 05:51:11
## 5972     4.0 1029558644 2002-08-17 04:30:44
## 5973     4.0 1023517288 2002-06-08 06:21:28
## 5974     4.0 1024891611 2002-06-24 04:06:51
## 5975     2.0 1024891677 2002-06-24 04:07:57
## 5976     5.0 1027051203 2002-07-19 04:00:03
## 5977     3.0 1027051268 2002-07-19 04:01:08
## 5978     3.0 1046105730 2003-02-24 16:55:30
## 5979     4.0 1030232314 2002-08-24 23:38:34
## 5980     4.0 1029516219 2002-08-16 16:43:39
## 5981     4.0 1029516219 2002-08-16 16:43:39
## 5982     4.0 1029516219 2002-08-16 16:43:39
## 5983     4.0 1030232487 2002-08-24 23:41:27
## 5984     3.0 1035175467 2002-10-21 04:44:27
## 5985     3.0 1031799315 2002-09-12 02:55:15
## 5986     4.0 1033944353 2002-10-06 22:45:53
## 5987     5.0 1033879863 2002-10-06 04:51:03
## 5988     3.0 1039067403 2002-12-05 05:50:03
## 5989     4.0 1060013921 2003-08-04 16:18:41
## 5990     1.0 1036367646 2002-11-03 23:54:06
## 5991     4.0 1036984289 2002-11-11 03:11:29
## 5992     4.0 1033880299 2002-10-06 04:58:19
## 5993     2.0 1033880299 2002-10-06 04:58:19
## 5994     4.0 1033880299 2002-10-06 04:58:19
## 5995     4.0 1033880299 2002-10-06 04:58:19
## 5996     3.0 1033880263 2002-10-06 04:57:43
## 5997     4.0 1033880263 2002-10-06 04:57:43
## 5998     4.0 1033880263 2002-10-06 04:57:43
## 5999     4.0 1039066538 2002-12-05 05:35:38
## 6000     4.0 1033880263 2002-10-06 04:57:43
## 6001     3.0 1039067617 2002-12-05 05:53:37
## 6002     4.0 1033880263 2002-10-06 04:57:43
## 6003     4.0 1033880263 2002-10-06 04:57:43
## 6004     4.0 1033879938 2002-10-06 04:52:18
## 6005     3.0 1035175594 2002-10-21 04:46:34
## 6006     5.0 1042494862 2003-01-13 21:54:22
## 6007     4.0 1036367914 2002-11-03 23:58:34
## 6008     4.0 1036367914 2002-11-03 23:58:34
## 6009     5.0 1036367914 2002-11-03 23:58:34
## 6010     4.0 1039070904 2002-12-05 06:48:24
## 6011     1.0 1036367914 2002-11-03 23:58:34
## 6012     2.0 1036367914 2002-11-03 23:58:34
## 6013     4.0 1036367914 2002-11-03 23:58:34
## 6014     3.5 1060013944 2003-08-04 16:19:04
## 6015     4.0 1045502600 2003-02-17 17:23:20
## 6016     3.0 1038203534 2002-11-25 05:52:14
## 6017     3.0 1038203534 2002-11-25 05:52:14
## 6018     4.0 1038203534 2002-11-25 05:52:14
## 6019     4.0 1038203534 2002-11-25 05:52:14
## 6020     4.0 1038203534 2002-11-25 05:52:14
## 6021     3.0 1039066739 2002-12-05 05:38:59
## 6022     4.0 1046106724 2003-02-24 17:12:04
## 6023     5.0 1041284839 2002-12-30 21:47:19
## 6024     3.0 1060736279 2003-08-13 00:57:59
## 6025     5.0 1040659215 2002-12-23 16:00:15
## 6026     4.0 1041284839 2002-12-30 21:47:19
## 6027     3.0 1040659215 2002-12-23 16:00:15
## 6028     4.0 1041284839 2002-12-30 21:47:19
## 6029     5.0 1041284703 2002-12-30 21:45:03
## 6030     5.0 1043686934 2003-01-27 17:02:14
## 6031     5.0 1040659119 2002-12-23 15:58:39
## 6032     4.0 1042495022 2003-01-13 21:57:02
## 6033     3.0 1043687080 2003-01-27 17:04:40
## 6034     3.0 1043687080 2003-01-27 17:04:40
## 6035     2.0 1043687080 2003-01-27 17:04:40
## 6036     2.0 1043687080 2003-01-27 17:04:40
## 6037     3.0 1043687014 2003-01-27 17:03:34
## 6038     4.0 1043687015 2003-01-27 17:03:35
## 6039     3.0 1055798065 2003-06-16 21:14:25
## 6040     2.0 1046106675 2003-02-24 17:11:15
## 6041     3.0 1049142071 2003-03-31 20:21:11
## 6042     3.0 1048704049 2003-03-26 18:40:49
## 6043     3.0 1048704049 2003-03-26 18:40:49
## 6044     4.0 1055798009 2003-06-16 21:13:29
## 6045     4.0 1049142167 2003-03-31 20:22:47
## 6046     3.0 1049142157 2003-03-31 20:22:37
## 6047     3.0 1049142105 2003-03-31 20:21:45
## 6048     4.0 1049749056 2003-04-07 20:57:36
## 6049     4.0 1049749117 2003-04-07 20:58:37
## 6050     3.0 1049749117 2003-04-07 20:58:37
## 6051     4.0 1055797910 2003-06-16 21:11:50
## 6052     3.5 1055797818 2003-06-16 21:10:18
## 6053     5.0 1055788249 2003-06-16 18:30:49
## 6054     4.0 1055797845 2003-06-16 21:10:45
## 6055     5.0 1055788276 2003-06-16 18:31:16
## 6056     4.0 1055797723 2003-06-16 21:08:43
## 6057     5.0 1055788246 2003-06-16 18:30:46
## 6058     4.0 1055797789 2003-06-16 21:09:49
## 6059     4.5 1060013871 2003-08-04 16:17:51
## 6060     4.0 1273541953 2010-05-11 01:39:13
## 6061     4.5 1273720546 2010-05-13 03:15:46
## 6062     3.5 1273633559 2010-05-12 03:05:59
## 6063     4.5 1273714533 2010-05-13 01:35:33
## 6064     4.0 1273720416 2010-05-13 03:13:36
## 6065     4.5 1273714417 2010-05-13 01:33:37
## 6066     4.0 1273542992 2010-05-11 01:56:32
## 6067     3.5 1273541973 2010-05-11 01:39:33
## 6068     4.0 1273542073 2010-05-11 01:41:13
## 6069     5.0 1273543009 2010-05-11 01:56:49
## 6070     4.0 1273720299 2010-05-13 03:11:39
## 6071     3.5 1273720368 2010-05-13 03:12:48
## 6072     4.5 1273720163 2010-05-13 03:09:23
## 6073     4.0 1273714421 2010-05-13 01:33:41
## 6074     4.5 1273714480 2010-05-13 01:34:40
## 6075     3.0 1273542081 2010-05-11 01:41:21
## 6076     2.0 1273542019 2010-05-11 01:40:19
## 6077     4.5 1273542870 2010-05-11 01:54:30
## 6078     4.5 1273720435 2010-05-13 03:13:55
## 6079     4.5 1273542817 2010-05-11 01:53:37
## 6080     4.5 1273714380 2010-05-13 01:33:00
## 6081     4.5 1273714490 2010-05-13 01:34:50
## 6082     4.0 1273542012 2010-05-11 01:40:12
## 6083     4.0 1273542028 2010-05-11 01:40:28
## 6084     3.0 1273542066 2010-05-11 01:41:06
## 6085     4.5 1273542033 2010-05-11 01:40:33
## 6086     4.5 1273541999 2010-05-11 01:39:59
## 6087     4.5 1273542882 2010-05-11 01:54:42
## 6088     4.0 1273541967 2010-05-11 01:39:27
## 6089     4.5 1273542808 2010-05-11 01:53:28
## 6090     4.0 1273720582 2010-05-13 03:16:22
## 6091     4.5 1273720348 2010-05-13 03:12:28
## 6092     4.5 1273542879 2010-05-11 01:54:39
## 6093     5.0 1273542969 2010-05-11 01:56:09
## 6094     4.5 1273720551 2010-05-13 03:15:51
## 6095     3.0 1273541964 2010-05-11 01:39:24
## 6096     3.5 1273542085 2010-05-11 01:41:25
## 6097     4.5 1273542046 2010-05-11 01:40:46
## 6098     4.0 1273541939 2010-05-11 01:38:59
## 6099     4.0 1274150193 2010-05-18 02:36:33
## 6100     4.0 1273541943 2010-05-11 01:39:03
## 6101     4.0 1274150314 2010-05-18 02:38:34
## 6102     3.5 1274150321 2010-05-18 02:38:41
## 6103     4.5 1273720397 2010-05-13 03:13:17
## 6104     4.5 1274150200 2010-05-18 02:36:40
## 6105     4.5 1274149537 2010-05-18 02:25:37
## 6106     3.5 1273553986 2010-05-11 04:59:46
## 6107     3.5 1274150289 2010-05-18 02:38:09
## 6108     4.5 1274150179 2010-05-18 02:36:19
## 6109     4.5 1273720461 2010-05-13 03:14:21
## 6110     5.0 1273542961 2010-05-11 01:56:01
## 6111     4.0 1274150085 2010-05-18 02:34:45
## 6112     4.0 1274149939 2010-05-18 02:32:19
## 6113     4.5 1274149910 2010-05-18 02:31:50
## 6114     4.0 1274150249 2010-05-18 02:37:29
## 6115     4.0 1273720591 2010-05-13 03:16:31
## 6116     4.5 1274149580 2010-05-18 02:26:20
## 6117     4.5 1274150130 2010-05-18 02:35:30
## 6118     4.0 1274157016 2010-05-18 04:30:16
## 6119     4.5 1274150341 2010-05-18 02:39:01
## 6120     4.0 1273720255 2010-05-13 03:10:55
## 6121     5.0 1273542984 2010-05-11 01:56:24
## 6122     5.0 1274150005 2010-05-18 02:33:25
## 6123     4.5 1273720384 2010-05-13 03:13:04
## 6124     4.0 1273720329 2010-05-13 03:12:09
## 6125     4.0 1274150047 2010-05-18 02:34:07
## 6126     4.5 1273542596 2010-05-11 01:49:56
## 6127     3.5 1273720454 2010-05-13 03:14:14
## 6128     5.0 1273897820 2010-05-15 04:30:20
## 6129     4.0  834828285 1996-06-15 08:44:45
## 6130     3.0  834828185 1996-06-15 08:43:05
## 6131     4.0  834828440 1996-06-15 08:47:20
## 6132     3.0  834828337 1996-06-15 08:45:37
## 6133     5.0  834828155 1996-06-15 08:42:35
## 6134     5.0  834828059 1996-06-15 08:40:59
## 6135     4.0  834828085 1996-06-15 08:41:25
## 6136     3.0  834828318 1996-06-15 08:45:18
## 6137     4.0  834828085 1996-06-15 08:41:25
## 6138     3.0  834828318 1996-06-15 08:45:18
## 6139     3.0  834828227 1996-06-15 08:43:47
## 6140     4.0  834828285 1996-06-15 08:44:45
## 6141     4.0  834828137 1996-06-15 08:42:17
## 6142     2.0  834828168 1996-06-15 08:42:48
## 6143     5.0  834828108 1996-06-15 08:41:48
## 6144     3.0  834828268 1996-06-15 08:44:28
## 6145     4.0  834828302 1996-06-15 08:45:02
## 6146     3.0  834828185 1996-06-15 08:43:05
## 6147     5.0  834828123 1996-06-15 08:42:03
## 6148     2.0  834828059 1996-06-15 08:40:59
## 6149     3.0  834828155 1996-06-15 08:42:35
## 6150     3.0  834828108 1996-06-15 08:41:48
## 6151     3.0  834828168 1996-06-15 08:42:48
## 6152     3.0  834828337 1996-06-15 08:45:37
## 6153     4.0  834828248 1996-06-15 08:44:08
## 6154     4.0  834828085 1996-06-15 08:41:25
## 6155     5.0  834828084 1996-06-15 08:41:24
## 6156     3.0  834828337 1996-06-15 08:45:37
## 6157     5.0  834828248 1996-06-15 08:44:08
## 6158     3.0  834828227 1996-06-15 08:43:47
## 6159     4.0  834828248 1996-06-15 08:44:08
## 6160     4.0  834828361 1996-06-15 08:46:01
## 6161     3.0  834828059 1996-06-15 08:40:59
## 6162     3.0  834828155 1996-06-15 08:42:35
## 6163     2.0  834828185 1996-06-15 08:43:05
## 6164     3.0  834828632 1996-06-15 08:50:32
## 6165     3.0  834828199 1996-06-15 08:43:19
## 6166     3.0  834828123 1996-06-15 08:42:03
## 6167     4.0  834828302 1996-06-15 08:45:02
## 6168     4.0  834828361 1996-06-15 08:46:01
## 6169     5.0  834828155 1996-06-15 08:42:35
## 6170     5.0  834828286 1996-06-15 08:44:46
## 6171     5.0  834828248 1996-06-15 08:44:08
## 6172     3.0  834828085 1996-06-15 08:41:25
## 6173     5.0  834828337 1996-06-15 08:45:37
## 6174     5.0  834828059 1996-06-15 08:40:59
## 6175     4.0  834828059 1996-06-15 08:40:59
## 6176     2.0  834828108 1996-06-15 08:41:48
## 6177     3.0 1032769612 2002-09-23 08:26:52
## 6178     3.0 1032678367 2002-09-22 07:06:07
## 6179     1.0 1033543456 2002-10-02 07:24:16
## 6180     3.0 1032769595 2002-09-23 08:26:35
## 6181     4.0 1032769612 2002-09-23 08:26:52
## 6182     2.0 1032676906 2002-09-22 06:41:46
## 6183     4.0 1032768899 2002-09-23 08:14:59
## 6184     4.0 1032859878 2002-09-24 09:31:18
## 6185     4.0 1033604138 2002-10-03 00:15:38
## 6186     1.0 1032678174 2002-09-22 07:02:54
## 6187     4.0 1032676906 2002-09-22 06:41:46
## 6188     4.0 1032859767 2002-09-24 09:29:27
## 6189     4.0 1032772901 2002-09-23 09:21:41
## 6190     4.0 1032766375 2002-09-23 07:32:55
## 6191     5.0 1032679370 2002-09-22 07:22:50
## 6192     2.0 1032679359 2002-09-22 07:22:39
## 6193     4.0 1032679865 2002-09-22 07:31:05
## 6194     4.0 1032679359 2002-09-22 07:22:39
## 6195     4.0 1032676887 2002-09-22 06:41:27
## 6196     5.0 1032679331 2002-09-22 07:22:11
## 6197     4.0 1032679449 2002-09-22 07:24:09
## 6198     4.0 1032679577 2002-09-22 07:26:17
## 6199     4.0 1032679682 2002-09-22 07:28:02
## 6200     2.0 1032679990 2002-09-22 07:33:10
## 6201     3.0 1032859220 2002-09-24 09:20:20
## 6202     2.0 1032679469 2002-09-22 07:24:29
## 6203     4.0 1032769282 2002-09-23 08:21:22
## 6204     3.0 1032769282 2002-09-23 08:21:22
## 6205     1.0 1032859270 2002-09-24 09:21:10
## 6206     4.0 1033604541 2002-10-03 00:22:21
## 6207     2.0 1032679534 2002-09-22 07:25:34
## 6208     3.0 1032680083 2002-09-22 07:34:43
## 6209     4.0 1032766234 2002-09-23 07:30:34
## 6210     4.0 1032766234 2002-09-23 07:30:34
## 6211     1.0 1032766234 2002-09-23 07:30:34
## 6212     5.0 1032679707 2002-09-22 07:28:27
## 6213     4.0 1032679843 2002-09-22 07:30:43
## 6214     4.0 1032678268 2002-09-22 07:04:28
## 6215     3.0 1032860971 2002-09-24 09:49:31
## 6216     5.0 1032679359 2002-09-22 07:22:39
## 6217     2.0 1032680420 2002-09-22 07:40:20
## 6218     2.0 1032676887 2002-09-22 06:41:27
## 6219     4.0 1032678268 2002-09-22 07:04:28
## 6220     2.0 1032860951 2002-09-24 09:49:11
## 6221     2.0 1032680004 2002-09-22 07:33:24
## 6222     4.0 1032766347 2002-09-23 07:32:27
## 6223     4.0 1032679978 2002-09-22 07:32:58
## 6224     3.0 1033192223 2002-09-28 05:50:23
## 6225     4.0 1032680420 2002-09-22 07:40:20
## 6226     5.0 1032858907 2002-09-24 09:15:07
## 6227     1.0 1032766463 2002-09-23 07:34:23
## 6228     4.0 1032766168 2002-09-23 07:29:28
## 6229     4.0 1032859343 2002-09-24 09:22:23
## 6230     2.0 1032859504 2002-09-24 09:25:04
## 6231     1.0 1032766852 2002-09-23 07:40:52
## 6232     3.0 1032858995 2002-09-24 09:16:35
## 6233     4.0 1032680233 2002-09-22 07:37:13
## 6234     2.0 1032768775 2002-09-23 08:12:55
## 6235     4.0 1032859847 2002-09-24 09:30:47
## 6236     2.0 1032859012 2002-09-24 09:16:52
## 6237     1.0 1032859119 2002-09-24 09:18:39
## 6238     4.0 1032679534 2002-09-22 07:25:34
## 6239     4.0 1032679449 2002-09-22 07:24:09
## 6240     3.0 1032679887 2002-09-22 07:31:27
## 6241     4.0 1032678153 2002-09-22 07:02:33
## 6242     4.0 1033604225 2002-10-03 00:17:05
## 6243     5.0 1032859587 2002-09-24 09:26:27
## 6244     2.0 1032859389 2002-09-24 09:23:09
## 6245     2.0 1032769282 2002-09-23 08:21:22
## 6246     4.0 1032677550 2002-09-22 06:52:30
## 6247     2.0 1032859878 2002-09-24 09:31:18
## 6248     3.0 1032677405 2002-09-22 06:50:05
## 6249     3.0 1032769523 2002-09-23 08:25:23
## 6250     3.0 1032769002 2002-09-23 08:16:42
## 6251     2.0 1032677594 2002-09-22 06:53:14
## 6252     3.0 1032677740 2002-09-22 06:55:40
## 6253     4.0 1032679682 2002-09-22 07:28:02
## 6254     4.0 1034930027 2002-10-18 08:33:47
## 6255     2.0 1032677346 2002-09-22 06:49:06
## 6256     2.0 1034930090 2002-10-18 08:34:50
## 6257     3.0 1032769237 2002-09-23 08:20:37
## 6258     4.0 1032677485 2002-09-22 06:51:25
## 6259     4.0 1032859750 2002-09-24 09:29:10
## 6260     3.0 1032859050 2002-09-24 09:17:30
## 6261     2.0 1032766929 2002-09-23 07:42:09
## 6262     4.0 1032860933 2002-09-24 09:48:53
## 6263     2.0 1032769543 2002-09-23 08:25:43
## 6264     3.0 1032859587 2002-09-24 09:26:27
## 6265     2.0 1032677362 2002-09-22 06:49:22
## 6266     5.0 1032769506 2002-09-23 08:25:06
## 6267     4.0 1032769543 2002-09-23 08:25:43
## 6268     4.0 1032677266 2002-09-22 06:47:46
## 6269     2.0 1032676888 2002-09-22 06:41:28
## 6270     4.0 1032680097 2002-09-22 07:34:57
## 6271     3.0 1034930190 2002-10-18 08:36:30
## 6272     1.0 1032859254 2002-09-24 09:20:54
## 6273     4.0 1032677507 2002-09-22 06:51:47
## 6274     4.0 1032679936 2002-09-22 07:32:16
## 6275     4.0 1034930133 2002-10-18 08:35:33
## 6276     3.0 1032677333 2002-09-22 06:48:53
## 6277     2.0 1032769250 2002-09-23 08:20:50
## 6278     2.0 1033604248 2002-10-03 00:17:28
## 6279     5.0 1032677313 2002-09-22 06:48:33
## 6280     2.0 1034929996 2002-10-18 08:33:16
## 6281     5.0 1032676888 2002-09-22 06:41:28
## 6282     2.0 1032679865 2002-09-22 07:31:05
## 6283     2.0 1032678282 2002-09-22 07:04:42
## 6284     4.0 1032680097 2002-09-22 07:34:57
## 6285     3.0 1032680212 2002-09-22 07:36:52
## 6286     4.0 1032680375 2002-09-22 07:39:35
## 6287     3.0 1032767204 2002-09-23 07:46:44
## 6288     3.0 1033604322 2002-10-03 00:18:42
## 6289     2.0 1032677637 2002-09-22 06:53:57
## 6290     4.0 1032859151 2002-09-24 09:19:11
## 6291     4.0 1032676792 2002-09-22 06:39:52
## 6292     4.0 1032676888 2002-09-22 06:41:28
## 6293     3.0 1032678352 2002-09-22 07:05:52
## 6294     5.0 1032679978 2002-09-22 07:32:58
## 6295     4.0 1032768802 2002-09-23 08:13:22
## 6296     3.0 1034930125 2002-10-18 08:35:25
## 6297     3.0 1032679488 2002-09-22 07:24:48
## 6298     4.0 1032677282 2002-09-22 06:48:02
## 6299     4.0 1032678268 2002-09-22 07:04:28
## 6300     4.0 1034930060 2002-10-18 08:34:20
## 6301     4.0 1032680332 2002-09-22 07:38:52
## 6302     3.0 1032858930 2002-09-24 09:15:30
## 6303     3.0 1032769523 2002-09-23 08:25:23
## 6304     3.0 1032858979 2002-09-24 09:16:19
## 6305     4.0 1032677541 2002-09-22 06:52:21
## 6306     3.0 1032859878 2002-09-24 09:31:18
## 6307     4.0 1032676999 2002-09-22 06:43:19
## 6308     4.0 1032677012 2002-09-22 06:43:32
## 6309     2.0 1032678432 2002-09-22 07:07:12
## 6310     4.0 1032678324 2002-09-22 07:05:24
## 6311     4.0 1035340620 2002-10-23 02:37:00
## 6312     4.0 1032677082 2002-09-22 06:44:42
## 6313     4.0 1037009003 2002-11-11 10:03:23
## 6314     5.0 1037008981 2002-11-11 10:03:01
## 6315     3.0  973747402 2000-11-09 05:23:22
## 6316     4.0  973748254 2000-11-09 05:37:34
## 6317     5.0  973747284 2000-11-09 05:21:24
## 6318     3.0  973747340 2000-11-09 05:22:20
## 6319     5.0  973747188 2000-11-09 05:19:48
## 6320     5.0  973748491 2000-11-09 05:41:31
## 6321     4.0  973746231 2000-11-09 05:03:51
## 6322     4.0  973747427 2000-11-09 05:23:47
## 6323     4.0  973746527 2000-11-09 05:08:47
## 6324     3.0  973747709 2000-11-09 05:28:29
## 6325     4.0  973747949 2000-11-09 05:32:29
## 6326     4.0  973747559 2000-11-09 05:25:59
## 6327     4.0  973746243 2000-11-09 05:04:03
## 6328     4.0  973748543 2000-11-09 05:42:23
## 6329     5.0  973746450 2000-11-09 05:07:30
## 6330     4.0  973747797 2000-11-09 05:29:57
## 6331     5.0  973746864 2000-11-09 05:14:24
## 6332     3.0  973748307 2000-11-09 05:38:27
## 6333     3.0  973747985 2000-11-09 05:33:05
## 6334     3.0  973747797 2000-11-09 05:29:57
## 6335     5.0  973747271 2000-11-09 05:21:11
## 6336     4.0  973746450 2000-11-09 05:07:30
## 6337     4.0  973747459 2000-11-09 05:24:19
## 6338     5.0  973746273 2000-11-09 05:04:33
## 6339     4.0  973747188 2000-11-09 05:19:48
## 6340     4.0  973747258 2000-11-09 05:20:58
## 6341     4.0  973747385 2000-11-09 05:23:05
## 6342     5.0  973747591 2000-11-09 05:26:31
## 6343     4.0  973746494 2000-11-09 05:08:14
## 6344     4.0  973746365 2000-11-09 05:06:05
## 6345     3.0  973748336 2000-11-09 05:38:56
## 6346     4.0  973746527 2000-11-09 05:08:47
## 6347     4.0  973747740 2000-11-09 05:29:00
## 6348     5.0  973746450 2000-11-09 05:07:30
## 6349     4.0  973747985 2000-11-09 05:33:05
## 6350     4.0  973746814 2000-11-09 05:13:34
## 6351     4.0  973746463 2000-11-09 05:07:43
## 6352     5.0  973746569 2000-11-09 05:09:29
## 6353     5.0  973747459 2000-11-09 05:24:19
## 6354     3.0  973748587 2000-11-09 05:43:07
## 6355     5.0  973748034 2000-11-09 05:33:54
## 6356     5.0  973747559 2000-11-09 05:25:59
## 6357     5.0  973748614 2000-11-09 05:43:34
## 6358     4.0  973748413 2000-11-09 05:40:13
## 6359     4.0  973748196 2000-11-09 05:36:36
## 6360     5.0  973747315 2000-11-09 05:21:55
## 6361     4.0  973748508 2000-11-09 05:41:48
## 6362     4.0  973746543 2000-11-09 05:09:03
## 6363     4.0  973749001 2000-11-09 05:50:01
## 6364     3.0  973747591 2000-11-09 05:26:31
## 6365     4.0  973748111 2000-11-09 05:35:11
## 6366     4.0  973746681 2000-11-09 05:11:21
## 6367     3.0  973747156 2000-11-09 05:19:16
## 6368     4.0  973747643 2000-11-09 05:27:23
## 6369     3.0  973747911 2000-11-09 05:31:51
## 6370     4.0  973747105 2000-11-09 05:18:25
## 6371     5.0  973746655 2000-11-09 05:10:55
## 6372     1.0  973747354 2000-11-09 05:22:34
## 6373     4.0  973746231 2000-11-09 05:03:51
## 6374     3.0  973748587 2000-11-09 05:43:07
## 6375     4.0  973748163 2000-11-09 05:36:03
## 6376     4.0  973748196 2000-11-09 05:36:36
## 6377     4.0  973748228 2000-11-09 05:37:08
## 6378     5.0  973748401 2000-11-09 05:40:01
## 6379     5.0  973747591 2000-11-09 05:26:31
## 6380     5.0  973746527 2000-11-09 05:08:47
## 6381     5.0  973748045 2000-11-09 05:34:05
## 6382     5.0  973747188 2000-11-09 05:19:48
## 6383     5.0  973747848 2000-11-09 05:30:48
## 6384     3.0  973747591 2000-11-09 05:26:31
## 6385     5.0  973747848 2000-11-09 05:30:48
## 6386     3.0  973748787 2000-11-09 05:46:27
## 6387     4.0  973748676 2000-11-09 05:44:36
## 6388     5.0  973748069 2000-11-09 05:34:29
## 6389     4.0  973746476 2000-11-09 05:07:56
## 6390     3.0  973747017 2000-11-09 05:16:57
## 6391     5.0  973747559 2000-11-09 05:25:59
## 6392     5.0  973748112 2000-11-09 05:35:12
## 6393     4.0  973746543 2000-11-09 05:09:03
## 6394     4.0  973747459 2000-11-09 05:24:19
## 6395     4.0  973746707 2000-11-09 05:11:47
## 6396     5.0  973748587 2000-11-09 05:43:07
## 6397     4.0  973747877 2000-11-09 05:31:17
## 6398     4.0  973746961 2000-11-09 05:16:01
## 6399     4.0  973748587 2000-11-09 05:43:07
## 6400     4.0  973748427 2000-11-09 05:40:27
## 6401     5.0  973747459 2000-11-09 05:24:19
## 6402     3.0  973747017 2000-11-09 05:16:57
## 6403     4.0  973748427 2000-11-09 05:40:27
## 6404     5.0  973746569 2000-11-09 05:09:29
## 6405     5.0  973748228 2000-11-09 05:37:08
## 6406     3.0  973748443 2000-11-09 05:40:43
## 6407     4.0  973746569 2000-11-09 05:09:29
## 6408     3.0  973747797 2000-11-09 05:29:57
## 6409     4.0  973747895 2000-11-09 05:31:35
## 6410     4.0  973747964 2000-11-09 05:32:44
## 6411     3.0  973747877 2000-11-09 05:31:17
## 6412     5.0  973746613 2000-11-09 05:10:13
## 6413     3.0  973748196 2000-11-09 05:36:36
## 6414     4.0  973747658 2000-11-09 05:27:38
## 6415     4.0  973747924 2000-11-09 05:32:04
## 6416     1.0  973748964 2000-11-09 05:49:24
## 6417     3.0  973747685 2000-11-09 05:28:05
## 6418     3.0  973747621 2000-11-09 05:27:01
## 6419     4.0  973748979 2000-11-09 05:49:39
## 6420     3.0  973749013 2000-11-09 05:50:13
## 6421     4.0  973748228 2000-11-09 05:37:08
## 6422     4.0  973746214 2000-11-09 05:03:34
## 6423     3.0  973748979 2000-11-09 05:49:39
## 6424     4.0  973747685 2000-11-09 05:28:05
## 6425     3.0  973747777 2000-11-09 05:29:37
## 6426     3.0  973747797 2000-11-09 05:29:57
## 6427     3.0  973749026 2000-11-09 05:50:26
## 6428     4.0  973747327 2000-11-09 05:22:07
## 6429     5.0  973748614 2000-11-09 05:43:34
## 6430     2.0  973746627 2000-11-09 05:10:27
## 6431     3.0  973748277 2000-11-09 05:37:57
## 6432     3.0  973747591 2000-11-09 05:26:31
## 6433     5.0  973747911 2000-11-09 05:31:51
## 6434     4.0  973747643 2000-11-09 05:27:23
## 6435     4.0  973746494 2000-11-09 05:08:14
## 6436     5.0  973746961 2000-11-09 05:16:01
## 6437     5.0  973748919 2000-11-09 05:48:39
## 6438     4.0  973747765 2000-11-09 05:29:25
## 6439     5.0  973747609 2000-11-09 05:26:49
## 6440     5.0  973746929 2000-11-09 05:15:29
## 6441     4.0  973747752 2000-11-09 05:29:12
## 6442     2.0  973749049 2000-11-09 05:50:49
## 6443     3.0  973748307 2000-11-09 05:38:27
## 6444     4.0  973747877 2000-11-09 05:31:17
## 6445     4.0  973747245 2000-11-09 05:20:45
## 6446     3.0  973747685 2000-11-09 05:28:05
## 6447     4.0  973747697 2000-11-09 05:28:17
## 6448     3.0  973747723 2000-11-09 05:28:43
## 6449     4.0  973747643 2000-11-09 05:27:23
## 6450     3.0  973747609 2000-11-09 05:26:49
## 6451     5.0  973747559 2000-11-09 05:25:59
## 6452     4.0  973746995 2000-11-09 05:16:35
## 6453     4.0  973747877 2000-11-09 05:31:17
## 6454     4.0  973747848 2000-11-09 05:30:48
## 6455     4.0  973747723 2000-11-09 05:28:43
## 6456     4.0  973747591 2000-11-09 05:26:31
## 6457     2.0  973747877 2000-11-09 05:31:17
## 6458     4.0  973748508 2000-11-09 05:41:48
## 6459     3.0  973747985 2000-11-09 05:33:05
## 6460     3.0  973748713 2000-11-09 05:45:13
## 6461     4.0  973746365 2000-11-09 05:06:05
## 6462     4.0  973748787 2000-11-09 05:46:27
## 6463     4.0  973748523 2000-11-09 05:42:03
## 6464     4.0  973747740 2000-11-09 05:29:00
## 6465     5.0  973746655 2000-11-09 05:10:55
## 6466     4.0  973747658 2000-11-09 05:27:38
## 6467     4.0  973748350 2000-11-09 05:39:10
## 6468     3.0  973748196 2000-11-09 05:36:36
## 6469     3.0  973748228 2000-11-09 05:37:08
## 6470     4.0  973748254 2000-11-09 05:37:34
## 6471     4.0  973748809 2000-11-09 05:46:49
## 6472     3.0  973747643 2000-11-09 05:27:23
## 6473     4.0  973748598 2000-11-09 05:43:18
## 6474     4.0  973747740 2000-11-09 05:29:00
## 6475     5.0  973746668 2000-11-09 05:11:08
## 6476     4.0  973748228 2000-11-09 05:37:08
## 6477     3.0  973746214 2000-11-09 05:03:34
## 6478     4.0  973748361 2000-11-09 05:39:21
## 6479     4.0  973748614 2000-11-09 05:43:34
## 6480     5.0  973746655 2000-11-09 05:10:55
## 6481     3.0  973747385 2000-11-09 05:23:05
## 6482     1.0  973746896 2000-11-09 05:14:56
## 6483     4.0  973746974 2000-11-09 05:16:14
## 6484     4.0  973748941 2000-11-09 05:49:01
## 6485     3.0  973748196 2000-11-09 05:36:36
## 6486     4.0  973748336 2000-11-09 05:38:56
## 6487     4.0  973746707 2000-11-09 05:11:47
## 6488     4.0  973747591 2000-11-09 05:26:31
## 6489     5.0  973746668 2000-11-09 05:11:08
## 6490     4.0  973748350 2000-11-09 05:39:10
## 6491     4.0  973747658 2000-11-09 05:27:38
## 6492     4.0  973748523 2000-11-09 05:42:03
## 6493     5.0  973746734 2000-11-09 05:12:14
## 6494     5.0  973747591 2000-11-09 05:26:31
## 6495     4.0  973747539 2000-11-09 05:25:39
## 6496     4.0  973747482 2000-11-09 05:24:42
## 6497     4.0  973746760 2000-11-09 05:12:40
## 6498     5.0  973746597 2000-11-09 05:09:57
## 6499     4.0  973747938 2000-11-09 05:32:18
## 6500     4.0  973747685 2000-11-09 05:28:05
## 6501     3.0  973747017 2000-11-09 05:16:57
## 6502     2.5 1174450075 2007-03-21 04:07:55
## 6503     1.5 1174450069 2007-03-21 04:07:49
## 6504     3.0 1174450074 2007-03-21 04:07:54
## 6505     4.0 1174450073 2007-03-21 04:07:53
## 6506     2.0 1174450068 2007-03-21 04:07:48
## 6507     4.0 1174450072 2007-03-21 04:07:52
## 6508     1.5 1174450057 2007-03-21 04:07:37
## 6509     1.5 1174450070 2007-03-21 04:07:50
## 6510     1.5 1174450053 2007-03-21 04:07:33
## 6511     0.5 1174450079 2007-03-21 04:07:59
## 6512     1.5 1174450076 2007-03-21 04:07:56
## 6513     2.5 1174450052 2007-03-21 04:07:32
## 6514     1.0 1174450054 2007-03-21 04:07:34
## 6515     3.5 1174450064 2007-03-21 04:07:44
## 6516     4.0 1174450063 2007-03-21 04:07:43
## 6517     3.5 1174450061 2007-03-21 04:07:41
## 6518     2.0 1174450051 2007-03-21 04:07:31
## 6519     0.5 1174450080 2007-03-21 04:08:00
## 6520     5.0 1174450056 2007-03-21 04:07:36
## 6521     2.5 1174450059 2007-03-21 04:07:39
## 6522     3.0  847057147 1996-11-03 21:39:07
## 6523     3.0  847057223 1996-11-03 21:40:23
## 6524     4.0  847058210 1996-11-03 21:56:50
## 6525     3.0  847056854 1996-11-03 21:34:14
## 6526     4.0  847057119 1996-11-03 21:38:39
## 6527     3.0  847057202 1996-11-03 21:40:02
## 6528     5.0  847056901 1996-11-03 21:35:01
## 6529     4.0  853005249 1997-01-11 17:54:09
## 6530     3.0  847057696 1996-11-03 21:48:16
## 6531     4.0  847057256 1996-11-03 21:40:56
## 6532     4.0  847056901 1996-11-03 21:35:01
## 6533     3.0  847057520 1996-11-03 21:45:20
## 6534     4.0  853005393 1997-01-11 17:56:33
## 6535     4.0  847057727 1996-11-03 21:48:47
## 6536     5.0  847057363 1996-11-03 21:42:43
## 6537     4.0  847058235 1996-11-03 21:57:15
## 6538     4.0  847057202 1996-11-03 21:40:02
## 6539     4.0  847057626 1996-11-03 21:47:06
## 6540     3.0  847057301 1996-11-03 21:41:41
## 6541     3.0  847057765 1996-11-03 21:49:25
## 6542     3.0  847058110 1996-11-03 21:55:10
## 6543     3.0  847056547 1996-11-03 21:29:07
## 6544     3.0  847057385 1996-11-03 21:43:05
## 6545     5.0  847057223 1996-11-03 21:40:23
## 6546     5.0  847057504 1996-11-03 21:45:04
## 6547     3.0  847057018 1996-11-03 21:36:58
## 6548     4.0  847058186 1996-11-03 21:56:26
## 6549     4.0  847057256 1996-11-03 21:40:56
## 6550     2.0  847057444 1996-11-03 21:44:04
## 6551     4.0  847057471 1996-11-03 21:44:31
## 6552     3.0  847057061 1996-11-03 21:37:41
## 6553     4.0  847056783 1996-11-03 21:33:03
## 6554     3.0  847057136 1996-11-03 21:38:56
## 6555     5.0  847057564 1996-11-03 21:46:04
## 6556     4.0  847057120 1996-11-03 21:38:40
## 6557     5.0  847057136 1996-11-03 21:38:56
## 6558     4.0  847057240 1996-11-03 21:40:40
## 6559     3.0  847057240 1996-11-03 21:40:40
## 6560     3.0  847057202 1996-11-03 21:40:02
## 6561     3.0  847056984 1996-11-03 21:36:24
## 6562     4.0  847056803 1996-11-03 21:33:23
## 6563     5.0  847057094 1996-11-03 21:38:14
## 6564     4.0  847056510 1996-11-03 21:28:30
## 6565     4.0  847056819 1996-11-03 21:33:39
## 6566     5.0  847057482 1996-11-03 21:44:42
## 6567     5.0  847057520 1996-11-03 21:45:20
## 6568     5.0  847057594 1996-11-03 21:46:34
## 6569     3.0  847057827 1996-11-03 21:50:27
## 6570     5.0  847056984 1996-11-03 21:36:24
## 6571     4.0  847056636 1996-11-03 21:30:36
## 6572     5.0  847058110 1996-11-03 21:55:10
## 6573     4.0  847058173 1996-11-03 21:56:13
## 6574     4.0  847057385 1996-11-03 21:43:05
## 6575     3.0  847057278 1996-11-03 21:41:18
## 6576     3.0  847056948 1996-11-03 21:35:48
## 6577     3.0  847056636 1996-11-03 21:30:36
## 6578     4.0  847056901 1996-11-03 21:35:01
## 6579     4.0  847057314 1996-11-03 21:41:54
## 6580     3.0  847057119 1996-11-03 21:38:39
## 6581     3.0  847057444 1996-11-03 21:44:04
## 6582     3.0  847057328 1996-11-03 21:42:08
## 6583     3.0  847057520 1996-11-03 21:45:20
## 6584     5.0  847057626 1996-11-03 21:47:06
## 6585     3.0  847056926 1996-11-03 21:35:26
## 6586     4.0  847057363 1996-11-03 21:42:43
## 6587     3.0  847056948 1996-11-03 21:35:48
## 6588     3.0  847056636 1996-11-03 21:30:36
## 6589     3.0  847056926 1996-11-03 21:35:26
## 6590     3.0  847056783 1996-11-03 21:33:03
## 6591     3.0  847056547 1996-11-03 21:29:07
## 6592     4.0  847058159 1996-11-03 21:55:59
## 6593     4.0  847057363 1996-11-03 21:42:43
## 6594     3.0  847056636 1996-11-03 21:30:36
## 6595     4.0  847057626 1996-11-03 21:47:06
## 6596     3.0  847057385 1996-11-03 21:43:05
## 6597     4.0  847057047 1996-11-03 21:37:27
## 6598     4.0  847057018 1996-11-03 21:36:58
## 6599     3.0  847057179 1996-11-03 21:39:39
## 6600     4.0  847057776 1996-11-03 21:49:36
## 6601     3.0  847057575 1996-11-03 21:46:15
## 6602     5.0  847056901 1996-11-03 21:35:01
## 6603     4.0  847057444 1996-11-03 21:44:04
## 6604     3.0  847057415 1996-11-03 21:43:35
## 6605     4.0  847057552 1996-11-03 21:45:52
## 6606     3.0  847056854 1996-11-03 21:34:14
## 6607     3.0  847057363 1996-11-03 21:42:43
## 6608     3.0  847057328 1996-11-03 21:42:08
## 6609     3.0  847057094 1996-11-03 21:38:14
## 6610     2.0  847056854 1996-11-03 21:34:14
## 6611     3.0  847056854 1996-11-03 21:34:14
## 6612     3.0  847056547 1996-11-03 21:29:07
## 6613     3.0  847056510 1996-11-03 21:28:30
## 6614     3.0  847056510 1996-11-03 21:28:30
## 6615     4.0  847056670 1996-11-03 21:31:10
## 6616     3.0  847056819 1996-11-03 21:33:39
## 6617     3.0  853005492 1997-01-11 17:58:12
## 6618     4.0  847057827 1996-11-03 21:50:27
## 6619     5.0  847058362 1996-11-03 21:59:22
## 6620     2.0  853005800 1997-01-11 18:03:20
## 6621     4.0  847058174 1996-11-03 21:56:14
## 6622     3.0  847057696 1996-11-03 21:48:16
## 6623     3.0  847057928 1996-11-03 21:52:08
## 6624     4.0  853005393 1997-01-11 17:56:33
## 6625     3.0  853005621 1997-01-11 18:00:21
## 6626     4.0  981308121 2001-02-04 17:35:21
## 6627     5.0  981308154 2001-02-04 17:35:54
## 6628     5.0  981308140 2001-02-04 17:35:40
## 6629     2.0  981308246 2001-02-04 17:37:26
## 6630     5.0  981308213 2001-02-04 17:36:53
## 6631     5.0  981308224 2001-02-04 17:37:04
## 6632     3.0  981308294 2001-02-04 17:38:14
## 6633     5.0  981304357 2001-02-04 16:32:37
## 6634     3.0  981308309 2001-02-04 17:38:29
## 6635     5.0  981304357 2001-02-04 16:32:37
## 6636     5.0  981308234 2001-02-04 17:37:14
## 6637     5.0  981308177 2001-02-04 17:36:17
## 6638     4.0  981304316 2001-02-04 16:31:56
## 6639     5.0  981308154 2001-02-04 17:35:54
## 6640     4.0  981308140 2001-02-04 17:35:40
## 6641     3.0  981304291 2001-02-04 16:31:31
## 6642     4.0  981308009 2001-02-04 17:33:29
## 6643     4.0  981304887 2001-02-04 16:41:27
## 6644     4.0  981307942 2001-02-04 17:32:22
## 6645     4.0  981307942 2001-02-04 17:32:22
## 6646     4.0  981304357 2001-02-04 16:32:37
## 6647     3.0  981307942 2001-02-04 17:32:22
## 6648     4.0  981307968 2001-02-04 17:32:48
## 6649     3.0  981307838 2001-02-04 17:30:38
## 6650     5.0  981304524 2001-02-04 16:35:24
## 6651     3.0  981304524 2001-02-04 16:35:24
## 6652     4.0  981304557 2001-02-04 16:35:57
## 6653     3.0  981304635 2001-02-04 16:37:15
## 6654     5.0  981304606 2001-02-04 16:36:46
## 6655     5.0  981307823 2001-02-04 17:30:23
## 6656     3.0  981307823 2001-02-04 17:30:23
## 6657     4.0  981304524 2001-02-04 16:35:24
## 6658     4.5 1389771630 2014-01-15 07:40:30
## 6659     4.0 1416075134 2014-11-15 18:12:14
## 6660     4.0 1390332781 2014-01-21 19:33:01
## 6661     4.5 1389806635 2014-01-15 17:23:55
## 6662     5.0 1389730389 2014-01-14 20:13:09
## 6663     4.5 1389721577 2014-01-14 17:46:17
## 6664     4.5 1389722765 2014-01-14 18:06:05
## 6665     4.5 1390465407 2014-01-23 08:23:27
## 6666     4.0 1389806534 2014-01-15 17:22:14
## 6667     4.5 1389721943 2014-01-14 17:52:23
## 6668     3.0 1416075151 2014-11-15 18:12:31
## 6669     4.5 1392361524 2014-02-14 07:05:24
## 6670     4.0 1389806512 2014-01-15 17:21:52
## 6671     3.5 1389806500 2014-01-15 17:21:40
## 6672     4.5 1392361495 2014-02-14 07:04:55
## 6673     4.0 1389806694 2014-01-15 17:24:54
## 6674     4.5 1389721548 2014-01-14 17:45:48
## 6675     4.5 1389722583 2014-01-14 18:03:03
## 6676     4.5 1416074954 2014-11-15 18:09:14
## 6677     4.5 1389721750 2014-01-14 17:49:10
## 6678     4.0 1389806738 2014-01-15 17:25:38
## 6679     4.0 1389722713 2014-01-14 18:05:13
## 6680     4.5 1389867840 2014-01-16 10:24:00
## 6681     4.0 1416075195 2014-11-15 18:13:15
## 6682     4.5 1389722598 2014-01-14 18:03:18
## 6683     4.0 1389721555 2014-01-14 17:45:55
## 6684     4.5 1389723752 2014-01-14 18:22:32
## 6685     4.0 1416075214 2014-11-15 18:13:34
## 6686     3.5 1416075186 2014-11-15 18:13:06
## 6687     3.0 1416075336 2014-11-15 18:15:36
## 6688     3.0 1389721837 2014-01-14 17:50:37
## 6689     5.0 1389722661 2014-01-14 18:04:21
## 6690     4.5 1389722398 2014-01-14 17:59:58
## 6691     3.5 1389721935 2014-01-14 17:52:15
## 6692     4.5 1389771994 2014-01-15 07:46:34
## 6693     3.0 1416075365 2014-11-15 18:16:05
## 6694     4.5 1389723398 2014-01-14 18:16:38
## 6695     4.0 1416075122 2014-11-15 18:12:02
## 6696     4.0 1389721528 2014-01-14 17:45:28
## 6697     4.0 1389721611 2014-01-14 17:46:51
## 6698     4.0 1389721880 2014-01-14 17:51:20
## 6699     4.0 1389722718 2014-01-14 18:05:18
## 6700     4.0 1389722656 2014-01-14 18:04:16
## 6701     5.0 1389721692 2014-01-14 17:48:12
## 6702     4.5 1416075166 2014-11-15 18:12:46
## 6703     5.0 1389723727 2014-01-14 18:22:07
## 6704     5.0 1389772593 2014-01-15 07:56:33
## 6705     4.5 1389722696 2014-01-14 18:04:56
## 6706     4.5 1389727818 2014-01-14 19:30:18
## 6707     3.5 1390248633 2014-01-20 20:10:33
## 6708     3.5 1389722066 2014-01-14 17:54:26
## 6709     4.0 1389722650 2014-01-14 18:04:10
## 6710     4.0 1389806551 2014-01-15 17:22:31
## 6711     4.5 1416075239 2014-11-15 18:13:59
## 6712     4.0 1416075232 2014-11-15 18:13:52
## 6713     4.5 1416075296 2014-11-15 18:14:56
## 6714     4.5 1416075161 2014-11-15 18:12:41
## 6715     5.0 1389772624 2014-01-15 07:57:04
## 6716     3.0 1416075350 2014-11-15 18:15:50
## 6717     4.0 1416075210 2014-11-15 18:13:30
## 6718     4.5 1389771156 2014-01-15 07:32:36
## 6719     4.0 1416075281 2014-11-15 18:14:41
## 6720     4.5 1390248823 2014-01-20 20:13:43
## 6721     4.5 1389724072 2014-01-14 18:27:52
## 6722     5.0 1389722376 2014-01-14 17:59:36
## 6723     4.5 1389722731 2014-01-14 18:05:31
## 6724     4.0 1416074901 2014-11-15 18:08:21
## 6725     4.5 1389727905 2014-01-14 19:31:45
## 6726     4.5 1389771972 2014-01-15 07:46:12
## 6727     3.5 1416075321 2014-11-15 18:15:21
## 6728     4.5 1389727866 2014-01-14 19:31:06
## 6729     5.0 1389727843 2014-01-14 19:30:43
## 6730     4.0 1416074904 2014-11-15 18:08:24
## 6731     4.5 1389727922 2014-01-14 19:32:02
## 6732     4.5 1389727802 2014-01-14 19:30:02
## 6733     4.5 1389770804 2014-01-15 07:26:44
## 6734     4.5 1389722725 2014-01-14 18:05:25
## 6735     4.0 1416075331 2014-11-15 18:15:31
## 6736     4.5 1389722602 2014-01-14 18:03:22
## 6737     5.0 1389723788 2014-01-14 18:23:08
## 6738     4.0 1449693140 2015-12-09 20:32:20
## 6739     4.5 1389771542 2014-01-15 07:39:02
## 6740     3.5 1449693163 2015-12-09 20:32:43
## 6741     4.5 1389722628 2014-01-14 18:03:48
## 6742     5.0 1389772590 2014-01-15 07:56:30
## 6743     4.0 1389721498 2014-01-14 17:44:58
## 6744     4.5 1449693148 2015-12-09 20:32:28
## 6745     5.0 1389723595 2014-01-14 18:19:55
## 6746     5.0 1389772585 2014-01-15 07:56:25
## 6747     4.5 1389727890 2014-01-14 19:31:30
## 6748     5.0 1389723643 2014-01-14 18:20:43
## 6749     4.0 1389722704 2014-01-14 18:05:04
## 6750     4.5 1390248771 2014-01-20 20:12:51
## 6751     5.0 1389723529 2014-01-14 18:18:49
## 6752     4.0 1404126075 2014-06-30 11:01:15
## 6753     5.0 1389723592 2014-01-14 18:19:52
## 6754     5.0 1389772588 2014-01-15 07:56:28
## 6755     4.5 1390150283 2014-01-19 16:51:23
## 6756     3.0 1416074797 2014-11-15 18:06:37
## 6757     5.0 1389723691 2014-01-14 18:21:31
## 6758     4.0 1390151672 2014-01-19 17:14:32
## 6759     4.5 1416074943 2014-11-15 18:09:03
## 6760     4.5 1404126065 2014-06-30 11:01:05
## 6761     4.5 1394397488 2014-03-09 20:38:08
## 6762     4.5 1392238405 2014-02-12 20:53:25
## 6763     4.0 1392124587 2014-02-11 13:16:27
## 6764     5.0 1389723664 2014-01-14 18:21:04
## 6765     4.0 1416074859 2014-11-15 18:07:39
## 6766     4.0 1413132672 2014-10-12 16:51:12
## 6767     4.5 1413132591 2014-10-12 16:49:51
## 6768     4.5 1445451791 2015-10-21 18:23:11
## 6769     4.0  832523607 1996-05-19 16:33:27
## 6770     5.0  832523129 1996-05-19 16:25:29
## 6771     5.0  832525129 1996-05-19 16:58:49
## 6772     3.0  833532967 1996-05-31 08:56:07
## 6773     4.0  832523361 1996-05-19 16:29:21
## 6774     3.0  832525157 1996-05-19 16:59:17
## 6775     4.0  832523229 1996-05-19 16:27:09
## 6776     3.0  832523307 1996-05-19 16:28:27
## 6777     3.0  832523276 1996-05-19 16:27:56
## 6778     5.0  832523201 1996-05-19 16:26:41
## 6779     3.0  833532967 1996-05-31 08:56:07
## 6780     3.0  832523411 1996-05-19 16:30:11
## 6781     5.0  832523550 1996-05-19 16:32:30
## 6782     3.0  832523738 1996-05-19 16:35:38
## 6783     4.0  832523013 1996-05-19 16:23:33
## 6784     3.0  832523045 1996-05-19 16:24:05
## 6785     3.0  832523339 1996-05-19 16:28:59
## 6786     5.0  832525181 1996-05-19 16:59:41
## 6787     5.0  832523045 1996-05-19 16:24:05
## 6788     3.0  832525093 1996-05-19 16:58:13
## 6789     3.0  832525181 1996-05-19 16:59:41
## 6790     3.0  833534728 1996-05-31 09:25:28
## 6791     4.0  832523386 1996-05-19 16:29:46
## 6792     5.0  832523276 1996-05-19 16:27:56
## 6793     2.0  832523411 1996-05-19 16:30:11
## 6794     5.0  832523229 1996-05-19 16:27:09
## 6795     4.0  832523478 1996-05-19 16:31:18
## 6796     4.0  832523276 1996-05-19 16:27:56
## 6797     4.0  832523082 1996-05-19 16:24:42
## 6798     4.0  832523151 1996-05-19 16:25:51
## 6799     3.0  832523340 1996-05-19 16:29:00
## 6800     4.0  832523436 1996-05-19 16:30:36
## 6801     4.0  832523339 1996-05-19 16:28:59
## 6802     4.0  832523276 1996-05-19 16:27:56
## 6803     5.0  832523013 1996-05-19 16:23:33
## 6804     4.0  832525157 1996-05-19 16:59:17
## 6805     4.0  832523082 1996-05-19 16:24:42
## 6806     5.0  832523229 1996-05-19 16:27:09
## 6807     2.0  832523386 1996-05-19 16:29:46
## 6808     3.0  832523386 1996-05-19 16:29:46
## 6809     3.0  832523307 1996-05-19 16:28:27
## 6810     3.0  832525157 1996-05-19 16:59:17
## 6811     4.0  832523045 1996-05-19 16:24:05
## 6812     5.0  832523201 1996-05-19 16:26:41
## 6813     3.0  832523411 1996-05-19 16:30:11
## 6814     5.0  832523013 1996-05-19 16:23:33
## 6815     3.0  832523386 1996-05-19 16:29:46
## 6816     4.0  832523129 1996-05-19 16:25:29
## 6817     4.0  832523550 1996-05-19 16:32:30
## 6818     4.0  832525093 1996-05-19 16:58:13
## 6819     4.0  832525157 1996-05-19 16:59:17
## 6820     3.0  832523045 1996-05-19 16:24:05
## 6821     3.0  832523013 1996-05-19 16:23:33
## 6822     3.0  832523013 1996-05-19 16:23:33
## 6823     3.0  832523340 1996-05-19 16:29:00
## 6824     3.0  832523082 1996-05-19 16:24:42
## 6825     4.0  832523411 1996-05-19 16:30:11
## 6826     5.0  832523386 1996-05-19 16:29:46
## 6827     4.0  833532966 1996-05-31 08:56:06
## 6828     5.0  833534266 1996-05-31 09:17:46
## 6829     4.0  833534728 1996-05-31 09:25:28
## 6830     4.0  833533335 1996-05-31 09:02:15
## 6831     4.5 1466993349 2016-06-27 02:09:09
## 6832     4.5 1466993118 2016-06-27 02:05:18
## 6833     5.0 1466993530 2016-06-27 02:12:10
## 6834     4.5 1466993354 2016-06-27 02:09:14
## 6835     5.0 1466993529 2016-06-27 02:12:09
## 6836     4.5 1466993346 2016-06-27 02:09:06
## 6837     4.0 1466993115 2016-06-27 02:05:15
## 6838     5.0 1466993204 2016-06-27 02:06:44
## 6839     4.5 1466993344 2016-06-27 02:09:04
## 6840     4.5 1466993342 2016-06-27 02:09:02
## 6841     4.5 1466993378 2016-06-27 02:09:38
## 6842     4.5 1466993229 2016-06-27 02:07:09
## 6843     4.5 1466993276 2016-06-27 02:07:56
## 6844     4.0 1466993488 2016-06-27 02:11:28
## 6845     5.0 1466993335 2016-06-27 02:08:55
## 6846     4.5 1466993481 2016-06-27 02:11:21
## 6847     5.0 1466993384 2016-06-27 02:09:44
## 6848     5.0 1466993158 2016-06-27 02:05:58
## 6849     5.0 1466993190 2016-06-27 02:06:30
## 6850     4.5 1466993355 2016-06-27 02:09:15
## 6851     5.0 1466993234 2016-06-27 02:07:14
## 6852     4.5 1466993333 2016-06-27 02:08:53
## 6853     4.5 1466993372 2016-06-27 02:09:32
## 6854     4.5 1466993341 2016-06-27 02:09:01
## 6855     4.0 1466993490 2016-06-27 02:11:30
## 6856     4.5 1466993381 2016-06-27 02:09:41
## 6857     4.5 1466993409 2016-06-27 02:10:09
## 6858     4.5 1466993382 2016-06-27 02:09:42
## 6859     3.5 1466993111 2016-06-27 02:05:11
## 6860     4.5 1466993067 2016-06-27 02:04:27
## 6861     4.5 1466993225 2016-06-27 02:07:05
## 6862     4.0 1466993108 2016-06-27 02:05:08
## 6863     5.0 1466993170 2016-06-27 02:06:10
## 6864     4.5 1466993210 2016-06-27 02:06:50
## 6865     4.0 1466993109 2016-06-27 02:05:09
## 6866     4.0 1466993120 2016-06-27 02:05:20
## 6867     4.5 1466993261 2016-06-27 02:07:41
## 6868     4.5 1466993084 2016-06-27 02:04:44
## 6869     4.5 1466993083 2016-06-27 02:04:43
## 6870     5.0 1466993138 2016-06-27 02:05:38
## 6871     4.0 1466993078 2016-06-27 02:04:38
## 6872     5.0 1466993247 2016-06-27 02:07:27
## 6873     4.0 1466993080 2016-06-27 02:04:40
## 6874     3.5 1093888283 2004-08-30 17:51:23
## 6875     4.0 1109812071 2005-03-03 01:07:51
## 6876     4.0 1107100653 2005-01-30 15:57:33
## 6877     4.5 1093889645 2004-08-30 18:14:05
## 6878     4.0 1093889934 2004-08-30 18:18:54
## 6879     3.5 1093886586 2004-08-30 17:23:06
## 6880     4.0 1093887939 2004-08-30 17:45:39
## 6881     3.0 1107100488 2005-01-30 15:54:48
## 6882     4.0 1093889464 2004-08-30 18:11:04
## 6883     4.0 1093889445 2004-08-30 18:10:45
## 6884     4.0 1093889592 2004-08-30 18:13:12
## 6885     4.0 1093886942 2004-08-30 17:29:02
## 6886     4.5 1093888245 2004-08-30 17:50:45
## 6887     3.5 1093887342 2004-08-30 17:35:42
## 6888     4.0 1093887872 2004-08-30 17:44:32
## 6889     4.0 1093887332 2004-08-30 17:35:32
## 6890     4.0 1093887890 2004-08-30 17:44:50
## 6891     4.0 1093889723 2004-08-30 18:15:23
## 6892     3.5 1109811944 2005-03-03 01:05:44
## 6893     4.5 1093889928 2004-08-30 18:18:48
## 6894     4.0 1093889918 2004-08-30 18:18:38
## 6895     3.0 1093887714 2004-08-30 17:41:54
## 6896     4.0 1107100407 2005-01-30 15:53:27
## 6897     3.5 1093887565 2004-08-30 17:39:25
## 6898     4.0 1109812244 2005-03-03 01:10:44
## 6899     5.0 1093886954 2004-08-30 17:29:14
## 6900     4.0 1109816473 2005-03-03 02:21:13
## 6901     3.0 1093886809 2004-08-30 17:26:49
## 6902     4.0 1093889939 2004-08-30 18:18:59
## 6903     4.0 1093886816 2004-08-30 17:26:56
## 6904     4.0 1093889943 2004-08-30 18:19:03
## 6905     3.5 1093889745 2004-08-30 18:15:45
## 6906     4.0 1093889923 2004-08-30 18:18:43
## 6907     4.0 1093887933 2004-08-30 17:45:33
## 6908     4.0 1093888232 2004-08-30 17:50:32
## 6909     4.0 1093888563 2004-08-30 17:56:03
## 6910     5.0 1093886949 2004-08-30 17:29:09
## 6911     3.5 1093888257 2004-08-30 17:50:57
## 6912     3.5 1093887515 2004-08-30 17:38:35
## 6913     4.0 1093888221 2004-08-30 17:50:21
## 6914     4.0 1093886957 2004-08-30 17:29:17
## 6915     4.0 1093887808 2004-08-30 17:43:28
## 6916     3.5 1093887255 2004-08-30 17:34:15
## 6917     4.5 1093887235 2004-08-30 17:33:55
## 6918     4.0 1093886850 2004-08-30 17:27:30
## 6919     4.0 1093887592 2004-08-30 17:39:52
## 6920     3.5 1093886864 2004-08-30 17:27:44
## 6921     4.0 1109812957 2005-03-03 01:22:37
## 6922     4.0 1093886842 2004-08-30 17:27:22
## 6923     5.0 1093888517 2004-08-30 17:55:17
## 6924     4.0 1109812135 2005-03-03 01:08:55
## 6925     4.0 1093886838 2004-08-30 17:27:18
## 6926     4.0 1093887801 2004-08-30 17:43:21
## 6927     5.0 1097643542 2004-10-13 04:59:02
## 6928     3.0 1093886607 2004-08-30 17:23:27
## 6929     4.0 1093886800 2004-08-30 17:26:40
## 6930     2.5 1093886688 2004-08-30 17:24:48
## 6931     4.0 1093887320 2004-08-30 17:35:20
## 6932     3.5 1093886662 2004-08-30 17:24:22
## 6933     4.0 1093887228 2004-08-30 17:33:48
## 6934     4.0 1093887305 2004-08-30 17:35:05
## 6935     4.5 1093887459 2004-08-30 17:37:39
## 6936     4.0 1093886628 2004-08-30 17:23:48
## 6937     4.0 1093887310 2004-08-30 17:35:10
## 6938     4.0 1093888850 2004-08-30 18:00:50
## 6939     4.0 1093887546 2004-08-30 17:39:06
## 6940     4.5 1093889656 2004-08-30 18:14:16
## 6941     3.5 1109816599 2005-03-03 02:23:19
## 6942     4.0 1093887797 2004-08-30 17:43:17
## 6943     4.0 1109817081 2005-03-03 02:31:21
## 6944     4.0 1107100370 2005-01-30 15:52:50
## 6945     4.0 1093886682 2004-08-30 17:24:42
## 6946     4.0 1093889432 2004-08-30 18:10:32
## 6947     3.0 1093886675 2004-08-30 17:24:35
## 6948     4.0 1093886696 2004-08-30 17:24:56
## 6949     4.0 1093888605 2004-08-30 17:56:45
## 6950     3.5 1109816608 2005-03-03 02:23:28
## 6951     3.5 1093887570 2004-08-30 17:39:30
## 6952     4.0 1093889528 2004-08-30 18:12:08
## 6953     4.0 1093887494 2004-08-30 17:38:14
## 6954     3.0 1093887748 2004-08-30 17:42:28
## 6955     4.0 1093886646 2004-08-30 17:24:06
## 6956     3.0 1093886639 2004-08-30 17:23:59
## 6957     2.5 1093886710 2004-08-30 17:25:10
## 6958     4.5 1093887358 2004-08-30 17:35:58
## 6959     4.0 1093886978 2004-08-30 17:29:38
## 6960     3.5 1093887247 2004-08-30 17:34:07
## 6961     5.0 1093888806 2004-08-30 18:00:06
## 6962     5.0 1093886731 2004-08-30 17:25:31
## 6963     5.0 1093887657 2004-08-30 17:40:57
## 6964     4.0 1093889070 2004-08-30 18:04:30
## 6965     3.5 1093887225 2004-08-30 17:33:45
## 6966     4.0 1093887270 2004-08-30 17:34:30
## 6967     3.5 1093887900 2004-08-30 17:45:00
## 6968     3.0 1093887778 2004-08-30 17:42:58
## 6969     3.0 1093886717 2004-08-30 17:25:17
## 6970     3.0 1093889767 2004-08-30 18:16:07
## 6971     3.5 1093889882 2004-08-30 18:18:02
## 6972     4.0 1093889880 2004-08-30 18:18:00
## 6973     4.0 1093886794 2004-08-30 17:26:34
## 6974     4.0 1093887555 2004-08-30 17:39:15
## 6975     3.0 1093887368 2004-08-30 17:36:08
## 6976     3.0 1093887455 2004-08-30 17:37:35
## 6977     3.0 1093887370 2004-08-30 17:36:10
## 6978     2.5 1093889776 2004-08-30 18:16:16
## 6979     4.0 1093887787 2004-08-30 17:43:07
## 6980     5.0 1093886846 2004-08-30 17:27:26
## 6981     3.5 1093887446 2004-08-30 17:37:26
## 6982     4.0 1093887000 2004-08-30 17:30:00
## 6983     3.5 1093886996 2004-08-30 17:29:56
## 6984     3.5 1093887641 2004-08-30 17:40:41
## 6985     3.5 1093888808 2004-08-30 18:00:08
## 6986     3.5 1093888619 2004-08-30 17:56:59
## 6987     4.0 1109813581 2005-03-03 01:33:01
## 6988     4.5 1093889955 2004-08-30 18:19:15
## 6989     4.0 1093888474 2004-08-30 17:54:34
## 6990     3.5 1093887350 2004-08-30 17:35:50
## 6991     4.0 1107100646 2005-01-30 15:57:26
## 6992     4.0 1093889376 2004-08-30 18:09:36
## 6993     4.0 1093886735 2004-08-30 17:25:35
## 6994     4.0 1093887653 2004-08-30 17:40:53
## 6995     4.0 1107100458 2005-01-30 15:54:18
## 6996     3.0 1093886668 2004-08-30 17:24:28
## 6997     4.0 1109812788 2005-03-03 01:19:48
## 6998     3.5 1107102322 2005-01-30 16:25:22
## 6999     4.0 1093887804 2004-08-30 17:43:24
## 7000     4.0 1093889047 2004-08-30 18:04:07
## 7001     4.0 1093889492 2004-08-30 18:11:32
## 7002     4.0 1093888032 2004-08-30 17:47:12
## 7003     3.5 1093887254 2004-08-30 17:34:14
## 7004     3.5 1093887241 2004-08-30 17:34:01
## 7005     3.5 1109816504 2005-03-03 02:21:44
## 7006     4.0 1093887379 2004-08-30 17:36:19
## 7007     4.0 1093887539 2004-08-30 17:38:59
## 7008     4.0 1093887217 2004-08-30 17:33:37
## 7009     3.5 1093886835 2004-08-30 17:27:15
## 7010     4.0 1109812900 2005-03-03 01:21:40
## 7011     3.5 1093887961 2004-08-30 17:46:01
## 7012     3.5 1093886804 2004-08-30 17:26:44
## 7013     4.0 1093888544 2004-08-30 17:55:44
## 7014     3.0 1093887835 2004-08-30 17:43:55
## 7015     3.5 1107100521 2005-01-30 15:55:21
## 7016     4.0 1093888299 2004-08-30 17:51:39
## 7017     4.0 1109815125 2005-03-03 01:58:45
## 7018     4.0 1093888109 2004-08-30 17:48:29
## 7019     4.0 1093887385 2004-08-30 17:36:25
## 7020     3.5 1109812764 2005-03-03 01:19:24
## 7021     4.0 1093886811 2004-08-30 17:26:51
## 7022     4.5 1107100717 2005-01-30 15:58:37
## 7023     3.5 1109814401 2005-03-03 01:46:41
## 7024     4.0 1097643815 2004-10-13 05:03:35
## 7025     2.5 1107100577 2005-01-30 15:56:17
## 7026     5.0 1093888629 2004-08-30 17:57:09
## 7027     4.0 1093888505 2004-08-30 17:55:05
## 7028     3.5 1093887686 2004-08-30 17:41:26
## 7029     4.0 1093888656 2004-08-30 17:57:36
## 7030     4.0 1109814362 2005-03-03 01:46:02
## 7031     3.5 1107100440 2005-01-30 15:54:00
## 7032     4.0 1093887670 2004-08-30 17:41:10
## 7033     3.5 1093887634 2004-08-30 17:40:34
## 7034     3.5 1093887667 2004-08-30 17:41:07
## 7035     3.5 1093889755 2004-08-30 18:15:55
## 7036     4.5 1093888754 2004-08-30 17:59:14
## 7037     4.0 1093887626 2004-08-30 17:40:26
## 7038     4.0 1093889018 2004-08-30 18:03:38
## 7039     3.5 1093888602 2004-08-30 17:56:42
## 7040     4.0 1093888574 2004-08-30 17:56:14
## 7041     3.0 1107100419 2005-01-30 15:53:39
## 7042     4.5 1093887315 2004-08-30 17:35:15
## 7043     4.0 1093887680 2004-08-30 17:41:20
## 7044     4.5 1107100678 2005-01-30 15:57:58
## 7045     4.0 1109816658 2005-03-03 02:24:18
## 7046     3.5 1093887841 2004-08-30 17:44:01
## 7047     4.0 1093887726 2004-08-30 17:42:06
## 7048     4.5 1093889299 2004-08-30 18:08:19
## 7049     4.0 1109812953 2005-03-03 01:22:33
## 7050     4.0 1093887300 2004-08-30 17:35:00
## 7051     4.5 1093889479 2004-08-30 18:11:19
## 7052     3.5 1109813193 2005-03-03 01:26:33
## 7053     3.5 1093887324 2004-08-30 17:35:24
## 7054     4.0 1107100382 2005-01-30 15:53:02
## 7055     4.0 1093887757 2004-08-30 17:42:37
## 7056     3.0 1093887605 2004-08-30 17:40:05
## 7057     5.0 1107100700 2005-01-30 15:58:20
## 7058     4.0 1093889696 2004-08-30 18:14:56
## 7059     4.0 1093887354 2004-08-30 17:35:54
## 7060     4.0 1093888293 2004-08-30 17:51:33
## 7061     4.5 1093887507 2004-08-30 17:38:27
## 7062     4.0 1093887733 2004-08-30 17:42:13
## 7063     4.5 1093888481 2004-08-30 17:54:41
## 7064     4.5 1109814931 2005-03-03 01:55:31
## 7065     4.0 1107100536 2005-01-30 15:55:36
## 7066     3.0 1093887692 2004-08-30 17:41:32
## 7067     4.0 1093887208 2004-08-30 17:33:28
## 7068     4.0 1107101191 2005-01-30 16:06:31
## 7069     4.0 1093888986 2004-08-30 18:03:06
## 7070     4.0 1093886983 2004-08-30 17:29:43
## 7071     4.5 1109816462 2005-03-03 02:21:02
## 7072     4.0 1109814414 2005-03-03 01:46:54
## 7073     4.0 1473258241 2016-09-07 14:24:01
## 7074     3.5 1473258327 2016-09-07 14:25:27
## 7075     4.5 1473258165 2016-09-07 14:22:45
## 7076     5.0 1473258343 2016-09-07 14:25:43
## 7077     5.0 1473258147 2016-09-07 14:22:27
## 7078     4.0 1473258352 2016-09-07 14:25:52
## 7079     4.5 1473258274 2016-09-07 14:24:34
## 7080     3.5 1473258331 2016-09-07 14:25:31
## 7081     5.0 1473258276 2016-09-07 14:24:36
## 7082     5.0 1473258322 2016-09-07 14:25:22
## 7083     3.5 1473258311 2016-09-07 14:25:11
## 7084     4.5 1473258231 2016-09-07 14:23:51
## 7085     4.0 1473258320 2016-09-07 14:25:20
## 7086     5.0 1473258239 2016-09-07 14:23:59
## 7087     4.0 1473258424 2016-09-07 14:27:04
## 7088     3.5 1473258305 2016-09-07 14:25:05
## 7089     4.5 1473258392 2016-09-07 14:26:32
## 7090     5.0 1473258238 2016-09-07 14:23:58
## 7091     5.0 1473258304 2016-09-07 14:25:04
## 7092     5.0 1473258161 2016-09-07 14:22:41
## 7093     5.0 1473258167 2016-09-07 14:22:47
## 7094     5.0 1473258283 2016-09-07 14:24:43
## 7095     4.0 1473258220 2016-09-07 14:23:40
## 7096     4.5 1473258209 2016-09-07 14:23:29
## 7097     1.5 1473258445 2016-09-07 14:27:25
## 7098     3.5 1473258346 2016-09-07 14:25:46
## 7099     4.0 1473258360 2016-09-07 14:26:00
## 7100     3.0 1473258409 2016-09-07 14:26:49
## 7101     4.5 1473258315 2016-09-07 14:25:15
## 7102     4.0 1473258371 2016-09-07 14:26:11
## 7103     4.0 1473258242 2016-09-07 14:24:02
## 7104     3.5 1473258169 2016-09-07 14:22:49
## 7105     4.0 1473258329 2016-09-07 14:25:29
## 7106     4.0 1473258309 2016-09-07 14:25:09
## 7107     3.5 1473258388 2016-09-07 14:26:28
## 7108     2.5 1473258340 2016-09-07 14:25:40
## 7109     4.0 1473258318 2016-09-07 14:25:18
## 7110     5.0 1473258228 2016-09-07 14:23:48
## 7111     4.0 1473258373 2016-09-07 14:26:13
## 7112     4.5 1473258214 2016-09-07 14:23:34
## 7113     4.0 1473258181 2016-09-07 14:23:01
## 7114     5.0 1473258230 2016-09-07 14:23:50
## 7115     4.0 1473258386 2016-09-07 14:26:26
## 7116     4.0 1473258362 2016-09-07 14:26:02
## 7117     3.5 1473258269 2016-09-07 14:24:29
## 7118     3.5 1473258378 2016-09-07 14:26:18
## 7119     4.0 1473258374 2016-09-07 14:26:14
## 7120     4.0 1473258404 2016-09-07 14:26:44
## 7121     4.5 1473258313 2016-09-07 14:25:13
## 7122     4.5 1473258226 2016-09-07 14:23:46
## 7123     4.0 1473258244 2016-09-07 14:24:04
## 7124     3.0 1473258337 2016-09-07 14:25:37
## 7125     3.5 1473258248 2016-09-07 14:24:08
## 7126     4.5 1473258403 2016-09-07 14:26:43
## 7127     4.5 1473258440 2016-09-07 14:27:20
## 7128     4.0 1473258450 2016-09-07 14:27:30
## 7129     3.5 1473258356 2016-09-07 14:25:56
## 7130     4.5 1473258438 2016-09-07 14:27:18
## 7131     4.5 1473258272 2016-09-07 14:24:32
## 7132     4.0 1473258436 2016-09-07 14:27:16
## 7133     4.0 1473258396 2016-09-07 14:26:36
## 7134     3.5 1473258383 2016-09-07 14:26:23
## 7135     3.0 1473258427 2016-09-07 14:27:07
## 7136     2.0 1473258421 2016-09-07 14:27:01
## 7137     4.5 1473258369 2016-09-07 14:26:09
## 7138     4.0 1473258348 2016-09-07 14:25:48
## 7139     3.0 1473258291 2016-09-07 14:24:51
## 7140     3.5 1473258281 2016-09-07 14:24:41
## 7141     4.5 1473258287 2016-09-07 14:24:47
## 7142     2.0 1473258334 2016-09-07 14:25:34
## 7143     4.0  974768260 2000-11-21 00:57:40
## 7144     4.0  974768402 2000-11-21 01:00:02
## 7145     4.0  974768903 2000-11-21 01:08:23
## 7146     2.0  974767953 2000-11-21 00:52:33
## 7147     2.0  974769666 2000-11-21 01:21:06
## 7148     5.0  974767808 2000-11-21 00:50:08
## 7149     1.0  974770180 2000-11-21 01:29:40
## 7150     3.0  974768430 2000-11-21 01:00:30
## 7151     3.0  974769902 2000-11-21 01:25:02
## 7152     4.0  974769935 2000-11-21 01:25:35
## 7153     5.0  974768654 2000-11-21 01:04:14
## 7154     4.0  974767808 2000-11-21 00:50:08
## 7155     3.0  974769730 2000-11-21 01:22:10
## 7156     3.0  974767845 2000-11-21 00:50:45
## 7157     5.0  974756704 2000-11-20 21:45:04
## 7158     2.0  974770079 2000-11-21 01:27:59
## 7159     3.0  974768798 2000-11-21 01:06:38
## 7160     3.0  974767746 2000-11-21 00:49:06
## 7161     5.0  974770589 2000-11-21 01:36:29
## 7162     4.0  974769370 2000-11-21 01:16:10
## 7163     4.0  974768872 2000-11-21 01:07:52
## 7164     4.0  974767808 2000-11-21 00:50:08
## 7165     3.0  974756766 2000-11-20 21:46:06
## 7166     3.0  974770180 2000-11-21 01:29:40
## 7167     3.0  974770325 2000-11-21 01:32:05
## 7168     4.0  974769818 2000-11-21 01:23:38
## 7169     4.0  974770137 2000-11-21 01:28:57
## 7170     1.0  974769125 2000-11-21 01:12:05
## 7171     2.0  974768022 2000-11-21 00:53:42
## 7172     5.0  974769863 2000-11-21 01:24:23
## 7173     4.0  974767917 2000-11-21 00:51:57
## 7174     4.0  974769312 2000-11-21 01:15:12
## 7175     3.0  974767879 2000-11-21 00:51:19
## 7176     1.0  974770474 2000-11-21 01:34:34
## 7177     3.0  974769125 2000-11-21 01:12:05
## 7178     1.0  974769482 2000-11-21 01:18:02
## 7179     3.0  974769561 2000-11-21 01:19:21
## 7180     3.0  974768903 2000-11-21 01:08:23
## 7181     2.0  974769902 2000-11-21 01:25:02
## 7182     3.0  974756766 2000-11-20 21:46:06
## 7183     4.0  974769253 2000-11-21 01:14:13
## 7184     3.0  974768604 2000-11-21 01:03:24
## 7185     5.0  974770536 2000-11-21 01:35:36
## 7186     2.0  974768471 2000-11-21 01:01:11
## 7187     2.0  974769658 2000-11-21 01:20:58
## 7188     1.0  974770180 2000-11-21 01:29:40
## 7189     2.0  974770079 2000-11-21 01:27:59
## 7190     4.0  974768965 2000-11-21 01:09:25
## 7191     2.0  974770281 2000-11-21 01:31:21
## 7192     3.0  974770104 2000-11-21 01:28:24
## 7193     3.0  974768999 2000-11-21 01:09:59
## 7194     3.0  974769207 2000-11-21 01:13:27
## 7195     1.0  974767879 2000-11-21 00:51:19
## 7196     3.0  974767845 2000-11-21 00:50:45
## 7197     4.0  974768632 2000-11-21 01:03:52
## 7198     4.0  974768632 2000-11-21 01:03:52
## 7199     4.0  974768872 2000-11-21 01:07:52
## 7200     3.0  974768285 2000-11-21 00:58:05
## 7201     3.0  974768834 2000-11-21 01:07:14
## 7202     4.0  974768225 2000-11-21 00:57:05
## 7203     3.0  974769843 2000-11-21 01:24:03
## 7204     3.0  974767917 2000-11-21 00:51:57
## 7205     3.0  974767845 2000-11-21 00:50:45
## 7206     2.0  974769730 2000-11-21 01:22:10
## 7207     2.0  974769659 2000-11-21 01:20:59
## 7208     2.0  974770360 2000-11-21 01:32:40
## 7209     4.0  974769586 2000-11-21 01:19:46
## 7210     2.0  974770325 2000-11-21 01:32:05
## 7211     3.0  974756704 2000-11-20 21:45:04
## 7212     4.0  974769370 2000-11-21 01:16:10
## 7213     2.0  974768402 2000-11-21 01:00:02
## 7214     4.0  974768903 2000-11-21 01:08:23
## 7215     3.0  974770104 2000-11-21 01:28:24
## 7216     3.0  974769963 2000-11-21 01:26:03
## 7217     2.0  974767746 2000-11-21 00:49:06
## 7218     4.0  974768367 2000-11-21 00:59:27
## 7219     3.0  974769659 2000-11-21 01:20:59
## 7220     5.0  974768349 2000-11-21 00:59:09
## 7221     4.0  974769561 2000-11-21 01:19:21
## 7222     2.0  974770180 2000-11-21 01:29:40
## 7223     4.0  974768604 2000-11-21 01:03:24
## 7224     2.0  974756766 2000-11-20 21:46:06
## 7225     3.0  974769253 2000-11-21 01:14:13
## 7226     4.0  974768260 2000-11-21 00:57:40
## 7227     2.0  974770248 2000-11-21 01:30:48
## 7228     4.0  974756976 2000-11-20 21:49:36
## 7229     3.0  974767983 2000-11-21 00:53:03
## 7230     4.0  974769843 2000-11-21 01:24:03
## 7231     3.0  974769963 2000-11-21 01:26:03
## 7232     2.0  974770007 2000-11-21 01:26:47
## 7233     3.0  974769034 2000-11-21 01:10:34
## 7234     2.0  974767808 2000-11-21 00:50:08
## 7235     2.0  974770281 2000-11-21 01:31:21
## 7236     4.0  974757072 2000-11-20 21:51:12
## 7237     2.0  974767953 2000-11-21 00:52:33
## 7238     2.0  974756976 2000-11-20 21:49:36
## 7239     4.0  974756976 2000-11-20 21:49:36
## 7240     4.0  974756976 2000-11-20 21:49:36
## 7241     3.0  974769561 2000-11-21 01:19:21
## 7242     1.0  974757072 2000-11-20 21:51:12
## 7243     2.0  974757005 2000-11-20 21:50:05
## 7244     3.0  974757005 2000-11-20 21:50:05
## 7245     2.0  974769818 2000-11-21 01:23:38
## 7246     4.0  974756976 2000-11-20 21:49:36
## 7247     2.0  974770227 2000-11-21 01:30:27
## 7248     1.0  974768834 2000-11-21 01:07:14
## 7249     1.0  974769902 2000-11-21 01:25:02
## 7250     2.0  974767809 2000-11-21 00:50:09
## 7251     2.0  974768798 2000-11-21 01:06:38
## 7252     4.0  974768104 2000-11-21 00:55:04
## 7253     4.0  858707138 1997-03-18 17:45:38
## 7254     5.0  858707194 1997-03-18 17:46:34
## 7255     3.0  858707194 1997-03-18 17:46:34
## 7256     3.0  858707194 1997-03-18 17:46:34
## 7257     2.0  858707139 1997-03-18 17:45:39
## 7258     3.0  858707139 1997-03-18 17:45:39
## 7259     3.0  858707138 1997-03-18 17:45:38
## 7260     5.0  858707138 1997-03-18 17:45:38
## 7261     3.0  858707138 1997-03-18 17:45:38
## 7262     4.0  858707248 1997-03-18 17:47:28
## 7263     4.0  858707310 1997-03-18 17:48:30
## 7264     2.0  858707138 1997-03-18 17:45:38
## 7265     3.0  858707247 1997-03-18 17:47:27
## 7266     3.0  858707194 1997-03-18 17:46:34
## 7267     3.0  858707310 1997-03-18 17:48:30
## 7268     2.0  858707310 1997-03-18 17:48:30
## 7269     3.0  858707138 1997-03-18 17:45:38
## 7270     4.0  858707194 1997-03-18 17:46:34
## 7271     4.0  858707138 1997-03-18 17:45:38
## 7272     5.0  858707138 1997-03-18 17:45:38
## 7273     3.0  858707194 1997-03-18 17:46:34
## 7274     3.0  858707248 1997-03-18 17:47:28
## 7275     3.0  858707310 1997-03-18 17:48:30
## 7276     4.0  858707310 1997-03-18 17:48:30
## 7277     3.0  858707464 1997-03-18 17:51:04
## 7278     3.5 1140202251 2006-02-17 18:50:51
## 7279     4.0 1140202396 2006-02-17 18:53:16
## 7280     5.0 1140202299 2006-02-17 18:51:39
## 7281     4.0 1140202319 2006-02-17 18:51:59
## 7282     4.5 1140202390 2006-02-17 18:53:10
## 7283     3.0 1140202266 2006-02-17 18:51:06
## 7284     4.5 1140202294 2006-02-17 18:51:34
## 7285     4.5 1140202371 2006-02-17 18:52:51
## 7286     2.5 1140202408 2006-02-17 18:53:28
## 7287     4.5 1140202246 2006-02-17 18:50:46
## 7288     2.5 1140202271 2006-02-17 18:51:11
## 7289     2.5 1140202307 2006-02-17 18:51:47
## 7290     4.5 1140202374 2006-02-17 18:52:54
## 7291     4.5 1140202850 2006-02-17 19:00:50
## 7292     0.5 1140202339 2006-02-17 18:52:19
## 7293     4.0 1140202705 2006-02-17 18:58:25
## 7294     1.0 1140202402 2006-02-17 18:53:22
## 7295     2.5 1140202334 2006-02-17 18:52:14
## 7296     4.0 1140202838 2006-02-17 19:00:38
## 7297     5.0 1140202700 2006-02-17 18:58:20
## 7298     5.0 1140202636 2006-02-17 18:57:16
## 7299     5.0 1366389910 2013-04-19 16:45:10
## 7300     5.0 1366392410 2013-04-19 17:26:50
## 7301     5.0 1366389683 2013-04-19 16:41:23
## 7302     5.0 1366392989 2013-04-19 17:36:29
## 7303     4.5 1366389877 2013-04-19 16:44:37
## 7304     5.0 1366389853 2013-04-19 16:44:13
## 7305     5.0 1366392466 2013-04-19 17:27:46
## 7306     5.0 1366389759 2013-04-19 16:42:39
## 7307     5.0 1366390158 2013-04-19 16:49:18
## 7308     5.0 1366389889 2013-04-19 16:44:49
## 7309     5.0 1366390952 2013-04-19 17:02:32
## 7310     5.0 1366390956 2013-04-19 17:02:36
## 7311     5.0 1366389797 2013-04-19 16:43:17
## 7312     5.0 1366389671 2013-04-19 16:41:11
## 7313     5.0 1366389694 2013-04-19 16:41:34
## 7314     5.0 1366389699 2013-04-19 16:41:39
## 7315     5.0 1366391610 2013-04-19 17:13:30
## 7316     4.5 1366389806 2013-04-19 16:43:26
## 7317     4.0 1366389728 2013-04-19 16:42:08
## 7318     5.0 1366389737 2013-04-19 16:42:17
## 7319     5.0 1366390915 2013-04-19 17:01:55
## 7320     5.0 1366391137 2013-04-19 17:05:37
## 7321     5.0 1366389915 2013-04-19 16:45:15
## 7322     5.0 1366390910 2013-04-19 17:01:50
## 7323     5.0 1366390963 2013-04-19 17:02:43
## 7324     5.0 1366391584 2013-04-19 17:13:04
## 7325     5.0 1366389926 2013-04-19 16:45:26
## 7326     5.0 1366392529 2013-04-19 17:28:49
## 7327     5.0 1366393248 2013-04-19 17:40:48
## 7328     5.0 1366393308 2013-04-19 17:41:48
## 7329     5.0 1366390187 2013-04-19 16:49:47
## 7330     5.0 1366393234 2013-04-19 17:40:34
## 7331     5.0 1366390899 2013-04-19 17:01:39
## 7332     5.0 1366393535 2013-04-19 17:45:35
## 7333     5.0 1366393591 2013-04-19 17:46:31
## 7334     5.0 1366392165 2013-04-19 17:22:45
## 7335     5.0 1366391603 2013-04-19 17:13:23
## 7336     5.0 1366391663 2013-04-19 17:14:23
## 7337     5.0 1366390127 2013-04-19 16:48:47
## 7338     5.0  832228931 1996-05-16 06:42:11
## 7339     5.0  832229657 1996-05-16 06:54:17
## 7340     4.0  832228931 1996-05-16 06:42:11
## 7341     4.0  832229007 1996-05-16 06:43:27
## 7342     3.0  832229039 1996-05-16 06:43:59
## 7343     4.0  832229039 1996-05-16 06:43:59
## 7344     3.0  832229161 1996-05-16 06:46:01
## 7345     5.0  832228979 1996-05-16 06:42:59
## 7346     4.0  832228796 1996-05-16 06:39:56
## 7347     4.0  832228859 1996-05-16 06:40:59
## 7348     3.0  832229039 1996-05-16 06:43:59
## 7349     5.0  832228931 1996-05-16 06:42:11
## 7350     4.0  832228859 1996-05-16 06:40:59
## 7351     5.0  832229561 1996-05-16 06:52:41
## 7352     3.0  832228958 1996-05-16 06:42:38
## 7353     3.0  832228906 1996-05-16 06:41:46
## 7354     4.0  832229068 1996-05-16 06:44:28
## 7355     3.0  832228958 1996-05-16 06:42:38
## 7356     3.0  832229007 1996-05-16 06:43:27
## 7357     4.0  832228979 1996-05-16 06:42:59
## 7358     5.0  832228958 1996-05-16 06:42:38
## 7359     4.0  832228796 1996-05-16 06:39:56
## 7360     3.0  832228958 1996-05-16 06:42:38
## 7361     4.0  832229068 1996-05-16 06:44:28
## 7362     5.0  832228906 1996-05-16 06:41:46
## 7363     4.0  832228906 1996-05-16 06:41:46
## 7364     3.0  832228859 1996-05-16 06:40:59
## 7365     4.0  832228859 1996-05-16 06:40:59
## 7366     4.0  832228796 1996-05-16 06:39:56
## 7367     3.0  832228979 1996-05-16 06:42:59
## 7368     3.0  832229068 1996-05-16 06:44:28
## 7369     4.0  832228931 1996-05-16 06:42:11
## 7370     3.0  832229985 1996-05-16 06:59:45
## 7371     5.0  832229879 1996-05-16 06:57:59
## 7372     4.0  832228859 1996-05-16 06:40:59
## 7373     3.0  832228796 1996-05-16 06:39:56
## 7374     5.0  832229879 1996-05-16 06:57:59
## 7375     3.0  832228906 1996-05-16 06:41:46
## 7376     4.0 1318796720 2011-10-16 20:25:20
## 7377     3.5 1322169967 2011-11-24 21:26:07
## 7378     3.0 1322169717 2011-11-24 21:21:57
## 7379     4.0 1319746142 2011-10-27 20:09:02
## 7380     3.0 1439687078 2015-08-16 01:04:38
## 7381     3.0 1322170542 2011-11-24 21:35:42
## 7382     3.5 1322170475 2011-11-24 21:34:35
## 7383     2.5 1322169932 2011-11-24 21:25:32
## 7384     3.5 1322169695 2011-11-24 21:21:35
## 7385     3.5 1319744320 2011-10-27 19:38:40
## 7386     5.0 1305605384 2011-05-17 04:09:44
## 7387     4.5 1410971707 2014-09-17 16:35:07
## 7388     3.5 1322169641 2011-11-24 21:20:41
## 7389     4.0 1319744507 2011-10-27 19:41:47
## 7390     4.0 1319745852 2011-10-27 20:04:12
## 7391     3.5 1322169697 2011-11-24 21:21:37
## 7392     3.5 1322167325 2011-11-24 20:42:05
## 7393     3.5 1367466511 2013-05-02 03:48:31
## 7394     4.5 1305604773 2011-05-17 03:59:33
## 7395     4.0 1322719227 2011-12-01 06:00:27
## 7396     3.5 1368072767 2013-05-09 04:12:47
## 7397     3.5 1322169588 2011-11-24 21:19:48
## 7398     3.5 1322169669 2011-11-24 21:21:09
## 7399     3.5 1322169653 2011-11-24 21:20:53
## 7400     3.0 1322170930 2011-11-24 21:42:10
## 7401     4.0 1414562221 2014-10-29 05:57:01
## 7402     4.5 1305605614 2011-05-17 04:13:34
## 7403     2.5 1419495810 2014-12-25 08:23:30
## 7404     4.0 1367729182 2013-05-05 04:46:22
## 7405     4.5 1425959805 2015-03-10 03:56:45
## 7406     3.5 1322169711 2011-11-24 21:21:51
## 7407     3.5 1319745467 2011-10-27 19:57:47
## 7408     3.5 1318721589 2011-10-15 23:33:09
## 7409     4.0 1305602381 2011-05-17 03:19:41
## 7410     4.0 1303371127 2011-04-21 07:32:07
## 7411     3.5 1316496812 2011-09-20 05:33:32
## 7412     3.5 1322169763 2011-11-24 21:22:43
## 7413     3.5 1322167612 2011-11-24 20:46:52
## 7414     3.5 1410971787 2014-09-17 16:36:27
## 7415     4.0 1322169973 2011-11-24 21:26:13
## 7416     3.5 1322169645 2011-11-24 21:20:45
## 7417     3.5 1318721485 2011-10-15 23:31:25
## 7418     4.0 1412452845 2014-10-04 20:00:45
## 7419     2.5 1412457717 2014-10-04 21:21:57
## 7420     3.5 1322170149 2011-11-24 21:29:09
## 7421     2.5 1412471587 2014-10-05 01:13:07
## 7422     3.5 1322169801 2011-11-24 21:23:21
## 7423     3.5 1322167341 2011-11-24 20:42:21
## 7424     3.5 1322167292 2011-11-24 20:41:32
## 7425     3.0 1322171839 2011-11-24 21:57:19
## 7426     3.0 1419495799 2014-12-25 08:23:19
## 7427     3.5 1322169947 2011-11-24 21:25:47
## 7428     4.0 1322169693 2011-11-24 21:21:33
## 7429     3.5 1318725610 2011-10-16 00:40:10
## 7430     4.5 1305604618 2011-05-17 03:56:58
## 7431     3.0 1322171335 2011-11-24 21:48:55
## 7432     4.5 1305605225 2011-05-17 04:07:05
## 7433     3.5 1322169954 2011-11-24 21:25:54
## 7434     4.0 1305604875 2011-05-17 04:01:15
## 7435     3.5 1319744666 2011-10-27 19:44:26
## 7436     3.5 1322167149 2011-11-24 20:39:09
## 7437     3.0 1322170564 2011-11-24 21:36:04
## 7438     3.5 1322170785 2011-11-24 21:39:45
## 7439     3.5 1415258524 2014-11-06 07:22:04
## 7440     3.5 1412321963 2014-10-03 07:39:23
## 7441     4.0 1322170045 2011-11-24 21:27:25
## 7442     3.0 1322170922 2011-11-24 21:42:02
## 7443     3.5 1324101279 2011-12-17 05:54:39
## 7444     4.5 1319746801 2011-10-27 20:20:01
## 7445     4.5 1305605468 2011-05-17 04:11:08
## 7446     3.5 1318835468 2011-10-17 07:11:08
## 7447     2.5 1412471207 2014-10-05 01:06:47
## 7448     3.5 1322170518 2011-11-24 21:35:18
## 7449     4.5 1322167116 2011-11-24 20:38:36
## 7450     3.5 1322167802 2011-11-24 20:50:02
## 7451     3.0 1322170331 2011-11-24 21:32:11
## 7452     3.5 1322170196 2011-11-24 21:29:56
## 7453     3.5 1322169924 2011-11-24 21:25:24
## 7454     3.0 1322170066 2011-11-24 21:27:46
## 7455     2.5 1412470814 2014-10-05 01:00:14
## 7456     3.5 1367729581 2013-05-05 04:53:01
## 7457     3.0 1412471725 2014-10-05 01:15:25
## 7458     5.0 1305604734 2011-05-17 03:58:54
## 7459     3.5 1318835841 2011-10-17 07:17:21
## 7460     3.0 1319744255 2011-10-27 19:37:35
## 7461     5.0 1305605572 2011-05-17 04:12:52
## 7462     3.5 1318797469 2011-10-16 20:37:49
## 7463     4.0 1319746199 2011-10-27 20:09:59
## 7464     3.0 1322170644 2011-11-24 21:37:24
## 7465     5.0 1305605670 2011-05-17 04:14:30
## 7466     4.5 1367466490 2013-05-02 03:48:10
## 7467     3.0 1322171045 2011-11-24 21:44:05
## 7468     3.5 1322173362 2011-11-24 22:22:42
## 7469     3.0 1316922546 2011-09-25 03:49:06
## 7470     3.5 1410971832 2014-09-17 16:37:12
## 7471     4.5 1305604501 2011-05-17 03:55:01
## 7472     3.0 1319748211 2011-10-27 20:43:31
## 7473     4.0 1318725545 2011-10-16 00:39:05
## 7474     3.5 1318835610 2011-10-17 07:13:30
## 7475     3.5 1322167231 2011-11-24 20:40:31
## 7476     3.5 1405181557 2014-07-12 16:12:37
## 7477     3.0 1322167807 2011-11-24 20:50:07
## 7478     4.0 1305604576 2011-05-17 03:56:16
## 7479     3.5 1303371101 2011-04-21 07:31:41
## 7480     3.5 1322171604 2011-11-24 21:53:24
## 7481     3.0 1319745406 2011-10-27 19:56:46
## 7482     4.5 1305605359 2011-05-17 04:09:19
## 7483     3.5 1318796382 2011-10-16 20:19:42
## 7484     3.5 1425960044 2015-03-10 04:00:44
## 7485     5.0 1305605431 2011-05-17 04:10:31
## 7486     3.5 1305602329 2011-05-17 03:18:49
## 7487     4.5 1319748409 2011-10-27 20:46:49
## 7488     4.0 1322168606 2011-11-24 21:03:26
## 7489     4.0 1322170988 2011-11-24 21:43:08
## 7490     4.0 1318724175 2011-10-16 00:16:15
## 7491     4.0 1317417327 2011-09-30 21:15:27
## 7492     3.0 1322169255 2011-11-24 21:14:15
## 7493     3.5 1322167657 2011-11-24 20:47:37
## 7494     3.0 1322167294 2011-11-24 20:41:34
## 7495     3.5 1322167764 2011-11-24 20:49:24
## 7496     3.5 1322167056 2011-11-24 20:37:36
## 7497     4.5 1316394238 2011-09-19 01:03:58
## 7498     4.0 1318694896 2011-10-15 16:08:16
## 7499     3.5 1322167180 2011-11-24 20:39:40
## 7500     4.5 1305605593 2011-05-17 04:13:13
## 7501     4.0 1317612908 2011-10-03 03:35:08
## 7502     3.5 1320820975 2011-11-09 06:42:55
## 7503     4.0 1319748416 2011-10-27 20:46:56
## 7504     4.0 1305606854 2011-05-17 04:34:14
## 7505     4.0 1316535850 2011-09-20 16:24:10
## 7506     4.5 1305606326 2011-05-17 04:25:26
## 7507     3.5 1319744880 2011-10-27 19:48:00
## 7508     3.5 1320505613 2011-11-05 15:06:53
## 7509     3.0 1412478838 2014-10-05 03:13:58
## 7510     3.5 1317277244 2011-09-29 06:20:44
## 7511     3.0 1367774627 2013-05-05 17:23:47
## 7512     4.0 1316394075 2011-09-19 01:01:15
## 7513     3.5 1322167119 2011-11-24 20:38:39
## 7514     4.0 1319744628 2011-10-27 19:43:48
## 7515     4.0 1317413795 2011-09-30 20:16:35
## 7516     4.0 1319745991 2011-10-27 20:06:31
## 7517     3.0 1317612608 2011-10-03 03:30:08
## 7518     3.5 1318796409 2011-10-16 20:20:09
## 7519     3.0 1322871160 2011-12-03 00:12:40
## 7520     3.0 1322167122 2011-11-24 20:38:42
## 7521     3.5 1322174318 2011-11-24 22:38:38
## 7522     4.0 1318721568 2011-10-15 23:32:48
## 7523     3.5 1322170898 2011-11-24 21:41:38
## 7524     4.0 1319748414 2011-10-27 20:46:54
## 7525     3.0 1368072937 2013-05-09 04:15:37
## 7526     4.0 1319744413 2011-10-27 19:40:13
## 7527     4.5 1412154802 2014-10-01 09:13:22
## 7528     2.5 1414562338 2014-10-29 05:58:58
## 7529     4.5 1305605332 2011-05-17 04:08:52
## 7530     3.5 1322167707 2011-11-24 20:48:27
## 7531     3.0 1368060971 2013-05-09 00:56:11
## 7532     4.0 1320701272 2011-11-07 21:27:52
## 7533     5.0 1356760541 2012-12-29 05:55:41
## 7534     2.5 1333323786 2012-04-01 23:43:06
## 7535     3.0 1317417331 2011-09-30 21:15:31
## 7536     3.5 1322171670 2011-11-24 21:54:30
## 7537     4.0 1405650065 2014-07-18 02:21:05
## 7538     4.0 1322167658 2011-11-24 20:47:38
## 7539     3.0 1341268936 2012-07-02 22:42:16
## 7540     4.5 1305604460 2011-05-17 03:54:20
## 7541     4.0 1319746322 2011-10-27 20:12:02
## 7542     4.5 1305605527 2011-05-17 04:12:07
## 7543     2.5 1319744919 2011-10-27 19:48:39
## 7544     2.5 1339446902 2012-06-11 20:35:02
## 7545     4.5 1305605199 2011-05-17 04:06:39
## 7546     3.0 1367968341 2013-05-07 23:12:21
## 7547     3.5 1317413816 2011-09-30 20:16:56
## 7548     3.0 1339447083 2012-06-11 20:38:03
## 7549     4.0 1318721824 2011-10-15 23:37:04
## 7550     4.0 1316409175 2011-09-19 05:12:55
## 7551     4.0 1414850854 2014-11-01 14:07:34
## 7552     3.5 1319743664 2011-10-27 19:27:44
## 7553     3.5 1425960095 2015-03-10 04:01:35
## 7554     4.0 1319744848 2011-10-27 19:47:28
## 7555     2.5 1325534468 2012-01-02 20:01:08
## 7556     4.0 1318750105 2011-10-16 07:28:25
## 7557     3.5 1316416730 2011-09-19 07:18:50
## 7558     3.5 1318796541 2011-10-16 20:22:21
## 7559     3.0 1341268726 2012-07-02 22:38:46
## 7560     3.0 1367794617 2013-05-05 22:56:57
## 7561     4.5 1305603014 2011-05-17 03:30:14
## 7562     3.5 1320128368 2011-11-01 06:19:28
## 7563     4.0 1316537666 2011-09-20 16:54:26
## 7564     3.5 1319744696 2011-10-27 19:44:56
## 7565     4.0 1369722162 2013-05-28 06:22:42
## 7566     4.5 1322719969 2011-12-01 06:12:49
## 7567     5.0 1305603880 2011-05-17 03:44:40
## 7568     4.5 1316416643 2011-09-19 07:17:23
## 7569     3.0 1341268857 2012-07-02 22:40:57
## 7570     3.0 1339446959 2012-06-11 20:35:59
## 7571     3.0 1319743714 2011-10-27 19:28:34
## 7572     4.0 1316535636 2011-09-20 16:20:36
## 7573     4.5 1305605408 2011-05-17 04:10:08
## 7574     4.0 1316536060 2011-09-20 16:27:40
## 7575     3.5 1322167635 2011-11-24 20:47:15
## 7576     3.5 1322167363 2011-11-24 20:42:43
## 7577     3.5 1319744759 2011-10-27 19:45:59
## 7578     3.0 1414562300 2014-10-29 05:58:20
## 7579     3.5 1319745276 2011-10-27 19:54:36
## 7580     2.5 1414561763 2014-10-29 05:49:23
## 7581     3.5 1317613176 2011-10-03 03:39:36
## 7582     3.0 1333324895 2012-04-02 00:01:35
## 7583     3.5 1317417268 2011-09-30 21:14:28
## 7584     3.5 1303371215 2011-04-21 07:33:35
## 7585     4.5 1305604971 2011-05-17 04:02:51
## 7586     3.5 1322174118 2011-11-24 22:35:18
## 7587     3.0 1320505644 2011-11-05 15:07:24
## 7588     3.0 1367968282 2013-05-07 23:11:22
## 7589     3.0 1322167429 2011-11-24 20:43:49
## 7590     3.5 1319745902 2011-10-27 20:05:02
## 7591     2.5 1367968590 2013-05-07 23:16:30
## 7592     4.5 1305604909 2011-05-17 04:01:49
## 7593     4.0 1316491569 2011-09-20 04:06:09
## 7594     3.0 1414561107 2014-10-29 05:38:27
## 7595     3.5 1319745453 2011-10-27 19:57:33
## 7596     4.0 1317417313 2011-09-30 21:15:13
## 7597     4.0 1317417295 2011-09-30 21:14:55
## 7598     3.0 1322168181 2011-11-24 20:56:21
## 7599     4.0 1367729197 2013-05-05 04:46:37
## 7600     3.5 1317612663 2011-10-03 03:31:03
## 7601     3.5 1317415599 2011-09-30 20:46:39
## 7602     3.0 1415388297 2014-11-07 19:24:57
## 7603     3.5 1322168130 2011-11-24 20:55:30
## 7604     3.0 1339447216 2012-06-11 20:40:16
## 7605     4.0 1316922590 2011-09-25 03:49:50
## 7606     4.0 1319745108 2011-10-27 19:51:48
## 7607     4.0 1322167913 2011-11-24 20:51:53
## 7608     3.5 1322167725 2011-11-24 20:48:45
## 7609     4.0 1305605032 2011-05-17 04:03:52
## 7610     3.5 1319745148 2011-10-27 19:52:28
## 7611     4.0 1316495346 2011-09-20 05:09:06
## 7612     3.0 1339447153 2012-06-11 20:39:13
## 7613     3.0 1322171427 2011-11-24 21:50:27
## 7614     3.5 1322171197 2011-11-24 21:46:37
## 7615     3.5 1317415398 2011-09-30 20:43:18
## 7616     4.0 1322167204 2011-11-24 20:40:04
## 7617     3.5 1322167397 2011-11-24 20:43:17
## 7618     3.0 1369722178 2013-05-28 06:22:58
## 7619     4.0 1305605741 2011-05-17 04:15:41
## 7620     3.5 1309052092 2011-06-26 01:34:52
## 7621     3.5 1317612601 2011-10-03 03:30:01
## 7622     3.0 1319745336 2011-10-27 19:55:36
## 7623     4.0 1322171094 2011-11-24 21:44:54
## 7624     3.5 1371359811 2013-06-16 05:16:51
## 7625     3.0 1339446347 2012-06-11 20:25:47
## 7626     4.0 1319745882 2011-10-27 20:04:42
## 7627     2.5 1415388549 2014-11-07 19:29:09
## 7628     3.0 1322167257 2011-11-24 20:40:57
## 7629     3.0 1322167662 2011-11-24 20:47:42
## 7630     2.5 1339447162 2012-06-11 20:39:22
## 7631     2.0 1414561720 2014-10-29 05:48:40
## 7632     3.0 1333325498 2012-04-02 00:11:38
## 7633     3.0 1428727629 2015-04-11 04:47:09
## 7634     4.0 1322169136 2011-11-24 21:12:16
## 7635     4.0 1305602945 2011-05-17 03:29:05
## 7636     3.5 1322167586 2011-11-24 20:46:26
## 7637     2.5 1317417320 2011-09-30 21:15:20
## 7638     3.5 1319746126 2011-10-27 20:08:46
## 7639     4.0 1412478977 2014-10-05 03:16:17
## 7640     4.5 1305604999 2011-05-17 04:03:19
## 7641     4.0 1305604648 2011-05-17 03:57:28
## 7642     4.5 1305605708 2011-05-17 04:15:08
## 7643     4.5 1305605690 2011-05-17 04:14:50
## 7644     3.0 1339447164 2012-06-11 20:39:24
## 7645     4.0 1316494426 2011-09-20 04:53:46
## 7646     3.5 1319745424 2011-10-27 19:57:04
## 7647     3.0 1339447168 2012-06-11 20:39:28
## 7648     2.5 1414561470 2014-10-29 05:44:30
## 7649     3.0 1322967502 2011-12-04 02:58:22
## 7650     3.5 1319743116 2011-10-27 19:18:36
## 7651     3.0 1412471624 2014-10-05 01:13:44
## 7652     4.0 1319747802 2011-10-27 20:36:42
## 7653     3.5 1320709035 2011-11-07 23:37:15
## 7654     4.0 1319748038 2011-10-27 20:40:38
## 7655     3.0 1412457389 2014-10-04 21:16:29
## 7656     3.5 1319747076 2011-10-27 20:24:36
## 7657     4.0 1319746579 2011-10-27 20:16:19
## 7658     3.5 1405916134 2014-07-21 04:15:34
## 7659     4.5 1305605784 2011-05-17 04:16:24
## 7660     3.5 1319743302 2011-10-27 19:21:42
## 7661     4.0 1317413827 2011-09-30 20:17:07
## 7662     3.0 1322167708 2011-11-24 20:48:28
## 7663     4.0 1322719278 2011-12-01 06:01:18
## 7664     3.0 1322165598 2011-11-24 20:13:18
## 7665     3.5 1319746873 2011-10-27 20:21:13
## 7666     3.5 1319744824 2011-10-27 19:47:04
## 7667     3.5 1317621831 2011-10-03 06:03:51
## 7668     4.0 1316536208 2011-09-20 16:30:08
## 7669     4.5 1305605159 2011-05-17 04:05:59
## 7670     3.5 1369880284 2013-05-30 02:18:04
## 7671     4.0 1322167983 2011-11-24 20:53:03
## 7672     4.0 1322276523 2011-11-26 03:02:03
## 7673     5.0 1305605115 2011-05-17 04:05:15
## 7674     3.5 1318796568 2011-10-16 20:22:48
## 7675     4.0 1316496606 2011-09-20 05:30:06
## 7676     3.0 1305603027 2011-05-17 03:30:27
## 7677     3.5 1317414089 2011-09-30 20:21:29
## 7678     4.0 1367774333 2013-05-05 17:18:53
## 7679     3.5 1322167566 2011-11-24 20:46:06
## 7680     3.5 1371359903 2013-06-16 05:18:23
## 7681     4.5 1305605640 2011-05-17 04:14:00
## 7682     3.5 1319744734 2011-10-27 19:45:34
## 7683     4.5 1305605093 2011-05-17 04:04:53
## 7684     3.0 1322966900 2011-12-04 02:48:20
## 7685     3.5 1305603309 2011-05-17 03:35:09
## 7686     3.5 1322167367 2011-11-24 20:42:47
## 7687     3.5 1322167677 2011-11-24 20:47:57
## 7688     2.5 1368412407 2013-05-13 02:33:27
## 7689     3.5 1322719467 2011-12-01 06:04:27
## 7690     3.5 1305603082 2011-05-17 03:31:22
## 7691     4.0 1319746554 2011-10-27 20:15:54
## 7692     4.0 1319747765 2011-10-27 20:36:05
## 7693     3.5 1319746373 2011-10-27 20:12:53
## 7694     3.0 1322168337 2011-11-24 20:58:57
## 7695     3.5 1305603272 2011-05-17 03:34:32
## 7696     4.0 1317405562 2011-09-30 17:59:22
## 7697     5.0 1305603894 2011-05-17 03:44:54
## 7698     3.5 1316539661 2011-09-20 17:27:41
## 7699     4.0 1305603793 2011-05-17 03:43:13
## 7700     3.5 1317405737 2011-09-30 18:02:17
## 7701     3.5 1316494407 2011-09-20 04:53:27
## 7702     3.5 1322167931 2011-11-24 20:52:11
## 7703     4.0 1305605077 2011-05-17 04:04:37
## 7704     3.0 1339446804 2012-06-11 20:33:24
## 7705     3.0 1322167961 2011-11-24 20:52:41
## 7706     4.0 1305605254 2011-05-17 04:07:34
## 7707     4.0 1316495274 2011-09-20 05:07:54
## 7708     3.0 1414850769 2014-11-01 14:06:09
## 7709     3.5 1405650223 2014-07-18 02:23:43
## 7710     4.0 1316537546 2011-09-20 16:52:26
## 7711     4.5 1305605932 2011-05-17 04:18:52
## 7712     3.0 1305603095 2011-05-17 03:31:35
## 7713     3.5 1322167425 2011-11-24 20:43:45
## 7714     3.5 1319748155 2011-10-27 20:42:35
## 7715     4.5 1305605276 2011-05-17 04:07:56
## 7716     4.0 1319746947 2011-10-27 20:22:27
## 7717     4.5 1305605762 2011-05-17 04:16:02
## 7718     4.0 1318721876 2011-10-15 23:37:56
## 7719     4.0 1305603934 2011-05-17 03:45:34
## 7720     4.0 1316493344 2011-09-20 04:35:44
## 7721     3.5 1317417335 2011-09-30 21:15:35
## 7722     3.5 1317414139 2011-09-30 20:22:19
## 7723     3.0 1371530476 2013-06-18 04:41:16
## 7724     4.0 1305605834 2011-05-17 04:17:14
## 7725     4.0 1316416612 2011-09-19 07:16:52
## 7726     3.0 1322167866 2011-11-24 20:51:06
## 7727     3.5 1305603492 2011-05-17 03:38:12
## 7728     3.5 1319746905 2011-10-27 20:21:45
## 7729     3.5 1319745128 2011-10-27 19:52:08
## 7730     5.0 1305605866 2011-05-17 04:17:46
## 7731     3.0 1414850946 2014-11-01 14:09:06
## 7732     3.0 1339446991 2012-06-11 20:36:31
## 7733     3.5 1319745750 2011-10-27 20:02:30
## 7734     3.0 1414562131 2014-10-29 05:55:31
## 7735     3.5 1324101310 2011-12-17 05:55:10
## 7736     4.5 1305605907 2011-05-17 04:18:27
## 7737     4.0 1319745634 2011-10-27 20:00:34
## 7738     3.0 1305603556 2011-05-17 03:39:16
## 7739     3.0 1319745660 2011-10-27 20:01:00
## 7740     3.5 1316539530 2011-09-20 17:25:30
## 7741     3.0 1317415585 2011-09-30 20:46:25
## 7742     4.0 1317277178 2011-09-29 06:19:38
## 7743     3.5 1428726464 2015-04-11 04:27:44
## 7744     4.0 1320128370 2011-11-01 06:19:30
## 7745     3.5 1319745518 2011-10-27 19:58:38
## 7746     4.0 1305604944 2011-05-17 04:02:24
## 7747     5.0 1368249994 2013-05-11 05:26:34
## 7748     3.5 1319744484 2011-10-27 19:41:24
## 7749     4.0 1319745178 2011-10-27 19:52:58
## 7750     1.5 1341268695 2012-07-02 22:38:15
## 7751     3.5 1322167990 2011-11-24 20:53:10
## 7752     4.5 1305604806 2011-05-17 04:00:06
## 7753     4.0 1318721995 2011-10-15 23:39:55
## 7754     4.0 1318694932 2011-10-15 16:08:52
## 7755     4.0 1319743447 2011-10-27 19:24:07
## 7756     4.0 1305604858 2011-05-17 04:00:58
## 7757     3.5 1320700986 2011-11-07 21:23:06
## 7758     4.0 1309051349 2011-06-26 01:22:29
## 7759     3.5 1319745212 2011-10-27 19:53:32
## 7760     4.5 1305604694 2011-05-17 03:58:14
## 7761     3.5 1368483486 2013-05-13 22:18:06
## 7762     2.5 1412309172 2014-10-03 04:06:12
## 7763     3.5 1321425442 2011-11-16 06:37:22
## 7764     4.0 1316416681 2011-09-19 07:18:01
## 7765     3.5 1318796373 2011-10-16 20:19:33
## 7766     3.5 1322167089 2011-11-24 20:38:09
## 7767     3.5 1318742711 2011-10-16 05:25:11
## 7768     4.0 1367475412 2013-05-02 06:16:52
## 7769     3.5 1415388786 2014-11-07 19:33:06
## 7770     3.5 1318796556 2011-10-16 20:22:36
## 7771     3.5 1305603954 2011-05-17 03:45:54
## 7772     3.5 1341268645 2012-07-02 22:37:25
## 7773     3.5 1368499219 2013-05-14 02:40:19
## 7774     3.5 1368250070 2013-05-11 05:27:50
## 7775     3.0 1414850824 2014-11-01 14:07:04
## 7776     4.0 1341268624 2012-07-02 22:37:04
## 7777     4.5 1367774277 2013-05-05 17:17:57
## 7778     2.5 1414851036 2014-11-01 14:10:36
## 7779     4.0 1318796696 2011-10-16 20:24:56
## 7780     4.0 1320907274 2011-11-10 06:41:14
## 7781     3.5 1319744151 2011-10-27 19:35:51
## 7782     4.0 1317277376 2011-09-29 06:22:56
## 7783     3.0 1319743782 2011-10-27 19:29:42
## 7784     4.5 1305606322 2011-05-17 04:25:22
## 7785     4.0 1367724708 2013-05-05 03:31:48
## 7786     3.5 1319743415 2011-10-27 19:23:35
## 7787     3.0 1369722191 2013-05-28 06:23:11
## 7788     4.0 1319744439 2011-10-27 19:40:39
## 7789     3.5 1317277357 2011-09-29 06:22:37
## 7790     3.5 1322169386 2011-11-24 21:16:26
## 7791     3.0 1368499410 2013-05-14 02:43:30
## 7792     4.0 1318721576 2011-10-15 23:32:56
## 7793     4.0 1319744187 2011-10-27 19:36:27
## 7794     2.5 1415388667 2014-11-07 19:31:07
## 7795     3.0 1317277197 2011-09-29 06:19:57
## 7796     3.0 1317277220 2011-09-29 06:20:20
## 7797     2.5 1410972161 2014-09-17 16:42:41
## 7798     3.5 1316907766 2011-09-24 23:42:46
## 7799     3.0 1414851073 2014-11-01 14:11:13
## 7800     2.5 1414849679 2014-11-01 13:47:59
## 7801     3.0 1329101733 2012-02-13 02:55:33
## 7802     2.5 1368483363 2013-05-13 22:16:03
## 7803     3.5 1368249365 2013-05-11 05:16:05
## 7804     3.5 1331430993 2012-03-11 01:56:33
## 7805     3.0 1368499298 2013-05-14 02:41:38
## 7806     3.5 1371530093 2013-06-18 04:34:53
## 7807     3.5 1371360050 2013-06-16 05:20:50
## 7808     2.0 1341268688 2012-07-02 22:38:08
## 7809     2.5 1415388593 2014-11-07 19:29:53
## 7810     2.5 1341268657 2012-07-02 22:37:37
## 7811     3.0 1414562176 2014-10-29 05:56:16
## 7812     2.5 1414562366 2014-10-29 05:59:26
## 7813     5.0 1368499305 2013-05-14 02:41:45
## 7814     4.0 1367774366 2013-05-05 17:19:26
## 7815     3.0 1414850934 2014-11-01 14:08:54
## 7816     3.0 1410972137 2014-09-17 16:42:17
## 7817     3.0 1368499835 2013-05-14 02:50:35
## 7818     4.0 1412494161 2014-10-05 07:29:21
## 7819     3.0 1356760463 2012-12-29 05:54:23
## 7820     3.0 1368499321 2013-05-14 02:42:01
## 7821     3.0 1415388917 2014-11-07 19:35:17
## 7822     3.0 1371530088 2013-06-18 04:34:48
## 7823     4.0 1356760430 2012-12-29 05:53:50
## 7824     4.0 1355724506 2012-12-17 06:08:26
## 7825     2.5 1410972337 2014-09-17 16:45:37
## 7826     3.5 1367725555 2013-05-05 03:45:55
## 7827     4.5 1356760414 2012-12-29 05:53:34
## 7828     3.5 1368483794 2013-05-13 22:23:14
## 7829     3.5 1367725590 2013-05-05 03:46:30
## 7830     3.5 1367786421 2013-05-05 20:40:21
## 7831     4.0 1414839828 2014-11-01 11:03:48
## 7832     3.0 1371530237 2013-06-18 04:37:17
## 7833     2.5 1412497730 2014-10-05 08:28:50
## 7834     4.0 1367728315 2013-05-05 04:31:55
## 7835     4.0 1405916092 2014-07-21 04:14:52
## 7836     4.0 1367725833 2013-05-05 03:50:33
## 7837     4.0 1410972561 2014-09-17 16:49:21
## 7838     3.5 1368499380 2013-05-14 02:43:00
## 7839     2.5 1428726967 2015-04-11 04:36:07
## 7840     4.0 1414562096 2014-10-29 05:54:56
## 7841     3.5 1410972280 2014-09-17 16:44:40
## 7842     2.0 1412570841 2014-10-06 04:47:21
## 7843     2.5 1412570882 2014-10-06 04:48:02
## 7844     2.0 1412570808 2014-10-06 04:46:48
## 7845     3.5 1414561040 2014-10-29 05:37:20
## 7846     3.0 1414850862 2014-11-01 14:07:42
## 7847     3.0 1410972358 2014-09-17 16:45:58
## 7848     2.5 1415388310 2014-11-07 19:25:10
## 7849     2.5 1412554038 2014-10-06 00:07:18
## 7850     2.5 1412561078 2014-10-06 02:04:38
## 7851     3.0 1405181551 2014-07-12 16:12:31
## 7852     4.0 1404110083 2014-06-30 06:34:43
## 7853     3.5 1410972517 2014-09-17 16:48:37
## 7854     2.5 1412570817 2014-10-06 04:46:57
## 7855     2.5 1410972202 2014-09-17 16:43:22
## 7856     2.5 1412583710 2014-10-06 08:21:50
## 7857     3.0 1410972239 2014-09-17 16:43:59
## 7858     2.5 1410972320 2014-09-17 16:45:20
## 7859     3.5 1425960344 2015-03-10 04:05:44
## 7860     3.0 1412553084 2014-10-05 23:51:24
## 7861     2.5 1410972264 2014-09-17 16:44:24
## 7862     3.0 1412553201 2014-10-05 23:53:21
## 7863     2.5 1428726440 2015-04-11 04:27:20
## 7864     2.5 1412553055 2014-10-05 23:50:55
## 7865     3.5 1410972164 2014-09-17 16:42:44
## 7866     3.0 1410972074 2014-09-17 16:41:14
## 7867     3.0 1419495256 2014-12-25 08:14:16
## 7868     3.0 1410972132 2014-09-17 16:42:12
## 7869     2.5 1405181398 2014-07-12 16:09:58
## 7870     2.5 1412553003 2014-10-05 23:50:03
## 7871     3.5 1410972058 2014-09-17 16:40:58
## 7872     3.5 1405649924 2014-07-18 02:18:44
## 7873     2.5 1410972102 2014-09-17 16:41:42
## 7874     2.5 1412552876 2014-10-05 23:47:56
## 7875     4.0 1410972752 2014-09-17 16:52:32
## 7876     3.5 1412552728 2014-10-05 23:45:28
## 7877     2.5 1412552534 2014-10-05 23:42:14
## 7878     2.5 1428726233 2015-04-11 04:23:53
## 7879     3.5 1425960080 2015-03-10 04:01:20
## 7880     3.5 1412550699 2014-10-05 23:11:39
## 7881     3.0 1415388454 2014-11-07 19:27:34
## 7882     2.5 1428726245 2015-04-11 04:24:05
## 7883     3.0 1428726219 2015-04-11 04:23:39
## 7884     2.5 1428727019 2015-04-11 04:36:59
## 7885     2.0 1428726405 2015-04-11 04:26:45
## 7886     3.0 1428726202 2015-04-11 04:23:22
## 7887     3.0 1414562891 2014-10-29 06:08:11
## 7888     2.5 1428726241 2015-04-11 04:24:01
## 7889     5.0  978040739 2000-12-28 21:58:59
## 7890     3.0  978039958 2000-12-28 21:45:58
## 7891     4.0  978041312 2000-12-28 22:08:32
## 7892     2.0  978040891 2000-12-28 22:01:31
## 7893     1.0  978040922 2000-12-28 22:02:02
## 7894     3.0  978040023 2000-12-28 21:47:03
## 7895     3.0  978039850 2000-12-28 21:44:10
## 7896     4.0  978041224 2000-12-28 22:07:04
## 7897     2.0  978039693 2000-12-28 21:41:33
## 7898     4.0  978041370 2000-12-28 22:09:30
## 7899     3.0  978039301 2000-12-28 21:35:01
## 7900     3.0  978039629 2000-12-28 21:40:29
## 7901     2.0  978039693 2000-12-28 21:41:33
## 7902     4.0  978040023 2000-12-28 21:47:03
## 7903     3.0  978039922 2000-12-28 21:45:22
## 7904     3.0  978040871 2000-12-28 22:01:11
## 7905     3.0  978039850 2000-12-28 21:44:10
## 7906     4.0  978040768 2000-12-28 21:59:28
## 7907     4.0  978041037 2000-12-28 22:03:57
## 7908     4.0  978041342 2000-12-28 22:09:02
## 7909     4.0  978041189 2000-12-28 22:06:29
## 7910     5.0  978041037 2000-12-28 22:03:57
## 7911     5.0  978039514 2000-12-28 21:38:34
## 7912     4.0  978039263 2000-12-28 21:34:23
## 7913     3.0  978039654 2000-12-28 21:40:54
## 7914     5.0  978039514 2000-12-28 21:38:34
## 7915     4.0  978041189 2000-12-28 22:06:29
## 7916     3.0  978039693 2000-12-28 21:41:33
## 7917     5.0  978039629 2000-12-28 21:40:29
## 7918     5.0  978039693 2000-12-28 21:41:33
## 7919     4.0  978039584 2000-12-28 21:39:44
## 7920     3.0  978039819 2000-12-28 21:43:39
## 7921     4.0  978039557 2000-12-28 21:39:17
## 7922     4.0  978039557 2000-12-28 21:39:17
## 7923     5.0  978039514 2000-12-28 21:38:34
## 7924     5.0  978039514 2000-12-28 21:38:34
## 7925     4.0  978041091 2000-12-28 22:04:51
## 7926     3.0  978039301 2000-12-28 21:35:01
## 7927     4.0  978041122 2000-12-28 22:05:22
## 7928     4.0  978039557 2000-12-28 21:39:17
## 7929     5.0  978039514 2000-12-28 21:38:34
## 7930     5.0  978041122 2000-12-28 22:05:22
## 7931     5.0  978039584 2000-12-28 21:39:44
## 7932     5.0  978039584 2000-12-28 21:39:44
## 7933     3.0  978039753 2000-12-28 21:42:33
## 7934     4.0  978039922 2000-12-28 21:45:22
## 7935     4.0  978039795 2000-12-28 21:43:15
## 7936     3.0  978041342 2000-12-28 22:09:02
## 7937     3.0  978039714 2000-12-28 21:41:54
## 7938     2.0  978041312 2000-12-28 22:08:32
## 7939     4.0  978041037 2000-12-28 22:03:57
## 7940     1.0  978039958 2000-12-28 21:45:58
## 7941     2.0  978039891 2000-12-28 21:44:51
## 7942     2.0  978040828 2000-12-28 22:00:28
## 7943     2.0  978040023 2000-12-28 21:47:03
## 7944     3.0  978039891 2000-12-28 21:44:51
## 7945     5.0  978039753 2000-12-28 21:42:33
## 7946     4.0  978039850 2000-12-28 21:44:10
## 7947     5.0  978041152 2000-12-28 22:05:52
## 7948     5.0  978041250 2000-12-28 22:07:30
## 7949     3.0  978039557 2000-12-28 21:39:17
## 7950     2.0  978041370 2000-12-28 22:09:30
## 7951     4.0  978039753 2000-12-28 21:42:33
## 7952     3.0  978039795 2000-12-28 21:43:15
## 7953     5.0  978039753 2000-12-28 21:42:33
## 7954     4.0  978040828 2000-12-28 22:00:28
## 7955     2.0  978039263 2000-12-28 21:34:23
## 7956     1.0  978040922 2000-12-28 22:02:02
## 7957     4.0  978041189 2000-12-28 22:06:29
## 7958     3.0  978041224 2000-12-28 22:07:04
## 7959     3.0  978040922 2000-12-28 22:02:02
## 7960     1.0  978041370 2000-12-28 22:09:30
## 7961     1.0  978041398 2000-12-28 22:09:58
## 7962     1.0  978041398 2000-12-28 22:09:58
## 7963     3.0  978039629 2000-12-28 21:40:29
## 7964     3.0  978041279 2000-12-28 22:07:59
## 7965     4.0  978041152 2000-12-28 22:05:52
## 7966     4.0  978039629 2000-12-28 21:40:29
## 7967     5.0  978039629 2000-12-28 21:40:29
## 7968     4.0  978041224 2000-12-28 22:07:04
## 7969     3.0  978041312 2000-12-28 22:08:32
## 7970     4.0  978041064 2000-12-28 22:04:24
## 7971     3.0  978039301 2000-12-28 21:35:01
## 7972     2.0  978039988 2000-12-28 21:46:28
## 7973     4.0  978041189 2000-12-28 22:06:29
## 7974     3.0  978039891 2000-12-28 21:44:51
## 7975     5.0  978039795 2000-12-28 21:43:15
## 7976     2.0  978041342 2000-12-28 22:09:02
## 7977     2.0  978039629 2000-12-28 21:40:29
## 7978     2.0  978041312 2000-12-28 22:08:32
## 7979     4.0  978041224 2000-12-28 22:07:04
## 7980     4.0  978041279 2000-12-28 22:07:59
## 7981     4.0  978039891 2000-12-28 21:44:51
## 7982     3.0  978041189 2000-12-28 22:06:29
## 7983     3.0  978039693 2000-12-28 21:41:33
## 7984     4.0  978039557 2000-12-28 21:39:17
## 7985     3.0  978041224 2000-12-28 22:07:04
## 7986     5.0  978041122 2000-12-28 22:05:22
## 7987     4.0  978041091 2000-12-28 22:04:51
## 7988     4.0  847412607 1996-11-08 00:23:27
## 7989     3.0  847412676 1996-11-08 00:24:36
## 7990     2.0  847412692 1996-11-08 00:24:52
## 7991     3.0  847412643 1996-11-08 00:24:03
## 7992     3.0  847412837 1996-11-08 00:27:17
## 7993     4.0  847412607 1996-11-08 00:23:27
## 7994     3.0  847412515 1996-11-08 00:21:55
## 7995     3.0  847412712 1996-11-08 00:25:12
## 7996     4.0  847412607 1996-11-08 00:23:27
## 7997     4.0  847412543 1996-11-08 00:22:23
## 7998     3.0  847412606 1996-11-08 00:23:26
## 7999     3.0  847412606 1996-11-08 00:23:26
## 8000     1.0  847412567 1996-11-08 00:22:47
## 8001     3.0  847412628 1996-11-08 00:23:48
## 8002     3.0  847412811 1996-11-08 00:26:51
## 8003     4.0  847412586 1996-11-08 00:23:06
## 8004     4.0  847412515 1996-11-08 00:21:55
## 8005     3.0  847412812 1996-11-08 00:26:52
## 8006     3.0  847412567 1996-11-08 00:22:47
## 8007     3.0  847412859 1996-11-08 00:27:39
## 8008     4.0  847412628 1996-11-08 00:23:48
## 8009     2.0  847412544 1996-11-08 00:22:24
## 8010     3.0  847412567 1996-11-08 00:22:47
## 8011     4.0  847412567 1996-11-08 00:22:47
## 8012     4.0  847412692 1996-11-08 00:24:52
## 8013     4.0  847412643 1996-11-08 00:24:03
## 8014     4.0  847413071 1996-11-08 00:31:11
## 8015     3.0  847412643 1996-11-08 00:24:03
## 8016     3.0  847412515 1996-11-08 00:21:55
## 8017     3.0  847412692 1996-11-08 00:24:52
## 8018     3.0  847412586 1996-11-08 00:23:06
## 8019     4.0  847412711 1996-11-08 00:25:11
## 8020     3.0  847412812 1996-11-08 00:26:52
## 8021     3.0  847412628 1996-11-08 00:23:48
## 8022     3.0  847413020 1996-11-08 00:30:20
## 8023     4.0  847412586 1996-11-08 00:23:06
## 8024     3.0  847412812 1996-11-08 00:26:52
## 8025     4.0  847412676 1996-11-08 00:24:36
## 8026     3.0  847412676 1996-11-08 00:24:36
## 8027     3.0  847413043 1996-11-08 00:30:43
## 8028     3.0  847412659 1996-11-08 00:24:19
## 8029     5.0  847412628 1996-11-08 00:23:48
## 8030     3.0  847412515 1996-11-08 00:21:55
## 8031     3.0  847412659 1996-11-08 00:24:19
## 8032     4.0  847412879 1996-11-08 00:27:59
## 8033     3.0  847413043 1996-11-08 00:30:43
## 8034     4.0  974729137 2000-11-20 14:05:37
## 8035     1.0  974728763 2000-11-20 13:59:23
## 8036     3.0  974728763 2000-11-20 13:59:23
## 8037     4.0  974728763 2000-11-20 13:59:23
## 8038     4.0  974729199 2000-11-20 14:06:39
## 8039     4.0  974728763 2000-11-20 13:59:23
## 8040     3.0  974728999 2000-11-20 14:03:19
## 8041     2.0  974729270 2000-11-20 14:07:50
## 8042     5.0  974729067 2000-11-20 14:04:27
## 8043     5.0  974729270 2000-11-20 14:07:50
## 8044     4.0  974728936 2000-11-20 14:02:16
## 8045     4.0  974729067 2000-11-20 14:04:27
## 8046     4.0  974728936 2000-11-20 14:02:16
## 8047     2.0  974729345 2000-11-20 14:09:05
## 8048     5.0  974729137 2000-11-20 14:05:37
## 8049     5.0  974728999 2000-11-20 14:03:19
## 8050     2.0  974729270 2000-11-20 14:07:50
## 8051     3.0  974729165 2000-11-20 14:06:05
## 8052     5.0  974729105 2000-11-20 14:05:05
## 8053     4.0  974729315 2000-11-20 14:08:35
## 8054     5.0  974728936 2000-11-20 14:02:16
## 8055     4.0  974728936 2000-11-20 14:02:16
## 8056     3.0  974729270 2000-11-20 14:07:50
## 8057     5.0  974729270 2000-11-20 14:07:50
## 8058     5.0  974729032 2000-11-20 14:03:52
## 8059     5.0  974729315 2000-11-20 14:08:35
## 8060     5.0  974729270 2000-11-20 14:07:50
## 8061     4.0  974729067 2000-11-20 14:04:27
## 8062     5.0  974729199 2000-11-20 14:06:39
## 8063     5.0  974728763 2000-11-20 13:59:23
## 8064     4.0  974729032 2000-11-20 14:03:52
## 8065     4.5 1231766465 2009-01-12 13:21:05
## 8066     1.0 1231763607 2009-01-12 12:33:27
## 8067     3.5 1231770596 2009-01-12 14:29:56
## 8068     4.0 1231767051 2009-01-12 13:30:51
## 8069     4.0 1231766626 2009-01-12 13:23:46
## 8070     4.0 1231766951 2009-01-12 13:29:11
## 8071     4.0 1231763120 2009-01-12 12:25:20
## 8072     1.0 1231770503 2009-01-12 14:28:23
## 8073     5.0 1231766895 2009-01-12 13:28:15
## 8074     0.5 1231763493 2009-01-12 12:31:33
## 8075     1.0 1231766853 2009-01-12 13:27:33
## 8076     4.0 1231766442 2009-01-12 13:20:42
## 8077     0.5 1231763521 2009-01-12 12:32:01
## 8078     1.0 1231763632 2009-01-12 12:33:52
## 8079     4.5 1231767339 2009-01-12 13:35:39
## 8080     4.5 1231763213 2009-01-12 12:26:53
## 8081     4.0 1231766571 2009-01-12 13:22:51
## 8082     3.5 1231766114 2009-01-12 13:15:14
## 8083     5.0 1231769875 2009-01-12 14:17:55
## 8084     5.0 1231767802 2009-01-12 13:43:22
## 8085     1.0 1231763560 2009-01-12 12:32:40
## 8086     5.0 1231769199 2009-01-12 14:06:39
## 8087     5.0 1231769672 2009-01-12 14:14:32
## 8088     2.0 1231763745 2009-01-12 12:35:45
## 8089     5.0 1231769802 2009-01-12 14:16:42
## 8090     5.0 1231767951 2009-01-12 13:45:51
## 8091     5.0 1231767291 2009-01-12 13:34:51
## 8092     3.5 1231770278 2009-01-12 14:24:38
## 8093     2.0 1231763949 2009-01-12 12:39:09
## 8094     4.5 1231763660 2009-01-12 12:34:20
## 8095     4.0 1231769598 2009-01-12 14:13:18
## 8096     4.5 1231769623 2009-01-12 14:13:43
## 8097     4.5 1231769923 2009-01-12 14:18:43
## 8098     4.5 1231767944 2009-01-12 13:45:44
## 8099     4.0 1231766768 2009-01-12 13:26:08
## 8100     5.0 1231769951 2009-01-12 14:19:11
## 8101     1.0 1231763805 2009-01-12 12:36:45
## 8102     4.0 1231769685 2009-01-12 14:14:45
## 8103     4.5 1231769942 2009-01-12 14:19:02
## 8104     3.5 1231769278 2009-01-12 14:07:58
## 8105     3.5 1231769628 2009-01-12 14:13:48
## 8106     5.0 1231766495 2009-01-12 13:21:35
## 8107     4.0 1231769696 2009-01-12 14:14:56
## 8108     4.5 1231766735 2009-01-12 13:25:35
## 8109     4.0 1231767245 2009-01-12 13:34:05
## 8110     5.0 1231767956 2009-01-12 13:45:56
## 8111     3.5 1231763467 2009-01-12 12:31:07
## 8112     3.5 1231770591 2009-01-12 14:29:51
## 8113     4.0 1231767125 2009-01-12 13:32:05
## 8114     3.5 1231769937 2009-01-12 14:18:57
## 8115     5.0 1231770554 2009-01-12 14:29:14
## 8116     5.0 1231769580 2009-01-12 14:13:00
## 8117     3.5 1231766722 2009-01-12 13:25:22
## 8118     4.5 1231769751 2009-01-12 14:15:51
## 8119     2.0 1231763882 2009-01-12 12:38:02
## 8120     2.0 1231763840 2009-01-12 12:37:20
## 8121     4.5 1231769880 2009-01-12 14:18:00
## 8122     5.0 1231766690 2009-01-12 13:24:50
## 8123     3.0 1231767136 2009-01-12 13:32:16
## 8124     4.0 1231770409 2009-01-12 14:26:49
## 8125     4.5 1231767111 2009-01-12 13:31:51
## 8126     3.5 1231766676 2009-01-12 13:24:36
## 8127     3.5 1231769289 2009-01-12 14:08:09
## 8128     3.5 1231770833 2009-01-12 14:33:53
## 8129     4.0 1231770796 2009-01-12 14:33:16
## 8130     5.0 1231763293 2009-01-12 12:28:13
## 8131     4.0 1231770565 2009-01-12 14:29:25
## 8132     2.0 1231769833 2009-01-12 14:17:13
## 8133     4.0  955192120 2000-04-08 11:08:40
## 8134     4.0  955193387 2000-04-08 11:29:47
## 8135     1.0  955192933 2000-04-08 11:22:13
## 8136     1.0  955192933 2000-04-08 11:22:13
## 8137     3.0  955193660 2000-04-08 11:34:20
## 8138     1.0  955192933 2000-04-08 11:22:13
## 8139     1.0  955192933 2000-04-08 11:22:13
## 8140     4.0  955192636 2000-04-08 11:17:16
## 8141     5.0  955192140 2000-04-08 11:09:00
## 8142     3.0  955193310 2000-04-08 11:28:30
## 8143     3.0  955193387 2000-04-08 11:29:47
## 8144     5.0  955193310 2000-04-08 11:28:30
## 8145     4.0  955193660 2000-04-08 11:34:20
## 8146     2.0  955192367 2000-04-08 11:12:47
## 8147     5.0  955193078 2000-04-08 11:24:38
## 8148     2.0  955191985 2000-04-08 11:06:25
## 8149     3.0  955193468 2000-04-08 11:31:08
## 8150     1.0  955192692 2000-04-08 11:18:12
## 8151     4.0  955192388 2000-04-08 11:13:08
## 8152     3.0  955193256 2000-04-08 11:27:36
## 8153     1.0  955192663 2000-04-08 11:17:43
## 8154     4.0  955192739 2000-04-08 11:18:59
## 8155     1.0  955193574 2000-04-08 11:32:54
## 8156     5.0  955192345 2000-04-08 11:12:25
## 8157     4.0  955193224 2000-04-08 11:27:04
## 8158     4.0  955192491 2000-04-08 11:14:51
## 8159     4.0  955192282 2000-04-08 11:11:22
## 8160     1.0  955192739 2000-04-08 11:18:59
## 8161     1.0  955192603 2000-04-08 11:16:43
## 8162     3.0  955192307 2000-04-08 11:11:47
## 8163     3.0  955192417 2000-04-08 11:13:37
## 8164     3.0  955192010 2000-04-08 11:06:50
## 8165     1.0  955192491 2000-04-08 11:14:51
## 8166     1.0  955192571 2000-04-08 11:16:11
## 8167     5.0  955192739 2000-04-08 11:18:59
## 8168     2.0  955192739 2000-04-08 11:18:59
## 8169     1.0  955193387 2000-04-08 11:29:47
## 8170     4.0  955193724 2000-04-08 11:35:24
## 8171     1.0  955192779 2000-04-08 11:19:39
## 8172     1.0  955192307 2000-04-08 11:11:47
## 8173     4.0  955193337 2000-04-08 11:28:57
## 8174     1.0  955192760 2000-04-08 11:19:20
## 8175     2.0  955192571 2000-04-08 11:16:11
## 8176     4.0  955192100 2000-04-08 11:08:20
## 8177     4.0  955193433 2000-04-08 11:30:33
## 8178     4.0  955193724 2000-04-08 11:35:24
## 8179     4.5 1352835937 2012-11-13 19:45:37
## 8180     4.0 1352835615 2012-11-13 19:40:15
## 8181     5.0 1352836913 2012-11-13 20:01:53
## 8182     4.5 1352835880 2012-11-13 19:44:40
## 8183     4.5 1352835987 2012-11-13 19:46:27
## 8184     2.0 1352836775 2012-11-13 19:59:35
## 8185     4.0 1352836714 2012-11-13 19:58:34
## 8186     4.0 1352835557 2012-11-13 19:39:17
## 8187     2.5 1352832722 2012-11-13 18:52:02
## 8188     3.5 1352836545 2012-11-13 19:55:45
## 8189     3.5 1352835678 2012-11-13 19:41:18
## 8190     4.0 1352832850 2012-11-13 18:54:10
## 8191     3.0 1352837063 2012-11-13 20:04:23
## 8192     4.0 1352832755 2012-11-13 18:52:35
## 8193     4.0 1352836272 2012-11-13 19:51:12
## 8194     0.5 1352832871 2012-11-13 18:54:31
## 8195     4.5 1352836371 2012-11-13 19:52:51
## 8196     4.5 1352836374 2012-11-13 19:52:54
## 8197     4.5 1352837049 2012-11-13 20:04:09
## 8198     4.5 1352836618 2012-11-13 19:56:58
## 8199     4.5 1352836376 2012-11-13 19:52:56
## 8200     3.5 1352834428 2012-11-13 19:20:28
## 8201     4.0 1352837008 2012-11-13 20:03:28
## 8202     3.5 1352836442 2012-11-13 19:54:02
## 8203     1.0 1352836450 2012-11-13 19:54:10
## 8204     4.5 1352833560 2012-11-13 19:06:00
## 8205     5.0 1352835951 2012-11-13 19:45:51
## 8206     4.5 1352836485 2012-11-13 19:54:45
## 8207     1.0 1352834067 2012-11-13 19:14:27
## 8208     5.0 1352836366 2012-11-13 19:52:46
## 8209     2.0 1352833048 2012-11-13 18:57:28
## 8210     4.5 1352836377 2012-11-13 19:52:57
## 8211     1.5 1352836517 2012-11-13 19:55:17
## 8212     5.0 1352836738 2012-11-13 19:58:58
## 8213     4.5 1352836666 2012-11-13 19:57:46
## 8214     5.0 1352836154 2012-11-13 19:49:14
## 8215     4.5 1352836322 2012-11-13 19:52:02
## 8216     3.5 1352833131 2012-11-13 18:58:51
## 8217     4.0 1352836290 2012-11-13 19:51:30
## 8218     5.0 1352835980 2012-11-13 19:46:20
## 8219     4.5 1352832825 2012-11-13 18:53:45
## 8220     2.5 1352836507 2012-11-13 19:55:07
## 8221     3.5 1352834483 2012-11-13 19:21:23
## 8222     5.0 1352834564 2012-11-13 19:22:44
## 8223     3.0  855926941 1997-02-14 13:29:01
## 8224     3.0  855926988 1997-02-14 13:29:48
## 8225     5.0  855926988 1997-02-14 13:29:48
## 8226     2.0  855926988 1997-02-14 13:29:48
## 8227     3.0  855927315 1997-02-14 13:35:15
## 8228     4.0  855926941 1997-02-14 13:29:01
## 8229     5.0  855927315 1997-02-14 13:35:15
## 8230     3.0  855927438 1997-02-14 13:37:18
## 8231     3.0  855927172 1997-02-14 13:32:52
## 8232     3.0  855926941 1997-02-14 13:29:01
## 8233     3.0  855927437 1997-02-14 13:37:17
## 8234     5.0  855927131 1997-02-14 13:32:11
## 8235     3.0  855927131 1997-02-14 13:32:11
## 8236     4.0  855926941 1997-02-14 13:29:01
## 8237     5.0  855927131 1997-02-14 13:32:11
## 8238     4.0  855927131 1997-02-14 13:32:11
## 8239     3.0  855926988 1997-02-14 13:29:48
## 8240     3.0  855926988 1997-02-14 13:29:48
## 8241     3.0  855927438 1997-02-14 13:37:18
## 8242     4.0  855927172 1997-02-14 13:32:52
## 8243     5.0  855926941 1997-02-14 13:29:01
## 8244     4.0  855927131 1997-02-14 13:32:11
## 8245     2.0  855927438 1997-02-14 13:37:18
## 8246     3.0  855927131 1997-02-14 13:32:11
## 8247     4.0  855927315 1997-02-14 13:35:15
## 8248     4.0  855927438 1997-02-14 13:37:18
## 8249     4.0  855926988 1997-02-14 13:29:48
## 8250     3.0  855926941 1997-02-14 13:29:01
## 8251     3.0  855927315 1997-02-14 13:35:15
## 8252     2.0  855927438 1997-02-14 13:37:18
## 8253     5.0  855926941 1997-02-14 13:29:01
## 8254     3.0  855927131 1997-02-14 13:32:11
## 8255     4.0  855926988 1997-02-14 13:29:48
## 8256     5.0  855927131 1997-02-14 13:32:11
## 8257     3.0  855927315 1997-02-14 13:35:15
## 8258     5.0  855927172 1997-02-14 13:32:52
## 8259     5.0  855927315 1997-02-14 13:35:15
## 8260     3.0  855926988 1997-02-14 13:29:48
## 8261     4.0 1467004817 2016-06-27 05:20:17
## 8262     4.0 1467008381 2016-06-27 06:19:41
## 8263     4.0 1467004892 2016-06-27 05:21:32
## 8264     2.0 1470350794 2016-08-04 22:46:34
## 8265     4.0 1467004961 2016-06-27 05:22:41
## 8266     5.0 1467003294 2016-06-27 04:54:54
## 8267     4.0 1467004867 2016-06-27 05:21:07
## 8268     4.0 1467004833 2016-06-27 05:20:33
## 8269     4.0 1467007782 2016-06-27 06:09:42
## 8270     4.0 1467005618 2016-06-27 05:33:38
## 8271     4.0 1467005298 2016-06-27 05:28:18
## 8272     2.0 1467003504 2016-06-27 04:58:24
## 8273     2.0 1467004905 2016-06-27 05:21:45
## 8274     4.0 1467005072 2016-06-27 05:24:32
## 8275     4.0 1467004949 2016-06-27 05:22:29
## 8276     4.0 1467004879 2016-06-27 05:21:19
## 8277     2.0 1470350790 2016-08-04 22:46:30
## 8278     5.0 1467004938 2016-06-27 05:22:18
## 8279     5.0 1467005164 2016-06-27 05:26:04
## 8280     2.0 1470350831 2016-08-04 22:47:11
## 8281     2.0 1467006124 2016-06-27 05:42:04
## 8282     4.0 1467002990 2016-06-27 04:49:50
## 8283     4.0 1467003119 2016-06-27 04:51:59
## 8284     4.0 1473803992 2016-09-13 21:59:52
## 8285     2.0 1470350811 2016-08-04 22:46:51
## 8286     4.0 1468471074 2016-07-14 04:37:54
## 8287     2.0 1467004922 2016-06-27 05:22:02
## 8288     4.0 1467002971 2016-06-27 04:49:31
## 8289     4.0 1473801974 2016-09-13 21:26:14
## 8290     4.0 1469033808 2016-07-20 16:56:48
## 8291     2.0 1470350967 2016-08-04 22:49:27
## 8292     4.0 1467005160 2016-06-27 05:26:00
## 8293     4.0 1467004832 2016-06-27 05:20:32
## 8294     4.0 1467004830 2016-06-27 05:20:30
## 8295     4.0 1467002940 2016-06-27 04:49:00
## 8296     4.0 1467007127 2016-06-27 05:58:47
## 8297     4.0 1467006388 2016-06-27 05:46:28
## 8298     4.0 1467008357 2016-06-27 06:19:17
## 8299     5.0 1467002950 2016-06-27 04:49:10
## 8300     2.0 1467005800 2016-06-27 05:36:40
## 8301     2.0 1467003164 2016-06-27 04:52:44
## 8302     4.0 1467005324 2016-06-27 05:28:44
## 8303     4.0 1467006035 2016-06-27 05:40:35
## 8304     5.0 1467005569 2016-06-27 05:32:49
## 8305     4.0 1467005986 2016-06-27 05:39:46
## 8306     4.0 1467005564 2016-06-27 05:32:44
## 8307     2.0 1467005377 2016-06-27 05:29:37
## 8308     4.0 1470350981 2016-08-04 22:49:41
## 8309     2.0 1470351101 2016-08-04 22:51:41
## 8310     4.0 1467008836 2016-06-27 06:27:16
## 8311     4.0 1467005515 2016-06-27 05:31:55
## 8312     5.0 1467003129 2016-06-27 04:52:09
## 8313     4.0 1467006650 2016-06-27 05:50:50
## 8314     4.0 1467005708 2016-06-27 05:35:08
## 8315     4.0 1467003138 2016-06-27 04:52:18
## 8316     2.0 1470351007 2016-08-04 22:50:07
## 8317     4.0 1467004984 2016-06-27 05:23:04
## 8318     4.0 1467005425 2016-06-27 05:30:25
## 8319     2.0 1470350746 2016-08-04 22:45:46
## 8320     4.0 1467005321 2016-06-27 05:28:41
## 8321     2.0 1470350810 2016-08-04 22:46:50
## 8322     4.0 1467003136 2016-06-27 04:52:16
## 8323     2.0 1470350743 2016-08-04 22:45:43
## 8324     4.0 1467002983 2016-06-27 04:49:43
## 8325     4.0 1467004101 2016-06-27 05:08:21
## 8326     4.0 1467006449 2016-06-27 05:47:29
## 8327     4.0 1467006407 2016-06-27 05:46:47
## 8328     5.0 1467003288 2016-06-27 04:54:48
## 8329     4.0 1467005413 2016-06-27 05:30:13
## 8330     5.0 1467006798 2016-06-27 05:53:18
## 8331     2.0 1467005230 2016-06-27 05:27:10
## 8332     4.0 1467003139 2016-06-27 04:52:19
## 8333     4.0 1467006447 2016-06-27 05:47:27
## 8334     5.0 1467003994 2016-06-27 05:06:34
## 8335     4.0 1467006765 2016-06-27 05:52:45
## 8336     4.0 1467005790 2016-06-27 05:36:30
## 8337     2.0 1470350796 2016-08-04 22:46:36
## 8338     5.0 1467003378 2016-06-27 04:56:18
## 8339     2.0 1467006386 2016-06-27 05:46:26
## 8340     2.0 1470350740 2016-08-04 22:45:40
## 8341     2.0 1470351006 2016-08-04 22:50:06
## 8342     4.0 1467004757 2016-06-27 05:19:17
## 8343     4.0 1467003285 2016-06-27 04:54:45
## 8344     4.0 1467009159 2016-06-27 06:32:39
## 8345     4.0 1467005320 2016-06-27 05:28:40
## 8346     4.0 1467003265 2016-06-27 04:54:25
## 8347     2.0 1470351002 2016-08-04 22:50:02
## 8348     5.0 1467004858 2016-06-27 05:20:58
## 8349     4.0 1467004906 2016-06-27 05:21:46
## 8350     4.0 1473792749 2016-09-13 18:52:29
## 8351     4.0 1467006781 2016-06-27 05:53:01
## 8352     5.0 1467003397 2016-06-27 04:56:37
## 8353     4.0 1467873409 2016-07-07 06:36:49
## 8354     4.0 1467005259 2016-06-27 05:27:39
## 8355     4.0 1467006163 2016-06-27 05:42:43
## 8356     2.0 1470350881 2016-08-04 22:48:01
## 8357     2.0 1470350949 2016-08-04 22:49:09
## 8358     4.0 1467006852 2016-06-27 05:54:12
## 8359     5.0 1467004019 2016-06-27 05:06:59
## 8360     4.0 1467005541 2016-06-27 05:32:21
## 8361     4.0 1467006556 2016-06-27 05:49:16
## 8362     5.0 1467006334 2016-06-27 05:45:34
## 8363     4.0 1467005889 2016-06-27 05:38:09
## 8364     4.0 1467094780 2016-06-28 06:19:40
## 8365     4.0 1467005534 2016-06-27 05:32:14
## 8366     4.0 1467005939 2016-06-27 05:38:59
## 8367     2.0 1470350880 2016-08-04 22:48:00
## 8368     5.0 1467003127 2016-06-27 04:52:07
## 8369     5.0 1467002948 2016-06-27 04:49:08
## 8370     4.0 1467003158 2016-06-27 04:52:38
## 8371     4.0 1470350964 2016-08-04 22:49:24
## 8372     2.0 1470350958 2016-08-04 22:49:18
## 8373     4.0 1467005607 2016-06-27 05:33:27
## 8374     4.0 1467006553 2016-06-27 05:49:13
## 8375     5.0 1467003819 2016-06-27 05:03:39
## 8376     2.0 1470350857 2016-08-04 22:47:37
## 8377     4.0 1467008994 2016-06-27 06:29:54
## 8378     4.0 1467004796 2016-06-27 05:19:56
## 8379     4.0 1467093986 2016-06-28 06:06:26
## 8380     2.0 1470350850 2016-08-04 22:47:30
## 8381     2.0 1470350848 2016-08-04 22:47:28
## 8382     5.0 1467003201 2016-06-27 04:53:21
## 8383     1.0 1469031525 2016-07-20 16:18:45
## 8384     4.0 1467005771 2016-06-27 05:36:11
## 8385     4.0 1467094778 2016-06-28 06:19:38
## 8386     2.0 1470352143 2016-08-04 23:09:03
## 8387     5.0 1467002969 2016-06-27 04:49:29
## 8388     2.0 1470350841 2016-08-04 22:47:21
## 8389     4.0 1470350988 2016-08-04 22:49:48
## 8390     4.0 1467092609 2016-06-28 05:43:29
## 8391     2.0 1470352155 2016-08-04 23:09:15
## 8392     2.0 1470350839 2016-08-04 22:47:19
## 8393     4.0 1467006461 2016-06-27 05:47:41
## 8394     4.0 1468471176 2016-07-14 04:39:36
## 8395     4.0 1467866328 2016-07-07 04:38:48
## 8396     2.0 1470350837 2016-08-04 22:47:17
## 8397     4.0 1467007881 2016-06-27 06:11:21
## 8398     1.0 1467005018 2016-06-27 05:23:38
## 8399     4.0 1467009172 2016-06-27 06:32:52
## 8400     4.0 1467003359 2016-06-27 04:55:59
## 8401     2.0 1470351704 2016-08-04 23:01:44
## 8402     4.0 1467002977 2016-06-27 04:49:37
## 8403     5.0 1467004735 2016-06-27 05:18:55
## 8404     4.0 1470350864 2016-08-04 22:47:44
## 8405     4.0 1467006343 2016-06-27 05:45:43
## 8406     4.0 1467005428 2016-06-27 05:30:28
## 8407     2.0 1475110909 2016-09-29 01:01:49
## 8408     5.0 1467008130 2016-06-27 06:15:30
## 8409     4.0 1467005498 2016-06-27 05:31:38
## 8410     4.0 1470351102 2016-08-04 22:51:42
## 8411     4.0 1469152877 2016-07-22 02:01:17
## 8412     2.0 1470351096 2016-08-04 22:51:36
## 8413     5.0 1467003490 2016-06-27 04:58:10
## 8414     4.0 1469031599 2016-07-20 16:19:59
## 8415     4.0 1467005598 2016-06-27 05:33:18
## 8416     4.0 1467005707 2016-06-27 05:35:07
## 8417     4.0 1467007025 2016-06-27 05:57:05
## 8418     5.0 1467002981 2016-06-27 04:49:41
## 8419     4.0 1467009270 2016-06-27 06:34:30
## 8420     4.0 1467006448 2016-06-27 05:47:28
## 8421     4.0 1467006816 2016-06-27 05:53:36
## 8422     2.0 1467005813 2016-06-27 05:36:53
## 8423     2.0 1470351099 2016-08-04 22:51:39
## 8424     4.0 1467004973 2016-06-27 05:22:53
## 8425     4.0 1467002942 2016-06-27 04:49:02
## 8426     4.0 1467693193 2016-07-05 04:33:13
## 8427     1.0 1467006042 2016-06-27 05:40:42
## 8428     4.0 1467009823 2016-06-27 06:43:43
## 8429     4.0 1474815098 2016-09-25 14:51:38
## 8430     4.0 1467007108 2016-06-27 05:58:28
## 8431     4.0 1467006194 2016-06-27 05:43:14
## 8432     2.0 1470350837 2016-08-04 22:47:17
## 8433     2.0 1470351801 2016-08-04 23:03:21
## 8434     4.0 1467005380 2016-06-27 05:29:40
## 8435     2.0 1470351097 2016-08-04 22:51:37
## 8436     4.0 1467005729 2016-06-27 05:35:29
## 8437     2.0 1470350982 2016-08-04 22:49:42
## 8438     4.0 1467005793 2016-06-27 05:36:33
## 8439     2.0 1470351095 2016-08-04 22:51:35
## 8440     2.0 1467005081 2016-06-27 05:24:41
## 8441     5.0 1467004784 2016-06-27 05:19:44
## 8442     2.0 1467009601 2016-06-27 06:40:01
## 8443     4.0 1467006773 2016-06-27 05:52:53
## 8444     4.0 1467006182 2016-06-27 05:43:02
## 8445     4.0 1467003514 2016-06-27 04:58:34
## 8446     2.0 1470350862 2016-08-04 22:47:42
## 8447     4.0 1467007890 2016-06-27 06:11:30
## 8448     2.0 1467005858 2016-06-27 05:37:38
## 8449     4.0 1467008829 2016-06-27 06:27:09
## 8450     2.0 1467006160 2016-06-27 05:42:40
## 8451     5.0 1467004029 2016-06-27 05:07:09
## 8452     2.0 1470351118 2016-08-04 22:51:58
## 8453     5.0 1467003934 2016-06-27 05:05:34
## 8454     4.0 1467003357 2016-06-27 04:55:57
## 8455     4.0 1467007203 2016-06-27 06:00:03
## 8456     4.0 1472582918 2016-08-30 18:48:38
## 8457     4.0 1467093364 2016-06-28 05:56:04
## 8458     4.0 1475567060 2016-10-04 07:44:20
## 8459     4.0 1470355329 2016-08-05 00:02:09
## 8460     2.0 1470350976 2016-08-04 22:49:36
## 8461     2.0 1470350951 2016-08-04 22:49:11
## 8462     2.0 1470350879 2016-08-04 22:47:59
## 8463     2.0 1470350876 2016-08-04 22:47:56
## 8464     4.0 1469152869 2016-07-22 02:01:09
## 8465     4.0 1467006603 2016-06-27 05:50:03
## 8466     4.0 1467005394 2016-06-27 05:29:54
## 8467     4.0 1467006723 2016-06-27 05:52:03
## 8468     4.0 1474700994 2016-09-24 07:09:54
## 8469     2.0 1467005824 2016-06-27 05:37:04
## 8470     4.0 1467008072 2016-06-27 06:14:32
## 8471     2.0 1470355415 2016-08-05 00:03:35
## 8472     4.0 1467005242 2016-06-27 05:27:22
## 8473     2.0 1470350975 2016-08-04 22:49:35
## 8474     4.0 1467005239 2016-06-27 05:27:19
## 8475     4.0 1467005492 2016-06-27 05:31:32
## 8476     2.0 1470351000 2016-08-04 22:50:00
## 8477     4.0 1470968633 2016-08-12 02:23:53
## 8478     4.0 1467006150 2016-06-27 05:42:30
## 8479     4.0 1473802057 2016-09-13 21:27:37
## 8480     4.0 1467004075 2016-06-27 05:07:55
## 8481     2.0 1470351001 2016-08-04 22:50:01
## 8482     2.0 1470350956 2016-08-04 22:49:16
## 8483     4.0 1467005527 2016-06-27 05:32:07
## 8484     4.0 1467003134 2016-06-27 04:52:14
## 8485     2.0 1470350834 2016-08-04 22:47:14
## 8486     4.0 1467005245 2016-06-27 05:27:25
## 8487     4.0 1467005287 2016-06-27 05:28:07
## 8488     5.0 1467002978 2016-06-27 04:49:38
## 8489     4.0 1467004098 2016-06-27 05:08:18
## 8490     4.0 1467004067 2016-06-27 05:07:47
## 8491     5.0 1467003300 2016-06-27 04:55:00
## 8492     4.0 1467092617 2016-06-28 05:43:37
## 8493     4.0 1467005258 2016-06-27 05:27:38
## 8494     4.0 1467005284 2016-06-27 05:28:04
## 8495     5.0 1467003858 2016-06-27 05:04:18
## 8496     5.0 1473794542 2016-09-13 19:22:22
## 8497     4.0 1467005307 2016-06-27 05:28:27
## 8498     4.0 1467005692 2016-06-27 05:34:52
## 8499     4.0 1467004100 2016-06-27 05:08:20
## 8500     2.0 1470350980 2016-08-04 22:49:40
## 8501     4.0 1471104320 2016-08-13 16:05:20
## 8502     2.0 1470350814 2016-08-04 22:46:54
## 8503     5.0 1467002967 2016-06-27 04:49:27
## 8504     2.0 1470350817 2016-08-04 22:46:57
## 8505     2.0 1467005360 2016-06-27 05:29:20
## 8506     4.0 1467005252 2016-06-27 05:27:32
## 8507     2.0 1470350824 2016-08-04 22:47:04
## 8508     5.0 1473791601 2016-09-13 18:33:21
## 8509     4.0 1467008087 2016-06-27 06:14:47
## 8510     5.0 1467005390 2016-06-27 05:29:50
## 8511     4.0 1467006262 2016-06-27 05:44:22
## 8512     2.0 1467003213 2016-06-27 04:53:33
## 8513     2.0 1470350961 2016-08-04 22:49:21
## 8514     4.0 1467005226 2016-06-27 05:27:06
## 8515     4.0 1467094542 2016-06-28 06:15:42
## 8516     4.0 1467006226 2016-06-27 05:43:46
## 8517     2.0 1470350791 2016-08-04 22:46:31
## 8518     2.0 1470351794 2016-08-04 23:03:14
## 8519     2.0 1470350792 2016-08-04 22:46:32
## 8520     1.0 1472530513 2016-08-30 04:15:13
## 8521     2.0 1470352323 2016-08-04 23:12:03
## 8522     4.0 1470350806 2016-08-04 22:46:46
## 8523     4.0 1467093079 2016-06-28 05:51:19
## 8524     4.0 1467003174 2016-06-27 04:52:54
## 8525     4.0 1467004099 2016-06-27 05:08:19
## 8526     4.0 1467004794 2016-06-27 05:19:54
## 8527     5.0 1467002992 2016-06-27 04:49:52
## 8528     4.0 1467006373 2016-06-27 05:46:13
## 8529     5.0 1467005463 2016-06-27 05:31:03
## 8530     4.0 1467005331 2016-06-27 05:28:51
## 8531     4.0 1467005270 2016-06-27 05:27:50
## 8532     4.0 1467005493 2016-06-27 05:31:33
## 8533     2.0 1470350829 2016-08-04 22:47:09
## 8534     4.0 1467005485 2016-06-27 05:31:25
## 8535     4.0 1467006393 2016-06-27 05:46:33
## 8536     2.0 1470350939 2016-08-04 22:48:59
## 8537     4.0 1467006247 2016-06-27 05:44:07
## 8538     5.0 1467003155 2016-06-27 04:52:35
## 8539     2.0 1469228080 2016-07-22 22:54:40
## 8540     4.0 1468470510 2016-07-14 04:28:30
## 8541     4.0 1467006577 2016-06-27 05:49:37
## 8542     2.0 1470351983 2016-08-04 23:06:23
## 8543     5.0 1467691652 2016-07-05 04:07:32
## 8544     2.0 1467009198 2016-06-27 06:33:18
## 8545     4.0 1467095130 2016-06-28 06:25:30
## 8546     5.0 1467004058 2016-06-27 05:07:38
## 8547     4.0 1469154890 2016-07-22 02:34:50
## 8548     2.0 1467009678 2016-06-27 06:41:18
## 8549     2.0 1470350835 2016-08-04 22:47:15
## 8550     4.0 1469033593 2016-07-20 16:53:13
## 8551     4.0 1467003331 2016-06-27 04:55:31
## 8552     4.0 1470350738 2016-08-04 22:45:38
## 8553     2.0 1467007232 2016-06-27 06:00:32
## 8554     4.0 1475557281 2016-10-04 05:01:21
## 8555     4.0 1467007629 2016-06-27 06:07:09
## 8556     5.0 1467005373 2016-06-27 05:29:33
## 8557     2.0 1470350809 2016-08-04 22:46:49
## 8558     4.0 1467005838 2016-06-27 05:37:18
## 8559     4.0 1467003299 2016-06-27 04:54:59
## 8560     4.0 1467006300 2016-06-27 05:45:00
## 8561     4.0 1467006253 2016-06-27 05:44:13
## 8562     5.0 1467003268 2016-06-27 04:54:28
## 8563     4.0 1467005282 2016-06-27 05:28:02
## 8564     4.0 1470350742 2016-08-04 22:45:42
## 8565     4.0 1470350803 2016-08-04 22:46:43
## 8566     2.0 1467005523 2016-06-27 05:32:03
## 8567     5.0 1467003146 2016-06-27 04:52:26
## 8568     4.0 1467693406 2016-07-05 04:36:46
## 8569     4.0 1467006275 2016-06-27 05:44:35
## 8570     2.0 1470350985 2016-08-04 22:49:45
## 8571     5.0 1469073222 2016-07-21 03:53:42
## 8572     4.0 1467005248 2016-06-27 05:27:28
## 8573     5.0 1467692413 2016-07-05 04:20:13
## 8574     4.0 1467693415 2016-07-05 04:36:55
## 8575     5.0 1467005267 2016-06-27 05:27:47
## 8576     4.0 1467007522 2016-06-27 06:05:22
## 8577     4.0 1467006583 2016-06-27 05:49:43
## 8578     5.0 1467003975 2016-06-27 05:06:15
## 8579     4.0 1467005548 2016-06-27 05:32:28
## 8580     2.0 1470351003 2016-08-04 22:50:03
## 8581     4.0 1467005933 2016-06-27 05:38:53
## 8582     4.0 1469073419 2016-07-21 03:56:59
## 8583     4.0 1470350872 2016-08-04 22:47:52
## 8584     2.0 1467005359 2016-06-27 05:29:19
## 8585     4.0 1467005323 2016-06-27 05:28:43
## 8586     5.0 1467004082 2016-06-27 05:08:02
## 8587     4.0 1467006368 2016-06-27 05:46:08
## 8588     5.0 1467003951 2016-06-27 05:05:51
## 8589     5.0 1467009669 2016-06-27 06:41:09
## 8590     2.0 1467006058 2016-06-27 05:40:58
## 8591     2.0 1470350855 2016-08-04 22:47:35
## 8592     2.0 1470350851 2016-08-04 22:47:31
## 8593     2.0 1467005604 2016-06-27 05:33:24
## 8594     4.0 1467003527 2016-06-27 04:58:47
## 8595     5.0 1471306371 2016-08-16 00:12:51
## 8596     2.0 1470350845 2016-08-04 22:47:25
## 8597     4.0 1467007605 2016-06-27 06:06:45
## 8598     5.0 1467003152 2016-06-27 04:52:32
## 8599     4.0 1475479127 2016-10-03 07:18:47
## 8600     5.0 1467003185 2016-06-27 04:53:05
## 8601     1.0 1467095936 2016-06-28 06:38:56
## 8602     5.0 1467003176 2016-06-27 04:52:56
## 8603     1.0 1467005673 2016-06-27 05:34:33
## 8604     5.0 1467004094 2016-06-27 05:08:14
## 8605     4.0 1467007569 2016-06-27 06:06:09
## 8606     2.0 1467005222 2016-06-27 05:27:02
## 8607     2.0 1467005342 2016-06-27 05:29:02
## 8608     2.0 1470350978 2016-08-04 22:49:38
## 8609     4.0 1467005703 2016-06-27 05:35:03
## 8610     4.0 1467005747 2016-06-27 05:35:47
## 8611     4.0 1467006547 2016-06-27 05:49:07
## 8612     4.0 1467865426 2016-07-07 04:23:46
## 8613     4.0 1467006376 2016-06-27 05:46:16
## 8614     2.0 1470350955 2016-08-04 22:49:15
## 8615     5.0 1467003348 2016-06-27 04:55:48
## 8616     4.0 1470350987 2016-08-04 22:49:47
## 8617     2.0 1470350986 2016-08-04 22:49:46
## 8618     5.0 1467092809 2016-06-28 05:46:49
## 8619     5.0 1467003336 2016-06-27 04:55:36
## 8620     4.0 1467004345 2016-06-27 05:12:25
## 8621     4.0 1469031507 2016-07-20 16:18:27
## 8622     4.0 1467004172 2016-06-27 05:09:32
## 8623     4.0 1467004170 2016-06-27 05:09:30
## 8624     4.0 1467004173 2016-06-27 05:09:33
## 8625     2.0 1470350866 2016-08-04 22:47:46
## 8626     4.0 1467004200 2016-06-27 05:10:00
## 8627     4.0 1467003125 2016-06-27 04:52:05
## 8628     4.0 1467003364 2016-06-27 04:56:04
## 8629     4.0 1470968850 2016-08-12 02:27:30
## 8630     5.0 1467005726 2016-06-27 05:35:26
## 8631     4.0 1467003698 2016-06-27 05:01:38
## 8632     4.0 1467005198 2016-06-27 05:26:38
## 8633     4.0 1467004387 2016-06-27 05:13:07
## 8634     4.0 1467004221 2016-06-27 05:10:21
## 8635     5.0 1467004584 2016-06-27 05:16:24
## 8636     5.0 1467004119 2016-06-27 05:08:39
## 8637     2.0 1467004435 2016-06-27 05:13:55
## 8638     4.0 1467009351 2016-06-27 06:35:51
## 8639     4.0 1467004483 2016-06-27 05:14:43
## 8640     4.0 1467004574 2016-06-27 05:16:14
## 8641     5.0 1467864303 2016-07-07 04:05:03
## 8642     4.0 1467007601 2016-06-27 06:06:41
## 8643     4.0 1467092846 2016-06-28 05:47:26
## 8644     4.0 1467004204 2016-06-27 05:10:04
## 8645     5.0 1467004183 2016-06-27 05:09:43
## 8646     4.0 1467006409 2016-06-27 05:46:49
## 8647     5.0 1467002965 2016-06-27 04:49:25
## 8648     4.0 1467004374 2016-06-27 05:12:54
## 8649     5.0 1467093107 2016-06-28 05:51:47
## 8650     5.0 1467005411 2016-06-27 05:30:11
## 8651     4.0 1467004187 2016-06-27 05:09:47
## 8652     4.0 1467004158 2016-06-27 05:09:18
## 8653     5.0 1473794395 2016-09-13 19:19:55
## 8654     4.0 1467003210 2016-06-27 04:53:30
## 8655     5.0 1467003145 2016-06-27 04:52:25
## 8656     4.0 1467004198 2016-06-27 05:09:58
## 8657     1.0 1467004629 2016-06-27 05:17:09
## 8658     4.0 1467004653 2016-06-27 05:17:33
## 8659     4.0 1469153655 2016-07-22 02:14:15
## 8660     4.0 1467005355 2016-06-27 05:29:15
## 8661     5.0 1467004005 2016-06-27 05:06:45
## 8662     5.0 1467003897 2016-06-27 05:04:57
## 8663     4.0 1469032461 2016-07-20 16:34:21
## 8664     2.0 1470350858 2016-08-04 22:47:38
## 8665     2.0 1470350948 2016-08-04 22:49:08
## 8666     4.0 1467004505 2016-06-27 05:15:05
## 8667     1.0 1473791535 2016-09-13 18:32:15
## 8668     2.0 1470350973 2016-08-04 22:49:33
## 8669     4.0 1467004197 2016-06-27 05:09:57
## 8670     4.0 1467004315 2016-06-27 05:11:55
## 8671     2.0 1470350882 2016-08-04 22:48:02
## 8672     2.0 1467004552 2016-06-27 05:15:52
## 8673     4.0 1467004122 2016-06-27 05:08:42
## 8674     4.0 1467003383 2016-06-27 04:56:23
## 8675     4.0 1467004613 2016-06-27 05:16:53
## 8676     4.0 1468910117 2016-07-19 06:35:17
## 8677     4.0 1467003420 2016-06-27 04:57:00
## 8678     4.0 1469031965 2016-07-20 16:26:05
## 8679     4.0 1467092472 2016-06-28 05:41:12
## 8680     2.0 1470350873 2016-08-04 22:47:53
## 8681     4.0 1467004382 2016-06-27 05:13:02
## 8682     1.0 1467004544 2016-06-27 05:15:44
## 8683     4.0 1467007093 2016-06-27 05:58:13
## 8684     5.0 1467004638 2016-06-27 05:17:18
## 8685     5.0 1467004161 2016-06-27 05:09:21
## 8686     4.0 1467004619 2016-06-27 05:16:59
## 8687     4.0 1467004448 2016-06-27 05:14:08
## 8688     4.0 1467004582 2016-06-27 05:16:22
## 8689     4.0 1473802027 2016-09-13 21:27:07
## 8690     4.0 1467003376 2016-06-27 04:56:16
## 8691     2.0 1470350788 2016-08-04 22:46:28
## 8692     4.0 1470350782 2016-08-04 22:46:22
## 8693     5.0 1467005316 2016-06-27 05:28:36
## 8694     1.0 1467004530 2016-06-27 05:15:30
## 8695     5.0 1467003873 2016-06-27 05:04:33
## 8696     5.0 1467003849 2016-06-27 05:04:09
## 8697     5.0 1467003292 2016-06-27 04:54:52
## 8698     4.0 1467864500 2016-07-07 04:08:20
## 8699     4.0 1467004379 2016-06-27 05:12:59
## 8700     1.0 1467092453 2016-06-28 05:40:53
## 8701     4.0 1467092369 2016-06-28 05:39:29
## 8702     2.0 1467004218 2016-06-27 05:10:18
## 8703     2.0 1470350802 2016-08-04 22:46:42
## 8704     4.0 1467004316 2016-06-27 05:11:56
## 8705     4.0 1467002988 2016-06-27 04:49:48
## 8706     2.0 1467004578 2016-06-27 05:16:18
## 8707     5.0 1467863402 2016-07-07 03:50:02
## 8708     2.0 1470350983 2016-08-04 22:49:43
## 8709     4.0 1469154665 2016-07-22 02:31:05
## 8710     5.0 1467003946 2016-06-27 05:05:46
## 8711     1.0 1467092392 2016-06-28 05:39:52
## 8712     5.0 1467005764 2016-06-27 05:36:04
## 8713     4.0 1467007575 2016-06-27 06:06:15
## 8714     4.0 1467007838 2016-06-27 06:10:38
## 8715     4.0 1470350830 2016-08-04 22:47:10
## 8716     4.0 1468546977 2016-07-15 01:42:57
## 8717     4.0 1467009440 2016-06-27 06:37:20
## 8718     2.0 1470350793 2016-08-04 22:46:33
## 8719     4.0 1467006050 2016-06-27 05:40:50
## 8720     4.0 1467007684 2016-06-27 06:08:04
## 8721     4.0 1468546294 2016-07-15 01:31:34
## 8722     2.0 1474953835 2016-09-27 05:23:55
## 8723     4.0 1467005461 2016-06-27 05:31:01
## 8724     2.0 1471306876 2016-08-16 00:21:16
## 8725     4.0 1467003177 2016-06-27 04:52:57
## 8726     4.0 1467094125 2016-06-28 06:08:45
## 8727     4.0 1469845528 2016-07-30 02:25:28
## 8728     4.0 1467003435 2016-06-27 04:57:15
## 8729     2.0 1470351005 2016-08-04 22:50:05
## 8730     5.0 1467003149 2016-06-27 04:52:29
## 8731     2.0 1470351004 2016-08-04 22:50:04
## 8732     4.0 1467006008 2016-06-27 05:40:08
## 8733     5.0 1467003921 2016-06-27 05:05:21
## 8734     2.0 1467092461 2016-06-28 05:41:01
## 8735     4.0 1467003191 2016-06-27 04:53:11
## 8736     4.0 1467003769 2016-06-27 05:02:49
## 8737     2.0 1467005297 2016-06-27 05:28:17
## 8738     1.0 1467003517 2016-06-27 04:58:37
## 8739     5.0 1467005656 2016-06-27 05:34:16
## 8740     4.0 1467006422 2016-06-27 05:47:02
## 8741     4.0 1467692116 2016-07-05 04:15:16
## 8742     5.0 1470025110 2016-08-01 04:18:30
## 8743     5.0 1467006371 2016-06-27 05:46:11
## 8744     2.0 1470350815 2016-08-04 22:46:55
## 8745     2.0 1467005244 2016-06-27 05:27:24
## 8746     4.0 1469228067 2016-07-22 22:54:27
## 8747     1.0 1470355990 2016-08-05 00:13:10
## 8748     2.0 1470350818 2016-08-04 22:46:58
## 8749     4.0 1467007253 2016-06-27 06:00:53
## 8750     4.0 1473791593 2016-09-13 18:33:13
## 8751     2.0 1470352041 2016-08-04 23:07:21
## 8752     4.0 1473804166 2016-09-13 22:02:46
## 8753     4.0 1467092891 2016-06-28 05:48:11
## 8754     4.0 1467006430 2016-06-27 05:47:10
## 8755     4.0 1467002982 2016-06-27 04:49:42
## 8756     5.0 1467004819 2016-06-27 05:20:19
## 8757     2.0 1470350977 2016-08-04 22:49:37
## 8758     5.0 1467006119 2016-06-27 05:41:59
## 8759     5.0 1467094604 2016-06-28 06:16:44
## 8760     4.0 1467006189 2016-06-27 05:43:09
## 8761     2.0 1470350833 2016-08-04 22:47:13
## 8762     4.0 1467005444 2016-06-27 05:30:44
## 8763     5.0 1467003913 2016-06-27 05:05:13
## 8764     4.0 1469228116 2016-07-22 22:55:16
## 8765     5.0 1467691835 2016-07-05 04:10:35
## 8766     2.0 1469152845 2016-07-22 02:00:45
## 8767     5.0 1472582666 2016-08-30 18:44:26
## 8768     2.0 1467005931 2016-06-27 05:38:51
## 8769     5.0 1467093091 2016-06-28 05:51:31
## 8770     4.0 1467005204 2016-06-27 05:26:44
## 8771     5.0 1467862484 2016-07-07 03:34:44
## 8772     2.0 1470350745 2016-08-04 22:45:45
## 8773     4.0 1467095329 2016-06-28 06:28:49
## 8774     4.0 1468548012 2016-07-15 02:00:12
## 8775     4.0 1467004133 2016-06-27 05:08:53
## 8776     5.0 1467005847 2016-06-27 05:37:27
## 8777     2.0 1470350805 2016-08-04 22:46:45
## 8778     5.0 1467007293 2016-06-27 06:01:33
## 8779     4.0 1474951858 2016-09-27 04:50:58
## 8780     4.0 1467008759 2016-06-27 06:25:59
## 8781     4.0 1474989255 2016-09-27 15:14:15
## 8782     5.0 1467095789 2016-06-28 06:36:29
## 8783     5.0  907763065 1998-10-07 12:24:25
## 8784     5.0  907763245 1998-10-07 12:27:25
## 8785     4.0  907763141 1998-10-07 12:25:41
## 8786     5.0  907763018 1998-10-07 12:23:38
## 8787     5.0  907762500 1998-10-07 12:15:00
## 8788     5.0  907763808 1998-10-07 12:36:48
## 8789     4.0  907763847 1998-10-07 12:37:27
## 8790     3.0  907762733 1998-10-07 12:18:53
## 8791     4.0  907765902 1998-10-07 13:11:42
## 8792     5.0  907763245 1998-10-07 12:27:25
## 8793     5.0  907763847 1998-10-07 12:37:27
## 8794     5.0  907762409 1998-10-07 12:13:29
## 8795     5.0  907763101 1998-10-07 12:25:01
## 8796     2.0  907762795 1998-10-07 12:19:55
## 8797     3.0  907763065 1998-10-07 12:24:25
## 8798     5.0  907763324 1998-10-07 12:28:44
## 8799     4.0  907763283 1998-10-07 12:28:03
## 8800     4.0  907763283 1998-10-07 12:28:03
## 8801     4.0  907763141 1998-10-07 12:25:41
## 8802     5.0  907763018 1998-10-07 12:23:38
## 8803     5.0  907763283 1998-10-07 12:28:03
## 8804     5.0  907762409 1998-10-07 12:13:29
## 8805     5.0  907763765 1998-10-07 12:36:05
## 8806     5.0  907762795 1998-10-07 12:19:55
## 8807     4.0  907763283 1998-10-07 12:28:03
## 8808     5.0  907762565 1998-10-07 12:16:05
## 8809     3.0  907764831 1998-10-07 12:53:51
## 8810     5.0  907762501 1998-10-07 12:15:01
## 8811     5.0  907763101 1998-10-07 12:25:01
## 8812     3.0  907762795 1998-10-07 12:19:55
## 8813     5.0  907763141 1998-10-07 12:25:41
## 8814     5.0  907762733 1998-10-07 12:18:53
## 8815     5.0  907765902 1998-10-07 13:11:42
## 8816     5.0  907765600 1998-10-07 13:06:40
## 8817     4.0  907764874 1998-10-07 12:54:34
## 8818     3.0  907766060 1998-10-07 13:14:20
## 8819     4.0  907766060 1998-10-07 13:14:20
## 8820     4.0  907765600 1998-10-07 13:06:40
## 8821     5.0  907765600 1998-10-07 13:06:40
## 8822     4.0  907764507 1998-10-07 12:48:27
## 8823     4.0  907766060 1998-10-07 13:14:20
## 8824     5.0  907764779 1998-10-07 12:52:59
## 8825     4.0  907766022 1998-10-07 13:13:42
## 8826     4.0  907764935 1998-10-07 12:55:35
## 8827     4.0  907764935 1998-10-07 12:55:35
## 8828     2.0  907765142 1998-10-07 12:59:02
## 8829     2.0  907762832 1998-10-07 12:20:32
## 8830     5.0  907763847 1998-10-07 12:37:27
## 8831     5.0  907764507 1998-10-07 12:48:27
## 8832     5.0  907765008 1998-10-07 12:56:48
## 8833     4.0  907764779 1998-10-07 12:52:59
## 8834     4.0  907766060 1998-10-07 13:14:20
## 8835     5.0  907765059 1998-10-07 12:57:39
## 8836     2.0  907765142 1998-10-07 12:59:02
## 8837     3.0  907765059 1998-10-07 12:57:39
## 8838     4.0  907765142 1998-10-07 12:59:02
## 8839     4.0  907765059 1998-10-07 12:57:39
## 8840     5.0  907765978 1998-10-07 13:12:58
## 8841     5.0  907762969 1998-10-07 12:22:49
## 8842     5.0  907764470 1998-10-07 12:47:50
## 8843     4.0  907765059 1998-10-07 12:57:39
## 8844     5.0  907765902 1998-10-07 13:11:42
## 8845     4.0  907766121 1998-10-07 13:15:21
## 8846     4.0  907764507 1998-10-07 12:48:27
## 8847     5.0  907764470 1998-10-07 12:47:50
## 8848     5.0  907764431 1998-10-07 12:47:11
## 8849     3.0  907764544 1998-10-07 12:49:04
## 8850     3.0  907765939 1998-10-07 13:12:19
## 8851     3.0  907765939 1998-10-07 13:12:19
## 8852     4.0  907764779 1998-10-07 12:52:59
## 8853     5.0  907765939 1998-10-07 13:12:19
## 8854     5.0  907764625 1998-10-07 12:50:25
## 8855     5.0  907764544 1998-10-07 12:49:04
## 8856     5.0  907764310 1998-10-07 12:45:10
## 8857     4.0  907765142 1998-10-07 12:59:02
## 8858     5.0  907765939 1998-10-07 13:12:19
## 8859     3.0  907764544 1998-10-07 12:49:04
## 8860     5.0  907764470 1998-10-07 12:47:50
## 8861     5.0  907763018 1998-10-07 12:23:38
## 8862     5.0  907764779 1998-10-07 12:52:59
## 8863     5.0  907765786 1998-10-07 13:09:46
## 8864     5.0  907764723 1998-10-07 12:52:03
## 8865     4.0  907764584 1998-10-07 12:49:44
## 8866     5.0  907765939 1998-10-07 13:12:19
## 8867     4.0  907763018 1998-10-07 12:23:38
## 8868     3.0  907764584 1998-10-07 12:49:44
## 8869     3.0  907765939 1998-10-07 13:12:19
## 8870     3.0  907764723 1998-10-07 12:52:03
## 8871     5.0  907765902 1998-10-07 13:11:42
## 8872     5.0  907765008 1998-10-07 12:56:48
## 8873     3.0  907764431 1998-10-07 12:47:11
## 8874     5.0  907764507 1998-10-07 12:48:27
## 8875     5.0  907764584 1998-10-07 12:49:44
## 8876     5.0  907764470 1998-10-07 12:47:50
## 8877     4.0  907764671 1998-10-07 12:51:11
## 8878     5.0  907764723 1998-10-07 12:52:03
## 8879     5.0  907764874 1998-10-07 12:54:34
## 8880     2.0  907765422 1998-10-07 13:03:42
## 8881     1.0  907765461 1998-10-07 13:04:21
## 8882     4.0  907766121 1998-10-07 13:15:21
## 8883     5.0  907766156 1998-10-07 13:15:56
## 8884     4.0  907765059 1998-10-07 12:57:39
## 8885     4.0  907765059 1998-10-07 12:57:39
## 8886     5.0  907766022 1998-10-07 13:13:42
## 8887     5.0  907763324 1998-10-07 12:28:44
## 8888     5.0  907762565 1998-10-07 12:16:05
## 8889     4.0  907764831 1998-10-07 12:53:51
## 8890     4.0  907765656 1998-10-07 13:07:36
## 8891     5.0  907766022 1998-10-07 13:13:42
## 8892     4.0  907763324 1998-10-07 12:28:44
## 8893     5.0  907764625 1998-10-07 12:50:25
## 8894     4.0  907763283 1998-10-07 12:28:03
## 8895     3.0  907762885 1998-10-07 12:21:25
## 8896     4.0  907762885 1998-10-07 12:21:25
## 8897     4.0  907763018 1998-10-07 12:23:38
## 8898     3.0  907765059 1998-10-07 12:57:39
## 8899     5.0  907762832 1998-10-07 12:20:32
## 8900     4.0  907762832 1998-10-07 12:20:32
## 8901     4.0  907762733 1998-10-07 12:18:53
## 8902     3.0  907762795 1998-10-07 12:19:55
## 8903     5.0  907763065 1998-10-07 12:24:25
## 8904     4.0  907762795 1998-10-07 12:19:55
## 8905     4.0  907764431 1998-10-07 12:47:11
## 8906     5.0  907764723 1998-10-07 12:52:03
## 8907     5.0  907762565 1998-10-07 12:16:05
## 8908     5.0  907762409 1998-10-07 12:13:29
## 8909     3.0  907763245 1998-10-07 12:27:25
## 8910     3.0  907762733 1998-10-07 12:18:53
## 8911     3.0  907762832 1998-10-07 12:20:32
## 8912     5.0  907762565 1998-10-07 12:16:05
## 8913     5.0  907762795 1998-10-07 12:19:55
## 8914     2.0  907762795 1998-10-07 12:19:55
## 8915     5.0  907762969 1998-10-07 12:22:49
## 8916     1.0  907761833 1998-10-07 12:03:53
## 8917     3.0  907761919 1998-10-07 12:05:19
## 8918     5.0  907761833 1998-10-07 12:03:53
## 8919     5.0  907765600 1998-10-07 13:06:40
## 8920     4.0  907765600 1998-10-07 13:06:40
## 8921     5.0  907766060 1998-10-07 13:14:20
## 8922     4.0  907765939 1998-10-07 13:12:19
## 8923     4.0  907766022 1998-10-07 13:13:42
## 8924     4.0  907764507 1998-10-07 12:48:27
## 8925     5.0  907764431 1998-10-07 12:47:11
## 8926     4.0  907764779 1998-10-07 12:52:59
## 8927     5.0  907764389 1998-10-07 12:46:29
## 8928     5.0  907764431 1998-10-07 12:47:11
## 8929     5.0  907765786 1998-10-07 13:09:46
## 8930     3.0  907764389 1998-10-07 12:46:29
## 8931     4.0  907764431 1998-10-07 12:47:11
## 8932     2.0  907765223 1998-10-07 13:00:23
## 8933     2.0  907765363 1998-10-07 13:02:43
## 8934     1.0  907765329 1998-10-07 13:02:09
## 8935     1.0  907765329 1998-10-07 13:02:09
## 8936     1.0  907765422 1998-10-07 13:03:42
## 8937     1.0  907765461 1998-10-07 13:04:21
## 8938     4.0  907766156 1998-10-07 13:15:56
## 8939     3.0  907765278 1998-10-07 13:01:18
## 8940     1.0  907765422 1998-10-07 13:03:42
## 8941     2.0  907765329 1998-10-07 13:02:09
## 8942     4.0  907764671 1998-10-07 12:51:11
## 8943     3.0  907765223 1998-10-07 13:00:23
## 8944     2.0  907765329 1998-10-07 13:02:09
## 8945     4.0  907765978 1998-10-07 13:12:58
## 8946     5.0  907764625 1998-10-07 12:50:25
## 8947     4.0  907764625 1998-10-07 12:50:25
## 8948     3.0  907765223 1998-10-07 13:00:23
## 8949     3.0  907764935 1998-10-07 12:55:35
## 8950     5.0  907761877 1998-10-07 12:04:37
## 8951     3.0  907765902 1998-10-07 13:11:42
## 8952     4.0  907766121 1998-10-07 13:15:21
## 8953     5.0  907764544 1998-10-07 12:49:04
## 8954     2.0  907762001 1998-10-07 12:06:41
## 8955     5.0  907761833 1998-10-07 12:03:53
## 8956     4.0  907766121 1998-10-07 13:15:21
## 8957     3.0  907765191 1998-10-07 12:59:51
## 8958     3.0  907765191 1998-10-07 12:59:51
## 8959     4.0  907764625 1998-10-07 12:50:25
## 8960     2.0  907765363 1998-10-07 13:02:43
## 8961     3.0  907765278 1998-10-07 13:01:18
## 8962     4.0  907764625 1998-10-07 12:50:25
## 8963     4.0  907765978 1998-10-07 13:12:58
## 8964     4.0  907765008 1998-10-07 12:56:48
## 8965     3.0  907765278 1998-10-07 13:01:18
## 8966     5.0  907764584 1998-10-07 12:49:44
## 8967     4.0  907765008 1998-10-07 12:56:48
## 8968     2.0  907764584 1998-10-07 12:49:44
## 8969     3.0  907765422 1998-10-07 13:03:42
## 8970     1.0  907765461 1998-10-07 13:04:21
## 8971     4.0  907761947 1998-10-07 12:05:47
## 8972     4.0  907764584 1998-10-07 12:49:44
## 8973     3.0  907765059 1998-10-07 12:57:39
## 8974     3.0  907764544 1998-10-07 12:49:04
## 8975     1.0  907762089 1998-10-07 12:08:09
## 8976     3.0  907764470 1998-10-07 12:47:50
## 8977     2.0  907765363 1998-10-07 13:02:43
## 8978     5.0  907764671 1998-10-07 12:51:11
## 8979     4.0  907766121 1998-10-07 13:15:21
## 8980     5.0  907764431 1998-10-07 12:47:11
## 8981     5.0  907764431 1998-10-07 12:47:11
## 8982     4.0  907764874 1998-10-07 12:54:34
## 8983     4.0  907764671 1998-10-07 12:51:11
## 8984     4.0  907762409 1998-10-07 12:13:29
## 8985     4.0  907764389 1998-10-07 12:46:29
## 8986     4.0  907763245 1998-10-07 12:27:25
## 8987     3.0  907765600 1998-10-07 13:06:40
## 8988     3.0  907765142 1998-10-07 12:59:02
## 8989     5.0  907762969 1998-10-07 12:22:49
## 8990     5.0  907764831 1998-10-07 12:53:51
## 8991     4.0  907765978 1998-10-07 13:12:58
## 8992     5.0  961127960 2000-06-16 03:59:20
## 8993     1.0  961127638 2000-06-16 03:53:58
## 8994     5.0  961128124 2000-06-16 04:02:04
## 8995     1.0  961127638 2000-06-16 03:53:58
## 8996     3.0  961127638 2000-06-16 03:53:58
## 8997     2.0  961128086 2000-06-16 04:01:26
## 8998     4.0  961128178 2000-06-16 04:02:58
## 8999     4.0  961128239 2000-06-16 04:03:59
## 9000     2.0  961128124 2000-06-16 04:02:04
## 9001     5.0  961127522 2000-06-16 03:52:02
## 9002     2.0  961127724 2000-06-16 03:55:24
## 9003     2.0  961128239 2000-06-16 04:03:59
## 9004     5.0  961127557 2000-06-16 03:52:37
## 9005     5.0  961127724 2000-06-16 03:55:24
## 9006     2.0  961127522 2000-06-16 03:52:02
## 9007     2.0  961128178 2000-06-16 04:02:58
## 9008     4.0  961127522 2000-06-16 03:52:02
## 9009     4.0  961128055 2000-06-16 04:00:55
## 9010     2.0  961127638 2000-06-16 03:53:58
## 9011     4.0  961127834 2000-06-16 03:57:14
## 9012     5.0  961127480 2000-06-16 03:51:20
## 9013     4.0  961127834 2000-06-16 03:57:14
## 9014     5.0  961127896 2000-06-16 03:58:16
## 9015     2.0  961127256 2000-06-16 03:47:36
## 9016     5.0  961128239 2000-06-16 04:03:59
## 9017     3.0  961127834 2000-06-16 03:57:14
## 9018     4.0  961127960 2000-06-16 03:59:20
## 9019     4.0  961127480 2000-06-16 03:51:20
## 9020     4.0  961127638 2000-06-16 03:53:58
## 9021     1.0  961128020 2000-06-16 04:00:20
## 9022     1.0  961128302 2000-06-16 04:05:02
## 9023     5.0  961127761 2000-06-16 03:56:01
## 9024     4.0  961127834 2000-06-16 03:57:14
## 9025     2.0  961128239 2000-06-16 04:03:59
## 9026     4.0  961128178 2000-06-16 04:02:58
## 9027     5.0  961127868 2000-06-16 03:57:48
## 9028     3.0  961127592 2000-06-16 03:53:12
## 9029     2.0  961128124 2000-06-16 04:02:04
## 9030     2.0  961127480 2000-06-16 03:51:20
## 9031     3.0  961127480 2000-06-16 03:51:20
## 9032     3.0  961127690 2000-06-16 03:54:50
## 9033     4.0  961127690 2000-06-16 03:54:50
## 9034     2.0  961128302 2000-06-16 04:05:02
## 9035     4.0  961128269 2000-06-16 04:04:29
## 9036     4.0  961127256 2000-06-16 03:47:36
## 9037     5.0  961127256 2000-06-16 03:47:36
## 9038     5.0  961127522 2000-06-16 03:52:02
## 9039     3.0  961127558 2000-06-16 03:52:38
## 9040     4.0  961127592 2000-06-16 03:53:12
## 9041     2.0  961127790 2000-06-16 03:56:30
## 9042     2.0  961127761 2000-06-16 03:56:01
## 9043     2.0  961127256 2000-06-16 03:47:36
## 9044     1.0  961128302 2000-06-16 04:05:02
## 9045     5.0  961128020 2000-06-16 04:00:20
## 9046     5.0  961127761 2000-06-16 03:56:01
## 9047     5.0  961127761 2000-06-16 03:56:01
## 9048     2.0  961127638 2000-06-16 03:53:58
## 9049     3.0  961128269 2000-06-16 04:04:29
## 9050     4.0  961127690 2000-06-16 03:54:50
## 9051     4.0  961127690 2000-06-16 03:54:50
## 9052     2.0  961127558 2000-06-16 03:52:38
## 9053     5.0  961127761 2000-06-16 03:56:01
## 9054     5.0  961127480 2000-06-16 03:51:20
## 9055     5.0  961128055 2000-06-16 04:00:55
## 9056     5.0  961127407 2000-06-16 03:50:07
## 9057     4.0  961128239 2000-06-16 04:03:59
## 9058     1.0  961127407 2000-06-16 03:50:07
## 9059     5.0  961127407 2000-06-16 03:50:07
## 9060     3.0  961127923 2000-06-16 03:58:43
## 9061     1.0  961127256 2000-06-16 03:47:36
## 9062     5.0  961127834 2000-06-16 03:57:14
## 9063     4.0  961128055 2000-06-16 04:00:55
## 9064     3.0  961127639 2000-06-16 03:53:59
## 9065     2.5 1144755845 2006-04-11 11:44:05
## 9066     4.5 1144756065 2006-04-11 11:47:45
## 9067     5.0 1144756267 2006-04-11 11:51:07
## 9068     2.5 1144755826 2006-04-11 11:43:46
## 9069     4.0 1144756061 2006-04-11 11:47:41
## 9070     3.5 1144755802 2006-04-11 11:43:22
## 9071     2.0 1144756058 2006-04-11 11:47:38
## 9072     1.0 1144756054 2006-04-11 11:47:34
## 9073     4.0 1144756366 2006-04-11 11:52:46
## 9074     4.5 1144755818 2006-04-11 11:43:38
## 9075     2.5 1144756299 2006-04-11 11:51:39
## 9076     1.5 1144756051 2006-04-11 11:47:31
## 9077     0.5 1144756048 2006-04-11 11:47:28
## 9078     1.5 1144755842 2006-04-11 11:44:02
## 9079     4.0 1144756272 2006-04-11 11:51:12
## 9080     4.5 1144756044 2006-04-11 11:47:24
## 9081     4.5 1144756394 2006-04-11 11:53:14
## 9082     5.0 1144756037 2006-04-11 11:47:17
## 9083     0.5 1144756031 2006-04-11 11:47:11
## 9084     3.5 1144756028 2006-04-11 11:47:08
## 9085     3.5 1144756398 2006-04-11 11:53:18
## 9086     4.5 1144756414 2006-04-11 11:53:34
## 9087     5.0 1144756328 2006-04-11 11:52:08
## 9088     5.0 1144756296 2006-04-11 11:51:36
## 9089     4.0 1144755799 2006-04-11 11:43:19
## 9090     1.5 1144755833 2006-04-11 11:43:53
## 9091     4.0 1144756017 2006-04-11 11:46:57
## 9092     5.0 1144756384 2006-04-11 11:53:04
## 9093     3.5 1144756013 2006-04-11 11:46:53
## 9094     3.5 1144755855 2006-04-11 11:44:15
## 9095     5.0 1144755814 2006-04-11 11:43:34
## 9096     0.5 1144755869 2006-04-11 11:44:29
## 9097     4.0 1144756209 2006-04-11 11:50:09
## 9098     1.5 1144756203 2006-04-11 11:50:03
## 9099     3.0 1144755873 2006-04-11 11:44:33
## 9100     3.5 1144755823 2006-04-11 11:43:43
## 9101     2.5 1144756199 2006-04-11 11:49:59
## 9102     1.5 1144756004 2006-04-11 11:46:44
## 9103     1.0 1144756192 2006-04-11 11:49:52
## 9104     0.5 1144756188 2006-04-11 11:49:48
## 9105     4.0 1144756184 2006-04-11 11:49:44
## 9106     0.5 1144756181 2006-04-11 11:49:41
## 9107     3.5 1144756178 2006-04-11 11:49:38
## 9108     3.5 1144756175 2006-04-11 11:49:35
## 9109     4.0 1144756386 2006-04-11 11:53:06
## 9110     3.5 1144755999 2006-04-11 11:46:39
## 9111     0.5 1144756164 2006-04-11 11:49:24
## 9112     2.0 1144756161 2006-04-11 11:49:21
## 9113     4.0 1144756157 2006-04-11 11:49:17
## 9114     1.0 1144756153 2006-04-11 11:49:13
## 9115     1.5 1144756141 2006-04-11 11:49:01
## 9116     1.5 1144755852 2006-04-11 11:44:12
## 9117     4.0 1144756137 2006-04-11 11:48:57
## 9118     2.0 1144755809 2006-04-11 11:43:29
## 9119     1.5 1144756134 2006-04-11 11:48:54
## 9120     3.0 1144756128 2006-04-11 11:48:48
## 9121     4.0 1144755992 2006-04-11 11:46:32
## 9122     4.0 1144755805 2006-04-11 11:43:25
## 9123     1.5 1144755795 2006-04-11 11:43:15
## 9124     4.0 1144756119 2006-04-11 11:48:39
## 9125     4.0 1144756116 2006-04-11 11:48:36
## 9126     1.0 1144756112 2006-04-11 11:48:32
## 9127     4.0 1144756109 2006-04-11 11:48:29
## 9128     3.5 1144756106 2006-04-11 11:48:26
## 9129     0.5 1144756094 2006-04-11 11:48:14
## 9130     1.5 1144755866 2006-04-11 11:44:26
## 9131     4.5 1144755863 2006-04-11 11:44:23
## 9132     3.5 1144756101 2006-04-11 11:48:21
## 9133     3.0 1144756087 2006-04-11 11:48:07
## 9134     5.0 1144756362 2006-04-11 11:52:42
## 9135     5.0 1144756343 2006-04-11 11:52:23
## 9136     4.0 1144756281 2006-04-11 11:51:21
## 9137     5.0 1144756348 2006-04-11 11:52:28
## 9138     4.0 1144756082 2006-04-11 11:48:02
## 9139     5.0 1144756336 2006-04-11 11:52:16
## 9140     3.5 1144756276 2006-04-11 11:51:16
## 9141     2.0 1144756332 2006-04-11 11:52:12
## 9142     4.0 1144756402 2006-04-11 11:53:22
## 9143     4.5 1125828814 2005-09-04 10:13:34
## 9144     3.0 1125829035 2005-09-04 10:17:15
## 9145     4.5 1125829229 2005-09-04 10:20:29
## 9146     4.0 1125828888 2005-09-04 10:14:48
## 9147     3.5 1125828860 2005-09-04 10:14:20
## 9148     5.0 1125829070 2005-09-04 10:17:50
## 9149     4.0 1125828890 2005-09-04 10:14:50
## 9150     5.0 1125829154 2005-09-04 10:19:14
## 9151     4.0 1125829157 2005-09-04 10:19:17
## 9152     2.5 1125828818 2005-09-04 10:13:38
## 9153     4.0 1125829203 2005-09-04 10:20:03
## 9154     3.5 1125829207 2005-09-04 10:20:07
## 9155     5.0 1125829174 2005-09-04 10:19:34
## 9156     4.5 1125828831 2005-09-04 10:13:51
## 9157     4.0 1125828893 2005-09-04 10:14:53
## 9158     4.5 1125829194 2005-09-04 10:19:54
## 9159     4.0 1125829215 2005-09-04 10:20:15
## 9160     4.5 1125829161 2005-09-04 10:19:21
## 9161     5.0 1125829152 2005-09-04 10:19:12
## 9162     1.5 1125828900 2005-09-04 10:15:00
## 9163     2.5 1125828872 2005-09-04 10:14:32
## 9164     5.0 1125828865 2005-09-04 10:14:25
## 9165     4.5 1125829038 2005-09-04 10:17:18
## 9166     5.0 1125829088 2005-09-04 10:18:08
## 9167     4.0 1125828843 2005-09-04 10:14:03
## 9168     3.5 1125828850 2005-09-04 10:14:10
## 9169     4.0 1125828802 2005-09-04 10:13:22
## 9170     5.0 1125829168 2005-09-04 10:19:28
## 9171     4.0 1125828876 2005-09-04 10:14:36
## 9172     4.5 1125828811 2005-09-04 10:13:31
## 9173     4.0 1125828806 2005-09-04 10:13:26
## 9174     3.5 1125829108 2005-09-04 10:18:28
## 9175     3.5 1125829131 2005-09-04 10:18:51
## 9176     4.0 1125829115 2005-09-04 10:18:35
## 9177     3.0 1125829042 2005-09-04 10:17:22
## 9178     5.0 1125829144 2005-09-04 10:19:04
## 9179     4.5 1125829233 2005-09-04 10:20:33
## 9180     5.0 1125828895 2005-09-04 10:14:55
## 9181     4.0 1125829190 2005-09-04 10:19:50
## 9182     5.0 1125829218 2005-09-04 10:20:18
## 9183     4.0 1125829124 2005-09-04 10:18:44
## 9184     3.0 1125828855 2005-09-04 10:14:15
## 9185     4.5 1125829077 2005-09-04 10:17:57
## 9186     5.0 1125829169 2005-09-04 10:19:29
## 9187     5.0 1125829184 2005-09-04 10:19:44
## 9188     4.5 1125829017 2005-09-04 10:16:57
## 9189     3.0 1125829047 2005-09-04 10:17:27
## 9190     5.0 1125829192 2005-09-04 10:19:52
## 9191     4.5 1125829007 2005-09-04 10:16:47
## 9192     5.0 1125829249 2005-09-04 10:20:49
## 9193     5.0 1125829091 2005-09-04 10:18:11
## 9194     4.5 1125829180 2005-09-04 10:19:40
## 9195     3.0 1125828995 2005-09-04 10:16:35
## 9196     5.0 1125829225 2005-09-04 10:20:25
## 9197     5.0 1125829142 2005-09-04 10:19:02
## 9198     3.5 1216051639 2008-07-14 16:07:19
## 9199     2.0 1216050806 2008-07-14 15:53:26
## 9200     2.5 1216052245 2008-07-14 16:17:25
## 9201     5.0 1216050620 2008-07-14 15:50:20
## 9202     4.0 1216051937 2008-07-14 16:12:17
## 9203     1.5 1216486613 2008-07-19 16:56:53
## 9204     4.0 1216050783 2008-07-14 15:53:03
## 9205     3.5 1216052001 2008-07-14 16:13:21
## 9206     3.5 1216050872 2008-07-14 15:54:32
## 9207     4.0 1216050755 2008-07-14 15:52:35
## 9208     1.5 1216052048 2008-07-14 16:14:08
## 9209     3.5 1216487185 2008-07-19 17:06:25
## 9210     3.0 1216050910 2008-07-14 15:55:10
## 9211     5.0 1216050728 2008-07-14 15:52:08
## 9212     3.0 1216050688 2008-07-14 15:51:28
## 9213     5.0 1216050426 2008-07-14 15:47:06
## 9214     3.0 1217176111 2008-07-27 16:28:31
## 9215     3.5 1216051901 2008-07-14 16:11:41
## 9216     2.5 1216050607 2008-07-14 15:50:07
## 9217     2.0 1216486577 2008-07-19 16:56:17
## 9218     1.5 1216050050 2008-07-14 15:40:50
## 9219     2.5 1216487081 2008-07-19 17:04:41
## 9220     2.0 1216487462 2008-07-19 17:11:02
## 9221     2.5 1216050212 2008-07-14 15:43:32
## 9222     3.0 1216050981 2008-07-14 15:56:21
## 9223     3.5 1216052355 2008-07-14 16:19:15
## 9224     3.0 1216050143 2008-07-14 15:42:23
## 9225     3.0 1216487383 2008-07-19 17:09:43
## 9226     3.5 1216052159 2008-07-14 16:15:59
## 9227     2.5 1216487645 2008-07-19 17:14:05
## 9228     4.0 1216052131 2008-07-14 16:15:31
## 9229     3.0 1216486917 2008-07-19 17:01:57
## 9230     2.0 1216050704 2008-07-14 15:51:44
## 9231     3.5 1216050633 2008-07-14 15:50:33
## 9232     5.0 1216050881 2008-07-14 15:54:41
## 9233     5.0 1216050615 2008-07-14 15:50:15
## 9234     2.5 1217176086 2008-07-27 16:28:06
## 9235     3.5 1216051628 2008-07-14 16:07:08
## 9236     2.5 1216487574 2008-07-19 17:12:54
## 9237     3.5 1216051765 2008-07-14 16:09:25
## 9238     4.5 1216051684 2008-07-14 16:08:04
## 9239     3.5 1216050812 2008-07-14 15:53:32
## 9240     2.0 1216052066 2008-07-14 16:14:26
## 9241     4.0 1216487286 2008-07-19 17:08:06
## 9242     2.0 1216051712 2008-07-14 16:08:32
## 9243     5.0 1216050874 2008-07-14 15:54:34
## 9244     2.5 1216487345 2008-07-19 17:09:05
## 9245     2.5 1216051756 2008-07-14 16:09:16
## 9246     1.5 1216050040 2008-07-14 15:40:40
## 9247     2.5 1216052376 2008-07-14 16:19:36
## 9248     3.5 1216051647 2008-07-14 16:07:27
## 9249     2.5 1216487259 2008-07-19 17:07:39
## 9250     3.0 1216487390 2008-07-19 17:09:50
## 9251     2.5 1216050185 2008-07-14 15:43:05
## 9252     3.0 1216486970 2008-07-19 17:02:50
## 9253     2.0 1216486558 2008-07-19 16:55:58
## 9254     2.0 1216050841 2008-07-14 15:54:01
## 9255     3.0 1216486754 2008-07-19 16:59:14
## 9256     5.0 1216487561 2008-07-19 17:12:41
## 9257     3.5 1216050771 2008-07-14 15:52:51
## 9258     2.0 1216050083 2008-07-14 15:41:23
## 9259     5.0 1216050948 2008-07-14 15:55:48
## 9260     4.0 1216050434 2008-07-14 15:47:14
## 9261     4.0 1216486568 2008-07-19 16:56:08
## 9262     3.0 1216050558 2008-07-14 15:49:18
## 9263     3.0 1216487170 2008-07-19 17:06:10
## 9264     1.0 1216052021 2008-07-14 16:13:41
## 9265     4.0 1217175852 2008-07-27 16:24:12
## 9266     4.5 1216050942 2008-07-14 15:55:42
## 9267     3.0 1216487450 2008-07-19 17:10:50
## 9268     1.0 1216050711 2008-07-14 15:51:51
## 9269     2.5 1216050152 2008-07-14 15:42:32
## 9270     1.5 1216050859 2008-07-14 15:54:19
## 9271     3.0 1216487130 2008-07-19 17:05:30
## 9272     1.5 1216487195 2008-07-19 17:06:35
## 9273     2.5 1217175695 2008-07-27 16:21:35
## 9274     3.5 1217175825 2008-07-27 16:23:45
## 9275     3.5 1216051015 2008-07-14 15:56:55
## 9276     3.5 1216050580 2008-07-14 15:49:40
## 9277     5.0 1216050173 2008-07-14 15:42:53
## 9278     2.5 1216486820 2008-07-19 17:00:20
## 9279     3.0 1216050489 2008-07-14 15:48:09
## 9280     3.5 1216487437 2008-07-19 17:10:37
## 9281     3.0 1216050661 2008-07-14 15:51:01
## 9282     5.0 1217175635 2008-07-27 16:20:35
## 9283     3.5 1216051026 2008-07-14 15:57:06
## 9284     4.5 1216050540 2008-07-14 15:49:00
## 9285     1.0 1216487083 2008-07-19 17:04:43
## 9286     3.5 1217175814 2008-07-27 16:23:34
## 9287     3.0 1216051664 2008-07-14 16:07:44
## 9288     1.5 1216052029 2008-07-14 16:13:49
## 9289     5.0 1216051166 2008-07-14 15:59:26
## 9290     3.5 1216050163 2008-07-14 15:42:43
## 9291     3.0 1216050722 2008-07-14 15:52:02
## 9292     5.0 1216050467 2008-07-14 15:47:47
## 9293     5.0 1217175952 2008-07-27 16:25:52
## 9294     2.5 1217175803 2008-07-27 16:23:23
## 9295     5.0 1217175973 2008-07-27 16:26:13
## 9296     3.5 1216051752 2008-07-14 16:09:12
## 9297     3.0 1216050500 2008-07-14 15:48:20
## 9298     1.5 1216050627 2008-07-14 15:50:27
## 9299     2.5 1216050335 2008-07-14 15:45:35
## 9300     4.5 1216051105 2008-07-14 15:58:25
## 9301     3.0 1216486831 2008-07-19 17:00:31
## 9302     4.0 1216487292 2008-07-19 17:08:12
## 9303     5.0 1216050411 2008-07-14 15:46:51
## 9304     2.0 1216050274 2008-07-14 15:44:34
## 9305     4.0 1216487206 2008-07-19 17:06:46
## 9306     2.0 1216050747 2008-07-14 15:52:27
## 9307     2.5 1217175562 2008-07-27 16:19:22
## 9308     0.5 1216052075 2008-07-14 16:14:35
## 9309     3.0 1217175793 2008-07-27 16:23:13
## 9310     3.5 1216486608 2008-07-19 16:56:48
## 9311     4.0 1216050419 2008-07-14 15:46:59
## 9312     2.5 1217176199 2008-07-27 16:29:59
## 9313     5.0 1216050266 2008-07-14 15:44:26
## 9314     3.5 1216487236 2008-07-19 17:07:16
## 9315     1.5 1216051039 2008-07-14 15:57:19
## 9316     2.0 1216052080 2008-07-14 16:14:40
## 9317     2.5 1216487374 2008-07-19 17:09:34
## 9318     2.0 1217176162 2008-07-27 16:29:22
## 9319     4.0 1216051779 2008-07-14 16:09:39
## 9320     5.0 1216050438 2008-07-14 15:47:18
## 9321     2.5 1216487036 2008-07-19 17:03:56
## 9322     4.0 1216051096 2008-07-14 15:58:16
## 9323     3.0 1216487165 2008-07-19 17:06:05
## 9324     4.0 1216050749 2008-07-14 15:52:29
## 9325     2.5 1216051161 2008-07-14 15:59:21
## 9326     5.0 1216050506 2008-07-14 15:48:26
## 9327     4.5 1216051092 2008-07-14 15:58:12
## 9328     1.0 1216050246 2008-07-14 15:44:06
## 9329     2.5 1216052363 2008-07-14 16:19:23
## 9330     4.0 1216486888 2008-07-19 17:01:28
## 9331     3.5 1216051047 2008-07-14 15:57:27
## 9332     5.0 1216050780 2008-07-14 15:53:00
## 9333     4.0 1216487176 2008-07-19 17:06:16
## 9334     4.0 1216487276 2008-07-19 17:07:56
## 9335     3.5 1216051666 2008-07-14 16:07:46
## 9336     2.5 1216051984 2008-07-14 16:13:04
## 9337     4.5 1216050612 2008-07-14 15:50:12
## 9338     5.0 1216050831 2008-07-14 15:53:51
## 9339     4.0 1216050762 2008-07-14 15:52:42
## 9340     4.5 1216051143 2008-07-14 15:59:03
## 9341     3.0 1216487179 2008-07-19 17:06:19
## 9342     1.0 1216051188 2008-07-14 15:59:48
## 9343     4.0 1216052121 2008-07-14 16:15:21
## 9344     2.5 1216050332 2008-07-14 15:45:32
## 9345     5.0 1216051618 2008-07-14 16:06:58
## 9346     2.5 1216051008 2008-07-14 15:56:48
## 9347     2.5 1216050692 2008-07-14 15:51:32
## 9348     4.0 1216051650 2008-07-14 16:07:30
## 9349     2.5 1217424458 2008-07-30 13:27:38
## 9350     3.5 1216050821 2008-07-14 15:53:41
## 9351     4.0 1216486738 2008-07-19 16:58:58
## 9352     4.5 1216050758 2008-07-14 15:52:38
## 9353     4.5 1216050547 2008-07-14 15:49:07
## 9354     3.0 1216052146 2008-07-14 16:15:46
## 9355     2.5 1217175527 2008-07-27 16:18:47
## 9356     4.5 1216487366 2008-07-19 17:09:26
## 9357     3.0 1216487091 2008-07-19 17:04:51
## 9358     5.0 1216487357 2008-07-19 17:09:17
## 9359     5.0 1216487144 2008-07-19 17:05:44
## 9360     4.0 1216050264 2008-07-14 15:44:24
## 9361     5.0 1216487413 2008-07-19 17:10:13
## 9362     3.0 1216486663 2008-07-19 16:57:43
## 9363     4.0 1216487141 2008-07-19 17:05:41
## 9364     4.0 1451708754 2016-01-02 04:25:54
## 9365     4.0 1451176940 2015-12-27 00:42:20
## 9366     3.5 1451359418 2015-12-29 03:23:38
## 9367     5.0 1451176947 2015-12-27 00:42:27
## 9368     4.0 1451359247 2015-12-29 03:20:47
## 9369     4.5 1451359277 2015-12-29 03:21:17
## 9370     4.5 1451359280 2015-12-29 03:21:20
## 9371     4.5 1470457528 2016-08-06 04:25:28
## 9372     5.0 1451359348 2015-12-29 03:22:28
## 9373     4.0 1451359336 2015-12-29 03:22:16
## 9374     4.0 1449594307 2015-12-08 17:05:07
## 9375     4.0 1451708492 2016-01-02 04:21:32
## 9376     4.5 1449594323 2015-12-08 17:05:23
## 9377     4.0 1453318174 2016-01-20 19:29:34
## 9378     3.5 1452916989 2016-01-16 04:03:09
## 9379     4.0 1449594346 2015-12-08 17:05:46
## 9380     5.0 1475948734 2016-10-08 17:45:34
## 9381     4.5 1451708722 2016-01-02 04:25:22
## 9382     4.5 1451708228 2016-01-02 04:17:08
## 9383     3.5 1451707886 2016-01-02 04:11:26
## 9384     4.0 1451708064 2016-01-02 04:14:24
## 9385     4.0 1451708831 2016-01-02 04:27:11
## 9386     5.0 1451708501 2016-01-02 04:21:41
## 9387     4.0 1451713153 2016-01-02 05:39:13
## 9388     4.0 1451707852 2016-01-02 04:10:52
## 9389     3.0 1451708608 2016-01-02 04:23:28
## 9390     3.0 1451708709 2016-01-02 04:25:09
## 9391     4.0 1451708035 2016-01-02 04:13:55
## 9392     3.5 1451708254 2016-01-02 04:17:34
## 9393     3.5 1451712467 2016-01-02 05:27:47
## 9394     4.0 1451708272 2016-01-02 04:17:52
## 9395     5.0 1451178637 2015-12-27 01:10:37
## 9396     4.0 1451708082 2016-01-02 04:14:42
## 9397     4.5 1451707972 2016-01-02 04:12:52
## 9398     4.0 1451708365 2016-01-02 04:19:25
## 9399     4.5 1451708125 2016-01-02 04:15:25
## 9400     4.0 1451708157 2016-01-02 04:15:57
## 9401     3.0 1451706920 2016-01-02 03:55:20
## 9402     4.0 1451708301 2016-01-02 04:18:21
## 9403     4.0 1451708010 2016-01-02 04:13:30
## 9404     3.0 1451178678 2015-12-27 01:11:18
## 9405     3.0 1451406848 2015-12-29 16:34:08
## 9406     3.5 1451706930 2016-01-02 03:55:30
## 9407     4.0 1449594073 2015-12-08 17:01:13
## 9408     4.5 1465526836 2016-06-10 02:47:16
## 9409     1.5 1465535480 2016-06-10 05:11:20
## 9410     5.0 1448760334 2015-11-29 01:25:34
## 9411     3.5 1453472303 2016-01-22 14:18:23
## 9412     5.0 1451407005 2015-12-29 16:36:45
## 9413     5.0 1455413632 2016-02-14 01:33:52
## 9414     4.5 1451368688 2015-12-29 05:58:08
## 9415     4.0 1465279438 2016-06-07 06:03:58
## 9416     4.0 1470457197 2016-08-06 04:19:57
## 9417     5.0 1079098216 2004-03-12 13:30:16
## 9418     3.5 1079098249 2004-03-12 13:30:49
## 9419     5.0 1075307025 2004-01-28 16:23:45
## 9420     0.5 1075307034 2004-01-28 16:23:54
## 9421     3.0 1075307039 2004-01-28 16:23:59
## 9422     4.0 1079098211 2004-03-12 13:30:11
## 9423     0.5 1075307036 2004-01-28 16:23:56
## 9424     0.5 1075307056 2004-01-28 16:24:16
## 9425     5.0 1078570677 2004-03-06 10:57:57
## 9426     1.0 1075307064 2004-01-28 16:24:24
## 9427     5.0 1079098244 2004-03-12 13:30:44
## 9428     3.5 1079098188 2004-03-12 13:29:48
## 9429     4.0 1075307028 2004-01-28 16:23:48
## 9430     3.0 1078570670 2004-03-06 10:57:50
## 9431     4.5 1078570695 2004-03-06 10:58:15
## 9432     1.0 1075307062 2004-01-28 16:24:22
## 9433     3.0 1079098254 2004-03-12 13:30:54
## 9434     5.0 1079098217 2004-03-12 13:30:17
## 9435     4.5 1079098263 2004-03-12 13:31:03
## 9436     4.0 1076323993 2004-02-09 10:53:13
## 9437     2.5 1075307060 2004-01-28 16:24:20
## 9438     1.5 1076324016 2004-02-09 10:53:36
## 9439     4.0 1076324042 2004-02-09 10:54:02
## 9440     4.5 1075307058 2004-01-28 16:24:18
## 9441     0.5 1076324074 2004-02-09 10:54:34
## 9442     5.0 1076324053 2004-02-09 10:54:13
## 9443     5.0 1079098242 2004-03-12 13:30:42
## 9444     5.0 1076324064 2004-02-09 10:54:24
## 9445     5.0 1079098258 2004-03-12 13:30:58
## 9446     1.5 1075307020 2004-01-28 16:23:40
## 9447     1.0 1075307065 2004-01-28 16:24:25
## 9448     5.0 1076324068 2004-02-09 10:54:28
## 9449     4.0 1075307023 2004-01-28 16:23:43
## 9450     2.0 1079098251 2004-03-12 13:30:51
## 9451     5.0 1076324056 2004-02-09 10:54:16
## 9452     3.0 1076324009 2004-02-09 10:53:29
## 9453     4.0 1075307043 2004-01-28 16:24:03
## 9454     3.5 1079098265 2004-03-12 13:31:05
## 9455     4.5 1079098267 2004-03-12 13:31:07
## 9456     1.0 1076324059 2004-02-09 10:54:19
## 9457     1.0 1076324000 2004-02-09 10:53:20
## 9458     4.0 1075307052 2004-01-28 16:24:12
## 9459     4.0 1078570732 2004-03-06 10:58:52
## 9460     4.5 1079098253 2004-03-12 13:30:53
## 9461     5.0 1078570730 2004-03-06 10:58:50
## 9462     3.0 1078570723 2004-03-06 10:58:43
## 9463     4.0 1075307050 2004-01-28 16:24:10
## 9464     4.5 1078570736 2004-03-06 10:58:56
## 9465     3.5 1078570725 2004-03-06 10:58:45
## 9466     4.5 1079098304 2004-03-12 13:31:44
## 9467     4.5 1079098294 2004-03-12 13:31:34
## 9468     2.5 1079098501 2004-03-12 13:35:01
## 9469     1.0 1078570715 2004-03-06 10:58:35
## 9470     4.0 1078570718 2004-03-06 10:58:38
## 9471     2.0 1078570716 2004-03-06 10:58:36
## 9472     4.5 1079098301 2004-03-12 13:31:41
## 9473     4.5 1076324071 2004-02-09 10:54:31
## 9474     4.5 1079098213 2004-03-12 13:30:13
## 9475     4.5 1078570740 2004-03-06 10:59:00
## 9476     4.0 1078570655 2004-03-06 10:57:35
## 9477     4.0 1079098201 2004-03-12 13:30:01
## 9478     3.0 1079098192 2004-03-12 13:29:52
## 9479     4.0 1079098199 2004-03-12 13:29:59
## 9480     5.0 1078570652 2004-03-06 10:57:32
## 9481     5.0 1080482377 2004-03-28 13:59:37
## 9482     5.0 1079098203 2004-03-12 13:30:03
## 9483     4.5 1075307030 2004-01-28 16:23:50
## 9484     4.5 1079098190 2004-03-12 13:29:50
## 9485     4.0 1078570675 2004-03-06 10:57:55
## 9486     5.0 1078570660 2004-03-06 10:57:40
## 9487     5.0 1079098196 2004-03-12 13:29:56
## 9488     4.0 1079098289 2004-03-12 13:31:29
## 9489     2.0 1078570684 2004-03-06 10:58:04
## 9490     4.0 1078570650 2004-03-06 10:57:30
## 9491     5.0 1078570661 2004-03-06 10:57:41
## 9492     5.0 1079098194 2004-03-12 13:29:54
## 9493     2.0 1078570672 2004-03-06 10:57:52
## 9494     4.5 1078570681 2004-03-06 10:58:01
## 9495     4.5 1076324022 2004-02-09 10:53:42
## 9496     4.5 1079098275 2004-03-12 13:31:15
## 9497     4.0 1078570666 2004-03-06 10:57:46
## 9498     4.0 1075307054 2004-01-28 16:24:14
## 9499     2.5 1079098205 2004-03-12 13:30:05
## 9500     5.0 1078570680 2004-03-06 10:58:00
## 9501     4.0 1079098272 2004-03-12 13:31:12
## 9502     4.5 1079098286 2004-03-12 13:31:26
## 9503     4.0 1079098273 2004-03-12 13:31:13
## 9504     5.0 1076324027 2004-02-09 10:53:47
## 9505     5.0 1079098495 2004-03-12 13:34:55
## 9506     5.0 1079098282 2004-03-12 13:31:22
## 9507     5.0 1076324012 2004-02-09 10:53:32
## 9508     5.0 1079098246 2004-03-12 13:30:46
## 9509     2.5 1076324031 2004-02-09 10:53:51
## 9510     5.0 1079098406 2004-03-12 13:33:26
## 9511     4.0 1079098400 2004-03-12 13:33:20
## 9512     5.0 1076324157 2004-02-09 10:55:57
## 9513     3.5 1079098342 2004-03-12 13:32:22
## 9514     4.0  843159967 1996-09-19 19:06:07
## 9515     3.0  843159644 1996-09-19 19:00:44
## 9516     5.0  843159716 1996-09-19 19:01:56
## 9517     3.0  843159716 1996-09-19 19:01:56
## 9518     3.0  843159967 1996-09-19 19:06:07
## 9519     3.0  843159770 1996-09-19 19:02:50
## 9520     5.0  843159967 1996-09-19 19:06:07
## 9521     5.0  843159967 1996-09-19 19:06:07
## 9522     5.0  843159644 1996-09-19 19:00:44
## 9523     5.0  843159871 1996-09-19 19:04:31
## 9524     4.0  843159770 1996-09-19 19:02:50
## 9525     2.0  843159716 1996-09-19 19:01:56
## 9526     4.0  843159716 1996-09-19 19:01:56
## 9527     4.0  843159871 1996-09-19 19:04:31
## 9528     4.0  843159645 1996-09-19 19:00:45
## 9529     4.0  843159871 1996-09-19 19:04:31
## 9530     4.0  843159770 1996-09-19 19:02:50
## 9531     5.0  843159644 1996-09-19 19:00:44
## 9532     4.0  843159644 1996-09-19 19:00:44
## 9533     5.0  843159770 1996-09-19 19:02:50
## 9534     3.0  843159967 1996-09-19 19:06:07
## 9535     4.0  945118587 1999-12-13 20:56:27
## 9536     5.0  945149894 1999-12-14 05:38:14
## 9537     5.0  945150424 1999-12-14 05:47:04
## 9538     2.0  945118660 1999-12-13 20:57:40
## 9539     4.0  945150571 1999-12-14 05:49:31
## 9540     5.0  945150514 1999-12-14 05:48:34
## 9541     5.0  945150514 1999-12-14 05:48:34
## 9542     5.0  945150037 1999-12-14 05:40:37
## 9543     2.0  945118792 1999-12-13 20:59:52
## 9544     4.0  945118614 1999-12-13 20:56:54
## 9545     5.0  945150175 1999-12-14 05:42:55
## 9546     2.0  945150351 1999-12-14 05:45:51
## 9547     4.0  945150351 1999-12-14 05:45:51
## 9548     3.0  945118543 1999-12-13 20:55:43
## 9549     5.0  945150424 1999-12-14 05:47:04
## 9550     3.0  945150278 1999-12-14 05:44:38
## 9551     5.0  945150473 1999-12-14 05:47:53
## 9552     5.0  945150037 1999-12-14 05:40:37
## 9553     4.0  945150395 1999-12-14 05:46:35
## 9554     4.0  945149894 1999-12-14 05:38:14
## 9555     3.0  945149834 1999-12-14 05:37:14
## 9556     5.0  945150395 1999-12-14 05:46:35
## 9557     4.0  945150395 1999-12-14 05:46:35
## 9558     5.0  945150351 1999-12-14 05:45:51
## 9559     4.0  945149894 1999-12-14 05:38:14
## 9560     5.0  945150011 1999-12-14 05:40:11
## 9561     5.0  945150351 1999-12-14 05:45:51
## 9562     4.0  974600703 2000-11-19 02:25:03
## 9563     2.0  974599486 2000-11-19 02:04:46
## 9564     2.0  974597659 2000-11-19 01:34:19
## 9565     4.0  974600526 2000-11-19 02:22:06
## 9566     5.0  974600461 2000-11-19 02:21:01
## 9567     4.0  974597735 2000-11-19 01:35:35
## 9568     4.0  974599725 2000-11-19 02:08:45
## 9569     4.0  974599773 2000-11-19 02:09:33
## 9570     5.0  974600656 2000-11-19 02:24:16
## 9571     5.0  974599725 2000-11-19 02:08:45
## 9572     4.0  974599725 2000-11-19 02:08:45
## 9573     4.0  974599074 2000-11-19 01:57:54
## 9574     4.0  974599923 2000-11-19 02:12:03
## 9575     5.0  974600461 2000-11-19 02:21:01
## 9576     4.0  974597684 2000-11-19 01:34:44
## 9577     5.0  974600526 2000-11-19 02:22:06
## 9578     4.0  974599834 2000-11-19 02:10:34
## 9579     4.0  974600198 2000-11-19 02:16:38
## 9580     4.0  974599434 2000-11-19 02:03:54
## 9581     4.0  974597627 2000-11-19 01:33:47
## 9582     5.0  974600461 2000-11-19 02:21:01
## 9583     3.0  974600108 2000-11-19 02:15:08
## 9584     5.0  974597659 2000-11-19 01:34:19
## 9585     5.0  974600108 2000-11-19 02:15:08
## 9586     4.0  974599773 2000-11-19 02:09:33
## 9587     4.0  974600108 2000-11-19 02:15:08
## 9588     3.0  974600728 2000-11-19 02:25:28
## 9589     3.0  974599861 2000-11-19 02:11:01
## 9590     3.0  974600572 2000-11-19 02:22:52
## 9591     4.0  974600012 2000-11-19 02:13:32
## 9592     2.0  974599543 2000-11-19 02:05:43
## 9593     5.0  974600600 2000-11-19 02:23:20
## 9594     5.0  974600491 2000-11-19 02:21:31
## 9595     4.0  974599923 2000-11-19 02:12:03
## 9596     5.0  974600198 2000-11-19 02:16:38
## 9597     5.0  974600526 2000-11-19 02:22:06
## 9598     4.0  974599074 2000-11-19 01:57:54
## 9599     3.0  974599434 2000-11-19 02:03:54
## 9600     3.0  974600144 2000-11-19 02:15:44
## 9601     2.0  974600286 2000-11-19 02:18:06
## 9602     3.0  974599773 2000-11-19 02:09:33
## 9603     4.0  974599597 2000-11-19 02:06:37
## 9604     4.0  974600366 2000-11-19 02:19:26
## 9605     5.0  974600526 2000-11-19 02:22:06
## 9606     4.0  974600198 2000-11-19 02:16:38
## 9607     3.0  974600703 2000-11-19 02:25:03
## 9608     5.0  974600656 2000-11-19 02:24:16
## 9609     5.0  974600626 2000-11-19 02:23:46
## 9610     3.0  974598446 2000-11-19 01:47:26
## 9611     3.0  854711770 1997-01-31 11:56:10
## 9612     5.0  854711804 1997-01-31 11:56:44
## 9613     3.0  854711916 1997-01-31 11:58:36
## 9614     4.0  854713177 1997-01-31 12:19:37
## 9615     4.0  854711772 1997-01-31 11:56:12
## 9616     4.0  854711941 1997-01-31 11:59:01
## 9617     5.0  854714394 1997-01-31 12:39:54
## 9618     5.0  854714246 1997-01-31 12:37:26
## 9619     3.0  854714498 1997-01-31 12:41:38
## 9620     4.0  854712006 1997-01-31 12:00:06
## 9621     4.0  854714394 1997-01-31 12:39:54
## 9622     3.0  854711772 1997-01-31 11:56:12
## 9623     5.0  854711958 1997-01-31 11:59:18
## 9624     3.0  854711958 1997-01-31 11:59:18
## 9625     3.0  854711941 1997-01-31 11:59:01
## 9626     1.0  854711771 1997-01-31 11:56:11
## 9627     3.0  854711830 1997-01-31 11:57:10
## 9628     3.0  854711884 1997-01-31 11:58:04
## 9629     5.0  854713313 1997-01-31 12:21:53
## 9630     3.0  854711804 1997-01-31 11:56:44
## 9631     1.0  854711771 1997-01-31 11:56:11
## 9632     5.0  854714367 1997-01-31 12:39:27
## 9633     4.0  854714394 1997-01-31 12:39:54
## 9634     3.0  854715870 1997-01-31 13:04:30
## 9635     4.0  854711862 1997-01-31 11:57:42
## 9636     5.0  854713313 1997-01-31 12:21:53
## 9637     3.0  854713176 1997-01-31 12:19:36
## 9638     5.0  854715905 1997-01-31 13:05:05
## 9639     4.0  854714200 1997-01-31 12:36:40
## 9640     5.0  854714227 1997-01-31 12:37:07
## 9641     5.0  854714471 1997-01-31 12:41:11
## 9642     5.0  854714367 1997-01-31 12:39:27
## 9643     4.0  854713176 1997-01-31 12:19:36
## 9644     4.0  854713245 1997-01-31 12:20:45
## 9645     3.0  854714394 1997-01-31 12:39:54
## 9646     5.0  854714282 1997-01-31 12:38:02
## 9647     5.0  854714201 1997-01-31 12:36:41
## 9648     3.0  854713245 1997-01-31 12:20:45
## 9649     5.0  854713313 1997-01-31 12:21:53
## 9650     4.0  854714201 1997-01-31 12:36:41
## 9651     3.0  854714421 1997-01-31 12:40:21
## 9652     5.0  854715906 1997-01-31 13:05:06
## 9653     4.0  854714498 1997-01-31 12:41:38
## 9654     1.0  854713245 1997-01-31 12:20:45
## 9655     5.0  854715906 1997-01-31 13:05:06
## 9656     3.0  854715869 1997-01-31 13:04:29
## 9657     4.0  854714302 1997-01-31 12:38:22
## 9658     5.0  854714283 1997-01-31 12:38:03
## 9659     4.0  854713245 1997-01-31 12:20:45
## 9660     2.0  854715870 1997-01-31 13:04:30
## 9661     5.0  854714498 1997-01-31 12:41:38
## 9662     2.0  854714246 1997-01-31 12:37:26
## 9663     4.0  854713245 1997-01-31 12:20:45
## 9664     3.0  854714439 1997-01-31 12:40:39
## 9665     5.0  854714227 1997-01-31 12:37:07
## 9666     5.0  854713313 1997-01-31 12:21:53
## 9667     4.0  854714315 1997-01-31 12:38:35
## 9668     4.0  854714246 1997-01-31 12:37:26
## 9669     5.0  854713245 1997-01-31 12:20:45
## 9670     5.0  854713177 1997-01-31 12:19:37
## 9671     3.0  854714302 1997-01-31 12:38:22
## 9672     5.0  854713177 1997-01-31 12:19:37
## 9673     4.0  854714282 1997-01-31 12:38:02
## 9674     4.0  854714201 1997-01-31 12:36:41
## 9675     4.0  854713176 1997-01-31 12:19:36
## 9676     3.0  854714282 1997-01-31 12:38:02
## 9677     4.0  854714470 1997-01-31 12:41:10
## 9678     5.0  854713175 1997-01-31 12:19:35
## 9679     3.0  854715905 1997-01-31 13:05:05
## 9680     5.0  854714246 1997-01-31 12:37:26
## 9681     4.0  854714421 1997-01-31 12:40:21
## 9682     5.0  854715870 1997-01-31 13:04:30
## 9683     3.0  854711916 1997-01-31 11:58:36
## 9684     4.0  854714367 1997-01-31 12:39:27
## 9685     4.0  854712026 1997-01-31 12:00:26
## 9686     4.0  854714201 1997-01-31 12:36:41
## 9687     3.0  854711862 1997-01-31 11:57:42
## 9688     3.0  854711941 1997-01-31 11:59:01
## 9689     3.0  854711862 1997-01-31 11:57:42
## 9690     3.0  854711771 1997-01-31 11:56:11
## 9691     5.0  854712060 1997-01-31 12:01:00
## 9692     3.0  854711830 1997-01-31 11:57:10
## 9693     3.0  854712785 1997-01-31 12:13:05
## 9694     3.0  854711978 1997-01-31 11:59:38
## 9695     4.0  854711916 1997-01-31 11:58:36
## 9696     3.0  854711830 1997-01-31 11:57:10
## 9697     4.0  854715869 1997-01-31 13:04:29
## 9698     3.0  854711916 1997-01-31 11:58:36
## 9699     1.0  854711884 1997-01-31 11:58:04
## 9700     3.0  854711916 1997-01-31 11:58:36
## 9701     4.0  854711804 1997-01-31 11:56:44
## 9702     4.0  854711770 1997-01-31 11:56:10
## 9703     2.0  854711884 1997-01-31 11:58:04
## 9704     4.0  854711770 1997-01-31 11:56:10
## 9705     3.0  854711830 1997-01-31 11:57:10
## 9706     3.0  854711830 1997-01-31 11:57:10
## 9707     3.0  854712006 1997-01-31 12:00:06
## 9708     3.0  854711916 1997-01-31 11:58:36
## 9709     4.0  854714367 1997-01-31 12:39:27
## 9710     3.0  854714227 1997-01-31 12:37:07
## 9711     4.0  854711804 1997-01-31 11:56:44
## 9712     4.0  854713313 1997-01-31 12:21:53
## 9713     5.0  854714302 1997-01-31 12:38:22
## 9714     4.0 1194741818 2007-11-11 00:43:38
## 9715     3.0 1249809905 2009-08-09 09:25:05
## 9716     3.5 1249808221 2009-08-09 08:57:01
## 9717     4.0 1194743603 2007-11-11 01:13:23
## 9718     3.0 1219476836 2008-08-23 07:33:56
## 9719     3.0 1249808197 2009-08-09 08:56:37
## 9720     4.0 1219476825 2008-08-23 07:33:45
## 9721     4.0 1194741632 2007-11-11 00:40:32
## 9722     3.0 1219477266 2008-08-23 07:41:06
## 9723     4.0 1194741556 2007-11-11 00:39:16
## 9724     4.0 1249807893 2009-08-09 08:51:33
## 9725     4.0 1219476842 2008-08-23 07:34:02
## 9726     3.0 1194740982 2007-11-11 00:29:42
## 9727     4.0 1219476819 2008-08-23 07:33:39
## 9728     4.0 1194741805 2007-11-11 00:43:25
## 9729     3.5 1194741627 2007-11-11 00:40:27
## 9730     3.5 1219477297 2008-08-23 07:41:37
## 9731     3.5 1194741800 2007-11-11 00:43:20
## 9732     3.5 1219477374 2008-08-23 07:42:54
## 9733     4.0 1194743787 2007-11-11 01:16:27
## 9734     3.5 1194741795 2007-11-11 00:43:15
## 9735     3.5 1194741615 2007-11-11 00:40:15
## 9736     3.0 1249809470 2009-08-09 09:17:50
## 9737     2.5 1249807905 2009-08-09 08:51:45
## 9738     3.5 1249809424 2009-08-09 09:17:04
## 9739     4.0 1202605433 2008-02-10 01:03:53
## 9740     4.0 1202605475 2008-02-10 01:04:35
## 9741     4.0 1249807876 2009-08-09 08:51:16
## 9742     4.0 1219474844 2008-08-23 07:00:44
## 9743     3.5 1194741164 2007-11-11 00:32:44
## 9744     3.5 1194741234 2007-11-11 00:33:54
## 9745     4.0 1194742690 2007-11-11 00:58:10
## 9746     4.0 1219474919 2008-08-23 07:01:59
## 9747     3.0 1194743811 2007-11-11 01:16:51
## 9748     4.0 1194742498 2007-11-11 00:54:58
## 9749     3.5 1194741096 2007-11-11 00:31:36
## 9750     4.5 1202605483 2008-02-10 01:04:43
## 9751     3.5 1194742491 2007-11-11 00:54:51
## 9752     4.0 1202605399 2008-02-10 01:03:19
## 9753     3.5 1194741774 2007-11-11 00:42:54
## 9754     4.0 1194740988 2007-11-11 00:29:48
## 9755     4.5 1194741536 2007-11-11 00:38:56
## 9756     4.0 1194742462 2007-11-11 00:54:22
## 9757     4.0 1202605808 2008-02-10 01:10:08
## 9758     4.5 1249807861 2009-08-09 08:51:01
## 9759     4.0 1194741068 2007-11-11 00:31:08
## 9760     4.5 1249808142 2009-08-09 08:55:42
## 9761     4.0 1249809645 2009-08-09 09:20:45
## 9762     4.0 1249807853 2009-08-09 08:50:53
## 9763     3.5 1194741082 2007-11-11 00:31:22
## 9764     4.0 1194743774 2007-11-11 01:16:14
## 9765     4.0 1194743647 2007-11-11 01:14:07
## 9766     3.0 1249809495 2009-08-09 09:18:15
## 9767     4.0 1194741764 2007-11-11 00:42:44
## 9768     4.0 1219474926 2008-08-23 07:02:06
## 9769     4.5 1219474934 2008-08-23 07:02:14
## 9770     4.0 1249808034 2009-08-09 08:53:54
## 9771     2.5 1194741124 2007-11-11 00:32:04
## 9772     3.5 1249808019 2009-08-09 08:53:39
## 9773     4.0 1249808396 2009-08-09 08:59:56
## 9774     3.5 1194741217 2007-11-11 00:33:37
## 9775     4.0 1219477365 2008-08-23 07:42:45
## 9776     3.5 1194741010 2007-11-11 00:30:10
## 9777     4.0 1194742454 2007-11-11 00:54:14
## 9778     3.5 1249808373 2009-08-09 08:59:33
## 9779     3.5 1194742620 2007-11-11 00:57:00
## 9780     3.5 1194742605 2007-11-11 00:56:45
## 9781     4.5 1249807840 2009-08-09 08:50:40
## 9782     1.0 1249809623 2009-08-09 09:20:23
## 9783     3.5 1194740954 2007-11-11 00:29:14
## 9784     1.5 1249808007 2009-08-09 08:53:27
## 9785     3.0 1249807997 2009-08-09 08:53:17
## 9786     4.5 1194741025 2007-11-11 00:30:25
## 9787     2.5 1194743883 2007-11-11 01:18:03
## 9788     4.0 1194741198 2007-11-11 00:33:18
## 9789     3.0 1194740965 2007-11-11 00:29:25
## 9790     4.0 1194741383 2007-11-11 00:36:23
## 9791     4.5 1194741735 2007-11-11 00:42:15
## 9792     3.5 1194741657 2007-11-11 00:40:57
## 9793     3.5 1194744286 2007-11-11 01:24:46
## 9794     3.5 1249809788 2009-08-09 09:23:08
## 9795     5.0 1194741498 2007-11-11 00:38:18
## 9796     4.0 1219474681 2008-08-23 06:58:01
## 9797     3.5 1249807965 2009-08-09 08:52:45
## 9798     3.5 1194744599 2007-11-11 01:29:59
## 9799     4.0 1194742561 2007-11-11 00:56:01
## 9800     3.5 1194741843 2007-11-11 00:44:03
## 9801     4.0 1249807951 2009-08-09 08:52:31
## 9802     5.0 1194741508 2007-11-11 00:38:28
## 9803     4.0 1194742532 2007-11-11 00:55:32
## 9804     1.5 1249807943 2009-08-09 08:52:23
## 9805     3.5 1194744481 2007-11-11 01:28:01
## 9806     3.5 1194744514 2007-11-11 01:28:34
## 9807     3.0 1249807928 2009-08-09 08:52:08
## 9808     3.0 1194741828 2007-11-11 00:43:48
## 9809     4.0 1202605771 2008-02-10 01:09:31
## 9810     3.5 1194744593 2007-11-11 01:29:53
## 9811     1.0 1194741643 2007-11-11 00:40:43
## 9812     3.5 1194741823 2007-11-11 00:43:43
## 9813     5.0 1194741503 2007-11-11 00:38:23
## 9814     3.0 1194741682 2007-11-11 00:41:22
## 9815     4.5 1194744465 2007-11-11 01:27:45
## 9816     3.0 1194742776 2007-11-11 00:59:36
## 9817     4.0 1249808534 2009-08-09 09:02:14
## 9818     4.0 1346824858 2012-09-05 06:00:58
## 9819     3.5 1249808268 2009-08-09 08:57:48
## 9820     4.0 1194742060 2007-11-11 00:47:40
## 9821     4.0 1194741870 2007-11-11 00:44:30
## 9822     3.5 1255153332 2009-10-10 05:42:12
## 9823     4.0 1194741909 2007-11-11 00:45:09
## 9824     2.5 1219474832 2008-08-23 07:00:32
## 9825     3.0 1194742092 2007-11-11 00:48:12
## 9826     3.0 1194742744 2007-11-11 00:59:04
## 9827     4.0 1292732192 2010-12-19 04:16:32
## 9828     3.5 1346824829 2012-09-05 06:00:29
## 9829     4.0 1194744606 2007-11-11 01:30:06
## 9830     2.5 1194741316 2007-11-11 00:35:16
## 9831     3.5 1194744575 2007-11-11 01:29:35
## 9832     3.5 1194744487 2007-11-11 01:28:07
## 9833     3.5 1249809801 2009-08-09 09:23:21
## 9834     3.5 1194744213 2007-11-11 01:23:33
## 9835     3.5 1202605564 2008-02-10 01:06:04
## 9836     4.5 1219474721 2008-08-23 06:58:41
## 9837     5.0 1366831110 2013-04-24 19:18:30
## 9838     3.5 1366831701 2013-04-24 19:28:21
## 9839     5.0 1366831985 2013-04-24 19:33:05
## 9840     4.0 1366831735 2013-04-24 19:28:55
## 9841     4.0 1366831572 2013-04-24 19:26:12
## 9842     4.5 1366831626 2013-04-24 19:27:06
## 9843     4.5 1366831972 2013-04-24 19:32:52
## 9844     4.0 1366831788 2013-04-24 19:29:48
## 9845     3.0 1366831962 2013-04-24 19:32:42
## 9846     4.0 1366831564 2013-04-24 19:26:04
## 9847     4.0 1348153664 2012-09-20 15:07:44
## 9848     3.5 1366831100 2013-04-24 19:18:20
## 9849     5.0 1366830848 2013-04-24 19:14:08
## 9850     4.0 1366831253 2013-04-24 19:20:53
## 9851     5.0 1366831102 2013-04-24 19:18:22
## 9852     5.0 1366831615 2013-04-24 19:26:55
## 9853     5.0 1366831266 2013-04-24 19:21:06
## 9854     3.5 1348153638 2012-09-20 15:07:18
## 9855     3.5 1366831784 2013-04-24 19:29:44
## 9856     3.5 1366831290 2013-04-24 19:21:30
## 9857     5.0 1366830854 2013-04-24 19:14:14
## 9858     4.5 1366831610 2013-04-24 19:26:50
## 9859     5.0 1366831598 2013-04-24 19:26:38
## 9860     4.0 1366831275 2013-04-24 19:21:15
## 9861     3.0 1366831955 2013-04-24 19:32:35
## 9862     4.5 1366831566 2013-04-24 19:26:06
## 9863     2.0 1366831769 2013-04-24 19:29:29
## 9864     4.5 1366831679 2013-04-24 19:27:59
## 9865     5.0 1348153757 2012-09-20 15:09:17
## 9866     4.5 1348153603 2012-09-20 15:06:43
## 9867     3.0 1366831950 2013-04-24 19:32:30
## 9868     4.5 1366831980 2013-04-24 19:33:00
## 9869     4.5 1366831595 2013-04-24 19:26:35
## 9870     5.0 1366830860 2013-04-24 19:14:20
## 9871     4.5 1366831588 2013-04-24 19:26:28
## 9872     5.0 1366831245 2013-04-24 19:20:45
## 9873     3.5 1348153569 2012-09-20 15:06:09
## 9874     5.0 1366831673 2013-04-24 19:27:53
## 9875     5.0 1366831619 2013-04-24 19:26:59
## 9876     4.5 1366831288 2013-04-24 19:21:28
## 9877     3.5 1366831929 2013-04-24 19:32:09
## 9878     4.5 1366831711 2013-04-24 19:28:31
## 9879     4.5 1366831778 2013-04-24 19:29:38
## 9880     4.5 1366831752 2013-04-24 19:29:12
## 9881     4.5 1366831268 2013-04-24 19:21:08
## 9882     2.5 1366831811 2013-04-24 19:30:11
## 9883     3.5 1348153818 2012-09-20 15:10:18
## 9884     1.0 1348153829 2012-09-20 15:10:29
## 9885     4.5 1348153964 2012-09-20 15:12:44
## 9886     4.5 1366831892 2013-04-24 19:31:32
## 9887     4.0 1366831968 2013-04-24 19:32:48
## 9888     4.5 1366831744 2013-04-24 19:29:04
## 9889     3.5 1348153794 2012-09-20 15:09:54
## 9890     4.0 1366831662 2013-04-24 19:27:42
## 9891     5.0 1366831695 2013-04-24 19:28:15
## 9892     4.5 1366831713 2013-04-24 19:28:33
## 9893     5.0 1366831681 2013-04-24 19:28:01
## 9894     4.5 1366832014 2013-04-24 19:33:34
## 9895     2.5 1348153841 2012-09-20 15:10:41
## 9896     4.0 1348153799 2012-09-20 15:09:59
## 9897     0.5 1348153863 2012-09-20 15:11:03
## 9898     3.5 1366831871 2013-04-24 19:31:11
## 9899     3.5 1366831839 2013-04-24 19:30:39
## 9900     3.5 1348153974 2012-09-20 15:12:54
## 9901     5.0 1366831576 2013-04-24 19:26:16
## 9902     3.5 1366831823 2013-04-24 19:30:23
## 9903     5.0 1366831687 2013-04-24 19:28:07
## 9904     4.5 1366831855 2013-04-24 19:30:55
## 9905     5.0 1366831289 2013-04-24 19:21:29
## 9906     4.0 1348153821 2012-09-20 15:10:21
## 9907     3.5 1366831708 2013-04-24 19:28:28
## 9908     4.5 1366831993 2013-04-24 19:33:13
## 9909     5.0 1366831574 2013-04-24 19:26:14
## 9910     5.0 1366831715 2013-04-24 19:28:35
## 9911     4.0 1366831670 2013-04-24 19:27:50
## 9912     5.0 1366831604 2013-04-24 19:26:44
## 9913     4.5 1366831756 2013-04-24 19:29:16
## 9914     4.0 1366831801 2013-04-24 19:30:01
## 9915     3.0 1348154058 2012-09-20 15:14:18
## 9916     4.5 1348155188 2012-09-20 15:33:08
## 9917     5.0 1348154113 2012-09-20 15:15:13
## 9918     5.0  853954235 1997-01-22 17:30:35
## 9919     5.0  853954323 1997-01-22 17:32:03
## 9920     5.0  853954323 1997-01-22 17:32:03
## 9921     3.0  853954323 1997-01-22 17:32:03
## 9922     3.0  853954486 1997-01-22 17:34:46
## 9923     3.0  853954577 1997-01-22 17:36:17
## 9924     3.0  853954402 1997-01-22 17:33:22
## 9925     4.0  853954235 1997-01-22 17:30:35
## 9926     5.0  853954235 1997-01-22 17:30:35
## 9927     5.0  853954729 1997-01-22 17:38:49
## 9928     4.0  853954234 1997-01-22 17:30:34
## 9929     4.0  853954322 1997-01-22 17:32:02
## 9930     4.0  853954401 1997-01-22 17:33:21
## 9931     5.0  853954401 1997-01-22 17:33:21
## 9932     4.0  853954813 1997-01-22 17:40:13
## 9933     5.0  853954235 1997-01-22 17:30:35
## 9934     4.0  853954893 1997-01-22 17:41:33
## 9935     3.0  853954577 1997-01-22 17:36:17
## 9936     4.0  853954729 1997-01-22 17:38:49
## 9937     4.0  853954485 1997-01-22 17:34:45
## 9938     4.0  853954893 1997-01-22 17:41:33
## 9939     4.0  853954893 1997-01-22 17:41:33
## 9940     4.0  853954813 1997-01-22 17:40:13
## 9941     3.0  853954814 1997-01-22 17:40:14
## 9942     5.0  853954814 1997-01-22 17:40:14
## 9943     5.0  853954235 1997-01-22 17:30:35
## 9944     4.0  853954577 1997-01-22 17:36:17
## 9945     3.0  853954401 1997-01-22 17:33:21
## 9946     5.0  853954577 1997-01-22 17:36:17
## 9947     5.0  853954323 1997-01-22 17:32:03
## 9948     4.0  853954485 1997-01-22 17:34:45
## 9949     5.0  853954235 1997-01-22 17:30:35
## 9950     4.0  853954323 1997-01-22 17:32:03
## 9951     3.0  853954323 1997-01-22 17:32:03
## 9952     5.0  853954322 1997-01-22 17:32:02
## 9953     5.0  853954656 1997-01-22 17:37:36
## 9954     5.0  853955020 1997-01-22 17:43:40
## 9955     5.0  853954485 1997-01-22 17:34:45
## 9956     5.0  853954656 1997-01-22 17:37:36
## 9957     3.0  853954485 1997-01-22 17:34:45
## 9958     3.0  853954656 1997-01-22 17:37:36
## 9959     3.0  853954235 1997-01-22 17:30:35
## 9960     5.0  853954402 1997-01-22 17:33:22
## 9961     5.0  853954485 1997-01-22 17:34:45
## 9962     3.0  853954814 1997-01-22 17:40:14
## 9963     5.0  853954729 1997-01-22 17:38:49
## 9964     3.0  853954729 1997-01-22 17:38:49
## 9965     3.0  853954814 1997-01-22 17:40:14
## 9966     5.0  853954893 1997-01-22 17:41:33
## 9967     4.0  853954893 1997-01-22 17:41:33
## 9968     5.0  853954656 1997-01-22 17:37:36
## 9969     5.0  853954401 1997-01-22 17:33:21
## 9970     4.0  853954656 1997-01-22 17:37:36
## 9971     4.0  853954577 1997-01-22 17:36:17
## 9972     3.0  853954577 1997-01-22 17:36:17
## 9973     5.0  853954323 1997-01-22 17:32:03
## 9974     4.0  853954235 1997-01-22 17:30:35
## 9975     3.0  853954485 1997-01-22 17:34:45
## 9976     3.0  853954577 1997-01-22 17:36:17
## 9977     4.0  853954813 1997-01-22 17:40:13
## 9978     3.0  853954729 1997-01-22 17:38:49
## 9979     3.0  853954656 1997-01-22 17:37:36
## 9980     4.0  853954485 1997-01-22 17:34:45
## 9981     4.0  853954234 1997-01-22 17:30:34
## 9982     3.0  853954402 1997-01-22 17:33:22
## 9983     5.0  853954893 1997-01-22 17:41:33
## 9984     5.0  853954401 1997-01-22 17:33:21
## 9985     5.0  853954401 1997-01-22 17:33:21
## 9986     4.0  853955020 1997-01-22 17:43:40
## 9987     5.0  853954577 1997-01-22 17:36:17
## 9988     5.0  853954577 1997-01-22 17:36:17
## 9989     3.0  853954814 1997-01-22 17:40:14
## 9990     5.0  853954656 1997-01-22 17:37:36
## 9991     5.0  853954813 1997-01-22 17:40:13
## 9992     5.0  853955020 1997-01-22 17:43:40
## 9993     5.0  853954656 1997-01-22 17:37:36
## 9994     4.0  853955020 1997-01-22 17:43:40
## 9995     4.0  853954893 1997-01-22 17:41:33
## 9996     5.0  853955020 1997-01-22 17:43:40
## 9997     5.0  853955020 1997-01-22 17:43:40
## 9998     5.0  853954401 1997-01-22 17:33:21
## 9999     5.0  853954485 1997-01-22 17:34:45
## 10000    5.0  853955020 1997-01-22 17:43:40
## 10001    4.0  974659023 2000-11-19 18:37:03
## 10002    3.0  974659502 2000-11-19 18:45:02
## 10003    5.0  974659502 2000-11-19 18:45:02
## 10004    5.0  974659646 2000-11-19 18:47:26
## 10005    4.0  974659502 2000-11-19 18:45:02
## 10006    5.0  974659502 2000-11-19 18:45:02
## 10007    5.0  974659023 2000-11-19 18:37:03
## 10008    4.0  974659502 2000-11-19 18:45:02
## 10009    4.0  974659023 2000-11-19 18:37:03
## 10010    5.0  974659408 2000-11-19 18:43:28
## 10011    4.0  974659023 2000-11-19 18:37:03
## 10012    4.0  974658951 2000-11-19 18:35:51
## 10013    5.0  974659408 2000-11-19 18:43:28
## 10014    3.0  974659023 2000-11-19 18:37:03
## 10015    4.0  974659502 2000-11-19 18:45:02
## 10016    4.0  974659408 2000-11-19 18:43:28
## 10017    5.0  974659502 2000-11-19 18:45:02
## 10018    5.0  974659646 2000-11-19 18:47:26
## 10019    4.0  974659408 2000-11-19 18:43:28
## 10020    4.0  974659593 2000-11-19 18:46:33
## 10021    3.0  974659408 2000-11-19 18:43:28
## 10022    4.0  974659696 2000-11-19 18:48:16
## 10023    5.0  974659408 2000-11-19 18:43:28
## 10024    3.5 1461778737 2016-04-27 17:38:57
## 10025    2.5 1461784724 2016-04-27 19:18:44
## 10026    3.5 1461784392 2016-04-27 19:13:12
## 10027    4.0 1461778528 2016-04-27 17:35:28
## 10028    3.5 1461784365 2016-04-27 19:12:45
## 10029    3.5 1461784569 2016-04-27 19:16:09
## 10030    3.0 1461778719 2016-04-27 17:38:39
## 10031    4.0 1461778730 2016-04-27 17:38:50
## 10032    4.0 1461778524 2016-04-27 17:35:24
## 10033    4.0 1461778698 2016-04-27 17:38:18
## 10034    3.0 1461778746 2016-04-27 17:39:06
## 10035    4.0 1461778534 2016-04-27 17:35:34
## 10036    4.0 1461784459 2016-04-27 19:14:19
## 10037    3.5 1461778557 2016-04-27 17:35:57
## 10038    4.0 1461784432 2016-04-27 19:13:52
## 10039    4.0 1461784481 2016-04-27 19:14:41
## 10040    4.5 1461778530 2016-04-27 17:35:30
## 10041    3.5 1461784591 2016-04-27 19:16:31
## 10042    4.0 1461784596 2016-04-27 19:16:36
## 10043    3.0 1461784428 2016-04-27 19:13:48
## 10044    3.0 1461778739 2016-04-27 17:38:59
## 10045    3.0 1461784475 2016-04-27 19:14:35
## 10046    4.0 1461784499 2016-04-27 19:14:59
## 10047    4.0 1461784671 2016-04-27 19:17:51
## 10048    4.0 1461778560 2016-04-27 17:36:00
## 10049    4.0 1461778537 2016-04-27 17:35:37
## 10050    4.0 1461784640 2016-04-27 19:17:20
## 10051    3.5 1461784644 2016-04-27 19:17:24
## 10052    4.0 1461784494 2016-04-27 19:14:54
## 10053    3.0 1461778751 2016-04-27 17:39:11
## 10054    3.5 1461784424 2016-04-27 19:13:44
## 10055    3.5 1461784642 2016-04-27 19:17:22
## 10056    2.5 1461778617 2016-04-27 17:36:57
## 10057    3.5 1461784345 2016-04-27 19:12:25
## 10058    4.0 1461784445 2016-04-27 19:14:05
## 10059    3.5 1461778611 2016-04-27 17:36:51
## 10060    3.5 1461778692 2016-04-27 17:38:12
## 10061    3.0 1461784613 2016-04-27 19:16:53
## 10062    3.5 1461784742 2016-04-27 19:19:02
## 10063    4.0 1461784405 2016-04-27 19:13:25
## 10064    4.0 1461784348 2016-04-27 19:12:28
## 10065    3.0 1461784637 2016-04-27 19:17:17
## 10066    4.0 1461778563 2016-04-27 17:36:03
## 10067    3.0 1461784599 2016-04-27 19:16:39
## 10068    3.0 1461778600 2016-04-27 17:36:40
## 10069    3.0 1461778760 2016-04-27 17:39:20
## 10070    1.5 1461784035 2016-04-27 19:07:15
## 10071    2.5 1461783967 2016-04-27 19:06:07
## 10072    3.0 1461783836 2016-04-27 19:03:56
## 10073    3.0 1461783926 2016-04-27 19:05:26
## 10074    3.5 1461784442 2016-04-27 19:14:02
## 10075    3.5 1461783857 2016-04-27 19:04:17
## 10076    3.5 1461783923 2016-04-27 19:05:23
## 10077    3.0 1461784071 2016-04-27 19:07:51
## 10078    4.0 1461783913 2016-04-27 19:05:13
## 10079    1.5 1461784048 2016-04-27 19:07:28
## 10080    3.5 1461783915 2016-04-27 19:05:15
## 10081    4.0 1461783834 2016-04-27 19:03:54
## 10082    2.5 1461783988 2016-04-27 19:06:28
## 10083    4.0 1461784652 2016-04-27 19:17:32
## 10084    3.0 1461784367 2016-04-27 19:12:47
## 10085    3.0 1461784065 2016-04-27 19:07:45
## 10086    3.5 1461784011 2016-04-27 19:06:51
## 10087    4.0 1461783905 2016-04-27 19:05:05
## 10088    3.0 1461783845 2016-04-27 19:04:05
## 10089    3.0 1461783869 2016-04-27 19:04:29
## 10090    3.5 1461783841 2016-04-27 19:04:01
## 10091    3.5 1461783980 2016-04-27 19:06:20
## 10092    3.0 1461778717 2016-04-27 17:38:37
## 10093    3.5 1461783881 2016-04-27 19:04:41
## 10094    2.5 1461783975 2016-04-27 19:06:15
## 10095    3.0 1461783872 2016-04-27 19:04:32
## 10096    3.0 1461784578 2016-04-27 19:16:18
## 10097    3.0 1461783889 2016-04-27 19:04:49
## 10098    3.5 1461783865 2016-04-27 19:04:25
## 10099    3.0 1461784050 2016-04-27 19:07:30
## 10100    2.5 1461784730 2016-04-27 19:18:50
## 10101    3.0 1461778734 2016-04-27 17:38:54
## 10102    3.5 1461783920 2016-04-27 19:05:20
## 10103    3.5 1461783992 2016-04-27 19:06:32
## 10104    2.5 1461784606 2016-04-27 19:16:46
## 10105    3.0 1461783846 2016-04-27 19:04:06
## 10106    3.5 1461783983 2016-04-27 19:06:23
## 10107    3.0 1461783838 2016-04-27 19:03:58
## 10108    4.0 1461784616 2016-04-27 19:16:56
## 10109    3.0 1461784038 2016-04-27 19:07:18
## 10110    3.5 1461783871 2016-04-27 19:04:31
## 10111    2.0 1461783970 2016-04-27 19:06:10
## 10112    3.0 1461784533 2016-04-27 19:15:33
## 10113    3.5 1461783960 2016-04-27 19:06:00
## 10114    3.0 1461778706 2016-04-27 17:38:26
## 10115    3.0 1461784490 2016-04-27 19:14:50
## 10116    3.5 1461783867 2016-04-27 19:04:27
## 10117    3.0 1461783898 2016-04-27 19:04:58
## 10118    2.5 1461784661 2016-04-27 19:17:41
## 10119    3.5 1461784505 2016-04-27 19:15:05
## 10120    3.0 1461784473 2016-04-27 19:14:33
## 10121    3.0 1461783972 2016-04-27 19:06:12
## 10122    3.5 1461784759 2016-04-27 19:19:19
## 10123    2.0 1461783887 2016-04-27 19:04:47
## 10124    3.0 1461784763 2016-04-27 19:19:23
## 10125    3.0 1461783896 2016-04-27 19:04:56
## 10126    3.5 1461784702 2016-04-27 19:18:22
## 10127    3.0 1461784573 2016-04-27 19:16:13
## 10128    3.5 1461784364 2016-04-27 19:12:44
## 10129    3.5 1461784711 2016-04-27 19:18:31
## 10130    2.5 1461784674 2016-04-27 19:17:54
## 10131    3.0 1461783948 2016-04-27 19:05:48
## 10132    3.0 1461784566 2016-04-27 19:16:06
## 10133    3.0 1461784585 2016-04-27 19:16:25
## 10134    3.5 1461783951 2016-04-27 19:05:51
## 10135    3.5 1461784370 2016-04-27 19:12:50
## 10136    3.0 1461783936 2016-04-27 19:05:36
## 10137    4.0 1464722870 2016-05-31 19:27:50
## 10138    3.0 1464722875 2016-05-31 19:27:55
## 10139    3.0 1464723963 2016-05-31 19:46:03
## 10140    3.0 1461783977 2016-04-27 19:06:17
## 10141    3.5 1464723975 2016-05-31 19:46:15
## 10142    1.5 1464722915 2016-05-31 19:28:35
## 10143    2.5 1464722908 2016-05-31 19:28:28
## 10144    3.5 1464723971 2016-05-31 19:46:11
## 10145    3.0 1464722892 2016-05-31 19:28:12
## 10146    2.5 1464723952 2016-05-31 19:45:52
## 10147    3.5 1464723990 2016-05-31 19:46:30
## 10148    3.0 1464723959 2016-05-31 19:45:59
## 10149    2.0 1461784655 2016-04-27 19:17:35
## 10150    2.5 1464723939 2016-05-31 19:45:39
## 10151    3.0 1464723955 2016-05-31 19:45:55
## 10152    3.5 1464722900 2016-05-31 19:28:20
## 10153    3.0 1461783945 2016-04-27 19:05:45
## 10154    3.0 1461784582 2016-04-27 19:16:22
## 10155    3.5 1464723948 2016-05-31 19:45:48
## 10156    3.5 1461784515 2016-04-27 19:15:15
## 10157    3.5 1464723984 2016-05-31 19:46:24
## 10158    3.0 1464723945 2016-05-31 19:45:45
## 10159    5.0 1464722872 2016-05-31 19:27:52
## 10160    3.0 1464722878 2016-05-31 19:27:58
## 10161    4.0 1464722868 2016-05-31 19:27:48
## 10162    3.5 1464723967 2016-05-31 19:46:07
## 10163    4.0 1461784650 2016-04-27 19:17:30
## 10164    3.5 1461778714 2016-04-27 17:38:34
## 10165    3.0 1461784352 2016-04-27 19:12:32
## 10166    4.0 1461778757 2016-04-27 17:39:17
## 10167    3.5 1461784770 2016-04-27 19:19:30
## 10168    3.5 1461784524 2016-04-27 19:15:24
## 10169    3.5 1461783955 2016-04-27 19:05:55
## 10170    2.0 1461784744 2016-04-27 19:19:04
## 10171    3.0 1461784013 2016-04-27 19:06:53
## 10172    4.0 1461778742 2016-04-27 17:39:02
## 10173    2.0 1461784029 2016-04-27 19:07:09
## 10174    2.0 1461783938 2016-04-27 19:05:38
## 10175    3.0 1461784053 2016-04-27 19:07:33
## 10176    3.5 1461778701 2016-04-27 17:38:21
## 10177    3.0 1461784665 2016-04-27 19:17:45
## 10178    3.5 1461784766 2016-04-27 19:19:26
## 10179    3.5 1461784449 2016-04-27 19:14:09
## 10180    3.5 1461784739 2016-04-27 19:18:59
## 10181    3.5 1461784720 2016-04-27 19:18:40
## 10182    3.0 1461784574 2016-04-27 19:16:14
## 10183    3.5 1461784563 2016-04-27 19:16:03
## 10184    3.5 1461784704 2016-04-27 19:18:24
## 10185    2.5 1461784358 2016-04-27 19:12:38
## 10186    3.0 1461778763 2016-04-27 17:39:23
## 10187    4.0 1461784402 2016-04-27 19:13:22
## 10188    4.0 1461784545 2016-04-27 19:15:45
## 10189    2.5 1461784734 2016-04-27 19:18:54
## 10190    3.0 1461784588 2016-04-27 19:16:28
## 10191    3.5 1461778748 2016-04-27 17:39:08
## 10192    3.0 1461784567 2016-04-27 19:16:07
## 10193    2.5 1461784749 2016-04-27 19:19:09
## 10194    3.5 1461784700 2016-04-27 19:18:20
## 10195    3.5 1461784437 2016-04-27 19:13:57
## 10196    3.5 1461784698 2016-04-27 19:18:18
## 10197    3.5 1461784548 2016-04-27 19:15:48
## 10198    4.0 1461784455 2016-04-27 19:14:15
## 10199    3.5 1461778724 2016-04-27 17:38:44
## 10200    3.5 1461784387 2016-04-27 19:13:07
## 10201    3.0 1461784379 2016-04-27 19:12:59
## 10202    1.0 1461784707 2016-04-27 19:18:27
## 10203    3.5 1461784342 2016-04-27 19:12:22
## 10204    3.5 1461778744 2016-04-27 17:39:04
## 10205    3.5 1461784635 2016-04-27 19:17:15
## 10206    4.0 1461778755 2016-04-27 17:39:15
## 10207    3.0 1461778642 2016-04-27 17:37:22
## 10208    3.0 1461778637 2016-04-27 17:37:17
## 10209    3.0 1461778586 2016-04-27 17:36:26
## 10210    3.5 1461778626 2016-04-27 17:37:06
## 10211    1.0 1461784183 2016-04-27 19:09:43
## 10212    3.5 1461784683 2016-04-27 19:18:03
## 10213    3.0 1461778632 2016-04-27 17:37:12
## 10214    2.0 1461784162 2016-04-27 19:09:22
## 10215    5.0 1303464840 2011-04-22 09:34:00
## 10216    2.5 1255595527 2009-10-15 08:32:07
## 10217    4.5 1337593559 2012-05-21 09:45:59
## 10218    3.0 1255591764 2009-10-15 07:29:24
## 10219    2.5 1255593501 2009-10-15 07:58:21
## 10220    4.0 1255508530 2009-10-14 08:22:10
## 10221    1.5 1255501766 2009-10-14 06:29:26
## 10222    3.5 1255597031 2009-10-15 08:57:11
## 10223    4.5 1337593272 2012-05-21 09:41:12
## 10224    3.5 1255591860 2009-10-15 07:31:00
## 10225    5.0 1354676110 2012-12-05 02:55:10
## 10226    2.5 1255606447 2009-10-15 11:34:07
## 10227    4.5 1339744008 2012-06-15 07:06:48
## 10228    4.0 1255505029 2009-10-14 07:23:49
## 10229    3.0 1255596165 2009-10-15 08:42:45
## 10230    5.0 1255503386 2009-10-14 06:56:26
## 10231    2.0 1255608841 2009-10-15 12:14:01
## 10232    5.0 1255502804 2009-10-14 06:46:44
## 10233    2.0 1470720095 2016-08-09 05:21:35
## 10234    3.5 1304411684 2011-05-03 08:34:44
## 10235    2.0 1255587668 2009-10-15 06:21:08
## 10236    4.0 1255851405 2009-10-18 07:36:45
## 10237    3.5 1255596154 2009-10-15 08:42:34
## 10238    3.0 1406172306 2014-07-24 03:25:06
## 10239    3.5 1312496282 2011-08-04 22:18:02
## 10240    2.5 1255843848 2009-10-18 05:30:48
## 10241    3.0 1255742407 2009-10-17 01:20:07
## 10242    4.0 1255508598 2009-10-14 08:23:18
## 10243    3.5 1255502716 2009-10-14 06:45:16
## 10244    3.5 1348568488 2012-09-25 10:21:28
## 10245    3.0 1255596442 2009-10-15 08:47:22
## 10246    4.5 1283940446 2010-09-08 10:07:26
## 10247    3.5 1286701620 2010-10-10 09:07:00
## 10248    1.0 1281668214 2010-08-13 02:56:54
## 10249    2.0 1255608880 2009-10-15 12:14:40
## 10250    3.0 1255506790 2009-10-14 07:53:10
## 10251    3.5 1255505013 2009-10-14 07:23:33
## 10252    3.5 1255608532 2009-10-15 12:08:52
## 10253    2.5 1256018505 2009-10-20 06:01:45
## 10254    0.5 1255587428 2009-10-15 06:17:08
## 10255    3.5 1255503714 2009-10-14 07:01:54
## 10256    3.0 1255587153 2009-10-15 06:12:33
## 10257    4.5 1255850905 2009-10-18 07:28:25
## 10258    3.0 1470720332 2016-08-09 05:25:32
## 10259    3.5 1255593273 2009-10-15 07:54:33
## 10260    2.5 1256030057 2009-10-20 09:14:17
## 10261    3.0 1266049987 2010-02-13 08:33:07
## 10262    4.0 1406171781 2014-07-24 03:16:21
## 10263    3.0 1255503373 2009-10-14 06:56:13
## 10264    5.0 1456039608 2016-02-21 07:26:48
## 10265    4.0 1304411592 2011-05-03 08:33:12
## 10266    4.5 1411810971 2014-09-27 09:42:51
## 10267    3.5 1264835146 2010-01-30 07:05:46
## 10268    4.0 1406171065 2014-07-24 03:04:25
## 10269    4.0 1255508717 2009-10-14 08:25:17
## 10270    3.0 1437711199 2015-07-24 04:13:19
## 10271    4.5 1255585670 2009-10-15 05:47:50
## 10272    4.0 1378180010 2013-09-03 03:46:50
## 10273    3.5 1255506785 2009-10-14 07:53:05
## 10274    2.5 1369513505 2013-05-25 20:25:05
## 10275    2.0 1470720392 2016-08-09 05:26:32
## 10276    4.5 1255508202 2009-10-14 08:16:42
## 10277    4.0 1398568231 2014-04-27 03:10:31
## 10278    3.0 1304411765 2011-05-03 08:36:05
## 10279    3.5 1255844977 2009-10-18 05:49:37
## 10280    3.0 1255597661 2009-10-15 09:07:41
## 10281    5.0 1306826434 2011-05-31 07:20:34
## 10282    5.0 1255502790 2009-10-14 06:46:30
## 10283    4.0 1290089214 2010-11-18 14:06:54
## 10284    3.0 1256029728 2009-10-20 09:08:48
## 10285    5.0 1255502795 2009-10-14 06:46:35
## 10286    4.0 1260597912 2009-12-12 06:05:12
## 10287    4.5 1311319243 2011-07-22 07:20:43
## 10288    2.5 1255849588 2009-10-18 07:06:28
## 10289    2.0 1255609029 2009-10-15 12:17:09
## 10290    3.5 1285414310 2010-09-25 11:31:50
## 10291    3.0 1255593485 2009-10-15 07:58:05
## 10292    2.0 1255501759 2009-10-14 06:29:19
## 10293    3.0 1256029720 2009-10-20 09:08:40
## 10294    3.5 1470720434 2016-08-09 05:27:14
## 10295    4.0 1255509139 2009-10-14 08:32:19
## 10296    5.0 1255844449 2009-10-18 05:40:49
## 10297    5.0 1303464829 2011-04-22 09:33:49
## 10298    2.0 1255947440 2009-10-19 10:17:20
## 10299    3.0 1457597096 2016-03-10 08:04:56
## 10300    2.5 1255597004 2009-10-15 08:56:44
## 10301    3.0 1256030041 2009-10-20 09:14:01
## 10302    3.0 1255594331 2009-10-15 08:12:11
## 10303    3.5 1280749457 2010-08-02 11:44:17
## 10304    2.5 1255501745 2009-10-14 06:29:05
## 10305    2.5 1255597090 2009-10-15 08:58:10
## 10306    2.5 1255596999 2009-10-15 08:56:39
## 10307    4.0 1311318950 2011-07-22 07:15:50
## 10308    3.5 1255502945 2009-10-14 06:49:05
## 10309    2.5 1304412304 2011-05-03 08:45:04
## 10310    3.5 1255508982 2009-10-14 08:29:42
## 10311    3.5 1304412090 2011-05-03 08:41:30
## 10312    4.0 1289377723 2010-11-10 08:28:43
## 10313    4.0 1261572758 2009-12-23 12:52:38
## 10314    2.5 1304411724 2011-05-03 08:35:24
## 10315    4.0 1296460183 2011-01-31 07:49:43
## 10316    3.5 1255608640 2009-10-15 12:10:40
## 10317    4.0 1255503366 2009-10-14 06:56:06
## 10318    3.5 1255507407 2009-10-14 08:03:27
## 10319    4.0 1429168457 2015-04-16 07:14:17
## 10320    3.0 1287294447 2010-10-17 05:47:27
## 10321    4.0 1255503176 2009-10-14 06:52:56
## 10322    3.5 1255845005 2009-10-18 05:50:05
## 10323    3.5 1272354528 2010-04-27 07:48:48
## 10324    3.0 1470720213 2016-08-09 05:23:33
## 10325    3.5 1470896986 2016-08-11 06:29:46
## 10326    4.0 1261572653 2009-12-23 12:50:53
## 10327    0.5 1255593983 2009-10-15 08:06:23
## 10328    3.5 1470720182 2016-08-09 05:23:02
## 10329    4.0 1255595145 2009-10-15 08:25:45
## 10330    3.0 1255850852 2009-10-18 07:27:32
## 10331    5.0 1255844407 2009-10-18 05:40:07
## 10332    4.5 1255508022 2009-10-14 08:13:42
## 10333    3.5 1255844972 2009-10-18 05:49:32
## 10334    4.0 1311651342 2011-07-26 03:35:42
## 10335    4.0 1255502930 2009-10-14 06:48:50
## 10336    3.5 1255596533 2009-10-15 08:48:53
## 10337    2.5 1470719734 2016-08-09 05:15:34
## 10338    3.5 1255608112 2009-10-15 12:01:52
## 10339    5.0 1303464853 2011-04-22 09:34:13
## 10340    3.0 1255595915 2009-10-15 08:38:35
## 10341    4.5 1255594321 2009-10-15 08:12:01
## 10342    4.0 1255504505 2009-10-14 07:15:05
## 10343    4.5 1281307627 2010-08-08 22:47:07
## 10344    3.5 1255844780 2009-10-18 05:46:20
## 10345    4.5 1303464866 2011-04-22 09:34:26
## 10346    3.5 1255844932 2009-10-18 05:48:52
## 10347    3.0 1256030046 2009-10-20 09:14:06
## 10348    4.0 1255502799 2009-10-14 06:46:39
## 10349    1.5 1398568108 2014-04-27 03:08:28
## 10350    4.5 1314943073 2011-09-02 05:57:53
## 10351    3.0 1470720316 2016-08-09 05:25:16
## 10352    3.0 1255845002 2009-10-18 05:50:02
## 10353    2.5 1256030164 2009-10-20 09:16:04
## 10354    3.0 1255506758 2009-10-14 07:52:38
## 10355    3.0 1470720292 2016-08-09 05:24:52
## 10356    3.0 1470720380 2016-08-09 05:26:20
## 10357    2.5 1256018210 2009-10-20 05:56:50
## 10358    2.5 1422335223 2015-01-27 05:07:03
## 10359    3.0 1256029754 2009-10-20 09:09:14
## 10360    4.0 1448953137 2015-12-01 06:58:57
## 10361    1.5 1255608540 2009-10-15 12:09:00
## 10362    2.5 1256030591 2009-10-20 09:23:11
## 10363    4.0 1264405840 2010-01-25 07:50:40
## 10364    2.5 1470720372 2016-08-09 05:26:12
## 10365    4.0 1255588345 2009-10-15 06:32:25
## 10366    3.5 1283940897 2010-09-08 10:14:57
## 10367    2.5 1470720219 2016-08-09 05:23:39
## 10368    5.0 1255862403 2009-10-18 10:40:03
## 10369    3.5 1457596624 2016-03-10 07:57:04
## 10370    1.0 1255591836 2009-10-15 07:30:36
## 10371    3.5 1304411666 2011-05-03 08:34:26
## 10372    2.0 1398568202 2014-04-27 03:10:02
## 10373    2.5 1255606772 2009-10-15 11:39:32
## 10374    3.5 1348567967 2012-09-25 10:12:47
## 10375    3.0 1418785517 2014-12-17 03:05:17
## 10376    2.5 1256030174 2009-10-20 09:16:14
## 10377    3.5 1255500962 2009-10-14 06:16:02
## 10378    5.0 1255584436 2009-10-15 05:27:16
## 10379    2.5 1255849976 2009-10-18 07:12:56
## 10380    4.5 1255584412 2009-10-15 05:26:52
## 10381    4.0 1255608074 2009-10-15 12:01:14
## 10382    4.0 1315979781 2011-09-14 05:56:21
## 10383    1.5 1255501638 2009-10-14 06:27:18
## 10384    4.5 1255501801 2009-10-14 06:30:01
## 10385    4.0 1255607784 2009-10-15 11:56:24
## 10386    3.5 1470720223 2016-08-09 05:23:43
## 10387    3.0 1255594607 2009-10-15 08:16:47
## 10388    3.5 1303464880 2011-04-22 09:34:40
## 10389    3.5 1279948049 2010-07-24 05:07:29
## 10390    3.5 1337594349 2012-05-21 09:59:09
## 10391    3.0 1256030424 2009-10-20 09:20:24
## 10392    3.0 1255595609 2009-10-15 08:33:29
## 10393    3.5 1282638702 2010-08-24 08:31:42
## 10394    4.5 1255508391 2009-10-14 08:19:51
## 10395    3.5 1255743474 2009-10-17 01:37:54
## 10396    3.5 1255609078 2009-10-15 12:17:58
## 10397    4.0 1255506740 2009-10-14 07:52:20
## 10398    4.0 1255947496 2009-10-19 10:18:16
## 10399    4.5 1255608654 2009-10-15 12:10:54
## 10400    3.5 1255844891 2009-10-18 05:48:11
## 10401    5.0 1255506732 2009-10-14 07:52:12
## 10402    2.0 1255595979 2009-10-15 08:39:39
## 10403    3.5 1411355622 2014-09-22 03:13:42
## 10404    4.0 1255504951 2009-10-14 07:22:31
## 10405    3.5 1255595920 2009-10-15 08:38:40
## 10406    3.5 1255609131 2009-10-15 12:18:51
## 10407    4.0 1262660448 2010-01-05 03:00:48
## 10408    4.0 1255502910 2009-10-14 06:48:30
## 10409    3.0 1255508109 2009-10-14 08:15:09
## 10410    4.0 1255588350 2009-10-15 06:32:30
## 10411    4.0 1255596971 2009-10-15 08:56:11
## 10412    3.5 1280749995 2010-08-02 11:53:15
## 10413    4.5 1266581514 2010-02-19 12:11:54
## 10414    4.0 1255503156 2009-10-14 06:52:36
## 10415    5.0 1255502779 2009-10-14 06:46:19
## 10416    5.0 1255506722 2009-10-14 07:52:02
## 10417    5.0 1255508049 2009-10-14 08:14:09
## 10418    4.5 1428469603 2015-04-08 05:06:43
## 10419    5.0 1311651122 2011-07-26 03:32:02
## 10420    5.0 1348568040 2012-09-25 10:14:00
## 10421    4.5 1255501601 2009-10-14 06:26:41
## 10422    5.0 1255504946 2009-10-14 07:22:26
## 10423    4.5 1404370293 2014-07-03 06:51:33
## 10424    5.0 1255844483 2009-10-18 05:41:23
## 10425    5.0 1255508757 2009-10-14 08:25:57
## 10426    5.0 1306826464 2011-05-31 07:21:04
## 10427    5.0 1326419215 2012-01-13 01:46:55
## 10428    4.5 1255502137 2009-10-14 06:35:37
## 10429    4.5 1339744073 2012-06-15 07:07:53
## 10430    3.5 1270610619 2010-04-07 03:23:39
## 10431    5.0 1255585464 2009-10-15 05:44:24
## 10432    4.5 1255506723 2009-10-14 07:52:03
## 10433    3.0 1255608634 2009-10-15 12:10:34
## 10434    4.5 1255587798 2009-10-15 06:23:18
## 10435    4.5 1255596621 2009-10-15 08:50:21
## 10436    4.0 1464751206 2016-06-01 03:20:06
## 10437    3.5 1432525150 2015-05-25 03:39:10
## 10438    4.0 1260977284 2009-12-16 15:28:04
## 10439    3.5 1256030107 2009-10-20 09:15:07
## 10440    4.0 1255502888 2009-10-14 06:48:08
## 10441    4.5 1378180019 2013-09-03 03:46:59
## 10442    4.0 1296952002 2011-02-06 00:26:42
## 10443    4.0 1255502784 2009-10-14 06:46:24
## 10444    3.5 1280749968 2010-08-02 11:52:48
## 10445    4.5 1268808237 2010-03-17 06:43:57
## 10446    4.0 1409452810 2014-08-31 02:40:10
## 10447    4.0 1267705648 2010-03-04 12:27:28
## 10448    4.0 1255591754 2009-10-15 07:29:14
## 10449    4.5 1337593473 2012-05-21 09:44:33
## 10450    5.0 1285479373 2010-09-26 05:36:13
## 10451    4.5 1302152229 2011-04-07 04:57:09
## 10452    4.0 1255845402 2009-10-18 05:56:42
## 10453    4.0 1255606220 2009-10-15 11:30:20
## 10454    3.5 1312496151 2011-08-04 22:15:51
## 10455    2.5 1255587965 2009-10-15 06:26:05
## 10456    5.0 1306826403 2011-05-31 07:20:03
## 10457    4.5 1255506712 2009-10-14 07:51:52
## 10458    1.5 1255591944 2009-10-15 07:32:24
## 10459    3.5 1267705570 2010-03-04 12:26:10
## 10460    2.0 1255593963 2009-10-15 08:06:03
## 10461    3.5 1255501914 2009-10-14 06:31:54
## 10462    3.0 1255501035 2009-10-14 06:17:15
## 10463    3.0 1255500860 2009-10-14 06:14:20
## 10464    3.0 1348567962 2012-09-25 10:12:42
## 10465    4.0 1411355614 2014-09-22 03:13:34
## 10466    4.0 1255593958 2009-10-15 08:05:58
## 10467    3.5 1255844967 2009-10-18 05:49:27
## 10468    3.0 1255608055 2009-10-15 12:00:55
## 10469    3.5 1437103984 2015-07-17 03:33:04
## 10470    4.0 1275964521 2010-06-08 02:35:21
## 10471    2.0 1470720209 2016-08-09 05:23:29
## 10472    2.5 1470719755 2016-08-09 05:15:55
## 10473    3.0 1255502875 2009-10-14 06:47:55
## 10474    3.5 1261667770 2009-12-24 15:16:10
## 10475    4.0 1350192487 2012-10-14 05:28:07
## 10476    3.5 1281668223 2010-08-13 02:57:03
## 10477    4.0 1255594430 2009-10-15 08:13:50
## 10478    4.0 1255502774 2009-10-14 06:46:14
## 10479    3.0 1255591429 2009-10-15 07:23:49
## 10480    4.0 1255596358 2009-10-15 08:45:58
## 10481    4.0 1296730230 2011-02-03 10:50:30
## 10482    4.0 1319337546 2011-10-23 02:39:06
## 10483    3.5 1255500918 2009-10-14 06:15:18
## 10484    4.0 1464751433 2016-06-01 03:23:53
## 10485    3.0 1398567944 2014-04-27 03:05:44
## 10486    2.5 1255501084 2009-10-14 06:18:04
## 10487    1.0 1255586834 2009-10-15 06:07:14
## 10488    3.5 1409205998 2014-08-28 06:06:38
## 10489    4.0 1255508548 2009-10-14 08:22:28
## 10490    2.5 1255609223 2009-10-15 12:20:23
## 10491    3.5 1304411853 2011-05-03 08:37:33
## 10492    2.0 1255502015 2009-10-14 06:33:35
## 10493    4.0 1369206214 2013-05-22 07:03:34
## 10494    3.0 1255843935 2009-10-18 05:32:15
## 10495    3.5 1255591360 2009-10-15 07:22:40
## 10496    3.5 1255509163 2009-10-14 08:32:43
## 10497    3.0 1256030207 2009-10-20 09:16:47
## 10498    2.5 1255597293 2009-10-15 09:01:33
## 10499    0.5 1255597075 2009-10-15 08:57:55
## 10500    4.0 1303464772 2011-04-22 09:32:52
## 10501    3.5 1331374345 2012-03-10 10:12:25
## 10502    3.0 1255607723 2009-10-15 11:55:23
## 10503    3.0 1460517728 2016-04-13 03:22:08
## 10504    4.0 1287294418 2010-10-17 05:46:58
## 10505    4.5 1406172081 2014-07-24 03:21:21
## 10506    3.0 1256028479 2009-10-20 08:47:59
## 10507    0.5 1255586362 2009-10-15 05:59:22
## 10508    3.5 1255596053 2009-10-15 08:40:53
## 10509    1.0 1255589046 2009-10-15 06:44:06
## 10510    2.5 1255597219 2009-10-15 09:00:19
## 10511    3.5 1255501843 2009-10-14 06:30:43
## 10512    4.5 1255844622 2009-10-18 05:43:42
## 10513    4.0 1255591424 2009-10-15 07:23:44
## 10514    3.5 1311319246 2011-07-22 07:20:46
## 10515    1.5 1255849480 2009-10-18 07:04:40
## 10516    3.0 1255609000 2009-10-15 12:16:40
## 10517    3.5 1295875283 2011-01-24 13:21:23
## 10518    4.0 1255508776 2009-10-14 08:26:16
## 10519    3.5 1457597070 2016-03-10 08:04:30
## 10520    3.0 1255596853 2009-10-15 08:54:13
## 10521    1.5 1255507319 2009-10-14 08:01:59
## 10522    4.5 1255509032 2009-10-14 08:30:32
## 10523    2.0 1255596139 2009-10-15 08:42:19
## 10524    4.0 1255502769 2009-10-14 06:46:09
## 10525    1.5 1255845284 2009-10-18 05:54:44
## 10526    0.5 1256552857 2009-10-26 10:27:37
## 10527    3.5 1255502846 2009-10-14 06:47:26
## 10528    4.0 1255584591 2009-10-15 05:29:51
## 10529    4.0 1354676118 2012-12-05 02:55:18
## 10530    2.0 1255593683 2009-10-15 08:01:23
## 10531    4.5 1255844646 2009-10-18 05:44:06
## 10532    0.5 1255503138 2009-10-14 06:52:18
## 10533    3.5 1406172191 2014-07-24 03:23:11
## 10534    3.0 1256030295 2009-10-20 09:18:15
## 10535    3.0 1257239744 2009-11-03 09:15:44
## 10536    4.5 1296951840 2011-02-06 00:24:00
## 10537    3.5 1369514567 2013-05-25 20:42:47
## 10538    2.5 1255596509 2009-10-15 08:48:29
## 10539    1.0 1255588837 2009-10-15 06:40:37
## 10540    3.5 1272354630 2010-04-27 07:50:30
## 10541    3.0 1470720028 2016-08-09 05:20:28
## 10542    1.0 1255589167 2009-10-15 06:46:07
## 10543    2.5 1437709517 2015-07-24 03:45:17
## 10544    1.0 1255849486 2009-10-18 07:04:46
## 10545    3.5 1255594560 2009-10-15 08:16:00
## 10546    3.5 1437709512 2015-07-24 03:45:12
## 10547    3.0 1411355597 2014-09-22 03:13:17
## 10548    4.5 1369206547 2013-05-22 07:09:07
## 10549    4.0 1381126672 2013-10-07 06:17:52
## 10550    2.0 1255591355 2009-10-15 07:22:35
## 10551    2.5 1255596503 2009-10-15 08:48:23
## 10552    3.0 1255591350 2009-10-15 07:22:30
## 10553    3.5 1272355372 2010-04-27 08:02:52
## 10554    4.5 1255506671 2009-10-14 07:51:11
## 10555    4.0 1255584855 2009-10-15 05:34:15
## 10556    3.5 1431232609 2015-05-10 04:36:49
## 10557    5.0 1306826395 2011-05-31 07:19:55
## 10558    4.5 1331019382 2012-03-06 07:36:22
## 10559    3.5 1255845278 2009-10-18 05:54:38
## 10560    4.0 1255591608 2009-10-15 07:26:48
## 10561    3.5 1255742786 2009-10-17 01:26:26
## 10562    4.0 1464751442 2016-06-01 03:24:02
## 10563    4.0 1255502851 2009-10-14 06:47:31
## 10564    4.0 1255608727 2009-10-15 12:12:07
## 10565    4.5 1262056348 2009-12-29 03:12:28
## 10566    4.0 1262056355 2009-12-29 03:12:35
## 10567    5.0 1306826463 2011-05-31 07:21:03
## 10568    3.0 1437103998 2015-07-17 03:33:18
## 10569    4.0 1406171880 2014-07-24 03:18:00
## 10570    4.0 1255502841 2009-10-14 06:47:21
## 10571    2.5 1255595963 2009-10-15 08:39:23
## 10572    4.5 1255584964 2009-10-15 05:36:04
## 10573    3.5 1411452543 2014-09-23 06:09:03
## 10574    2.5 1255595957 2009-10-15 08:39:17
## 10575    4.5 1255844560 2009-10-18 05:42:40
## 10576    3.5 1303464933 2011-04-22 09:35:33
## 10577    3.5 1470720309 2016-08-09 05:25:09
## 10578    3.5 1255608711 2009-10-15 12:11:51
## 10579    2.5 1304412471 2011-05-03 08:47:51
## 10580    2.5 1304411648 2011-05-03 08:34:08
## 10581    4.0 1255503604 2009-10-14 07:00:04
## 10582    5.0 1255502836 2009-10-14 06:47:16
## 10583    3.5 1378180034 2013-09-03 03:47:14
## 10584    3.5 1303464871 2011-04-22 09:34:31
## 10585    3.5 1282545301 2010-08-23 06:35:01
## 10586    3.5 1255844937 2009-10-18 05:48:57
## 10587    3.5 1279948023 2010-07-24 05:07:03
## 10588    3.5 1437711085 2015-07-24 04:11:25
## 10589    4.0 1406171622 2014-07-24 03:13:42
## 10590    3.0 1256027987 2009-10-20 08:39:47
## 10591    3.0 1255500870 2009-10-14 06:14:30
## 10592    5.0 1306826405 2011-05-31 07:20:05
## 10593    4.0 1406171334 2014-07-24 03:08:54
## 10594    3.5 1255506668 2009-10-14 07:51:08
## 10595    4.0 1261656604 2009-12-24 12:10:04
## 10596    4.5 1324634524 2011-12-23 10:02:04
## 10597    4.0 1303464923 2011-04-22 09:35:23
## 10598    4.0 1456038593 2016-02-21 07:09:53
## 10599    3.5 1261656636 2009-12-24 12:10:36
## 10600    3.5 1300947005 2011-03-24 06:10:05
## 10601    4.5 1364100089 2013-03-24 04:41:29
## 10602    3.5 1255844084 2009-10-18 05:34:44
## 10603    3.0 1255596126 2009-10-15 08:42:06
## 10604    3.0 1418786181 2014-12-17 03:16:21
## 10605    3.5 1261656735 2009-12-24 12:12:15
## 10606    1.0 1255589018 2009-10-15 06:43:38
## 10607    3.0 1256030336 2009-10-20 09:18:56
## 10608    4.0 1255591395 2009-10-15 07:23:15
## 10609    4.0 1259037014 2009-11-24 04:30:14
## 10610    4.0 1255584576 2009-10-15 05:29:36
## 10611    3.0 1304411810 2011-05-03 08:36:50
## 10612    4.0 1311318965 2011-07-22 07:16:05
## 10613    4.0 1267705661 2010-03-04 12:27:41
## 10614    3.5 1411876538 2014-09-28 03:55:38
## 10615    4.0 1337593722 2012-05-21 09:48:42
## 10616    3.5 1348568537 2012-09-25 10:22:17
## 10617    4.0 1259040565 2009-11-24 05:29:25
## 10618    4.0 1255502833 2009-10-14 06:47:13
## 10619    4.0 1267705538 2010-03-04 12:25:38
## 10620    3.5 1255593907 2009-10-15 08:05:07
## 10621    3.5 1255502070 2009-10-14 06:34:30
## 10622    3.0 1255844988 2009-10-18 05:49:48
## 10623    4.5 1288697512 2010-11-02 11:31:52
## 10624    2.5 1255587644 2009-10-15 06:20:44
## 10625    4.5 1430027806 2015-04-26 05:56:46
## 10626    3.0 1256030202 2009-10-20 09:16:42
## 10627    3.5 1255608781 2009-10-15 12:13:01
## 10628    3.5 1441522263 2015-09-06 06:51:03
## 10629    4.5 1255501972 2009-10-14 06:32:52
## 10630    3.0 1255502470 2009-10-14 06:41:10
## 10631    0.5 1256028414 2009-10-20 08:46:54
## 10632    2.5 1255742368 2009-10-17 01:19:28
## 10633    3.0 1255594309 2009-10-15 08:11:49
## 10634    4.0 1430034069 2015-04-26 07:41:09
## 10635    3.5 1369513448 2013-05-25 20:24:08
## 10636    3.5 1255504073 2009-10-14 07:07:53
## 10637    3.5 1454042117 2016-01-29 04:35:17
## 10638    3.5 1431234283 2015-05-10 05:04:43
## 10639    4.5 1381126595 2013-10-07 06:16:35
## 10640    4.0 1255584959 2009-10-15 05:35:59
## 10641    3.0 1255593426 2009-10-15 07:57:06
## 10642    3.5 1255593420 2009-10-15 07:57:00
## 10643    3.0 1255586748 2009-10-15 06:05:48
## 10644    3.0 1275964632 2010-06-08 02:37:12
## 10645    4.0 1255608040 2009-10-15 12:00:40
## 10646    3.0 1255507270 2009-10-14 08:01:10
## 10647    3.5 1255844856 2009-10-18 05:47:36
## 10648    2.0 1255844835 2009-10-18 05:47:15
## 10649    4.5 1255591400 2009-10-15 07:23:20
## 10650    4.0 1427170335 2015-03-24 04:12:15
## 10651    3.0 1427170376 2015-03-24 04:12:56
## 10652    1.5 1255597066 2009-10-15 08:57:46
## 10653    4.0 1315969124 2011-09-14 02:58:44
## 10654    2.0 1255850016 2009-10-18 07:13:36
## 10655    2.0 1255593663 2009-10-15 08:01:03
## 10656    4.0 1255608035 2009-10-15 12:00:35
## 10657    3.5 1261487007 2009-12-22 13:03:27
## 10658    4.0 1266665318 2010-02-20 11:28:38
## 10659    4.5 1381045859 2013-10-06 07:50:59
## 10660    3.0 1441522359 2015-09-06 06:52:39
## 10661    4.5 1369205876 2013-05-22 06:57:56
## 10662    3.0 1474615000 2016-09-23 07:16:40
## 10663    3.5 1255844950 2009-10-18 05:49:10
## 10664    3.5 1274265898 2010-05-19 10:44:58
## 10665    4.5 1255508410 2009-10-14 08:20:10
## 10666    3.5 1406171915 2014-07-24 03:18:35
## 10667    4.5 1406171911 2014-07-24 03:18:31
## 10668    2.0 1256030469 2009-10-20 09:21:09
## 10669    4.5 1255508246 2009-10-14 08:17:26
## 10670    3.0 1469772944 2016-07-29 06:15:44
## 10671    1.0 1255586425 2009-10-15 06:00:25
## 10672    4.0 1275964192 2010-06-08 02:29:52
## 10673    4.5 1282543426 2010-08-23 06:03:46
## 10674    3.5 1437709524 2015-07-24 03:45:24
## 10675    4.5 1296460015 2011-01-31 07:46:55
## 10676    3.0 1427170447 2015-03-24 04:14:07
## 10677    4.0 1255844787 2009-10-18 05:46:27
## 10678    4.5 1429168678 2015-04-16 07:17:58
## 10679    2.0 1256030461 2009-10-20 09:21:01
## 10680    3.5 1369514518 2013-05-25 20:41:58
## 10681    3.5 1464751460 2016-06-01 03:24:20
## 10682    2.5 1255591345 2009-10-15 07:22:25
## 10683    2.0 1256944354 2009-10-30 23:12:34
## 10684    3.0 1437709506 2015-07-24 03:45:06
## 10685    3.0 1255596353 2009-10-15 08:45:53
## 10686    4.0 1279948065 2010-07-24 05:07:45
## 10687    4.5 1357552985 2013-01-07 10:03:05
## 10688    3.0 1255597830 2009-10-15 09:10:30
## 10689    3.0 1255502120 2009-10-14 06:35:20
## 10690    3.5 1255844776 2009-10-18 05:46:16
## 10691    2.0 1255586467 2009-10-15 06:01:07
## 10692    3.5 1255501979 2009-10-14 06:32:59
## 10693    4.0 1312496216 2011-08-04 22:16:56
## 10694    3.5 1255591385 2009-10-15 07:23:05
## 10695    4.5 1404370203 2014-07-03 06:50:03
## 10696    1.5 1255947627 2009-10-19 10:20:27
## 10697    4.5 1282545089 2010-08-23 06:31:29
## 10698    3.0 1282545112 2010-08-23 06:31:52
## 10699    1.0 1255587084 2009-10-15 06:11:24
## 10700    2.5 1472698650 2016-09-01 02:57:30
## 10701    3.0 1256019289 2009-10-20 06:14:49
## 10702    2.5 1304412607 2011-05-03 08:50:07
## 10703    4.0 1411876466 2014-09-28 03:54:26
## 10704    3.0 1369513635 2013-05-25 20:27:15
## 10705    3.0 1259325836 2009-11-27 12:43:56
## 10706    2.5 1257229357 2009-11-03 06:22:37
## 10707    4.0 1255508479 2009-10-14 08:21:19
## 10708    3.0 1255591390 2009-10-15 07:23:10
## 10709    3.5 1255501853 2009-10-14 06:30:53
## 10710    3.5 1273043702 2010-05-05 07:15:02
## 10711    3.0 1255844915 2009-10-18 05:48:35
## 10712    4.0 1255588083 2009-10-15 06:28:03
## 10713    2.0 1255596937 2009-10-15 08:55:37
## 10714    4.0 1314942833 2011-09-02 05:53:53
## 10715    4.5 1255844727 2009-10-18 05:45:27
## 10716    3.0 1348568560 2012-09-25 10:22:40
## 10717    3.5 1255506106 2009-10-14 07:41:46
## 10718    4.0 1303465749 2011-04-22 09:49:09
## 10719    4.5 1390127454 2014-01-19 10:30:54
## 10720    3.5 1255849777 2009-10-18 07:09:37
## 10721    3.5 1348568747 2012-09-25 10:25:47
## 10722    3.5 1255509017 2009-10-14 08:30:17
## 10723    3.0 1464508137 2016-05-29 07:48:57
## 10724    3.5 1456038664 2016-02-21 07:11:04
## 10725    3.5 1411355584 2014-09-22 03:13:04
## 10726    4.0 1348568388 2012-09-25 10:19:48
## 10727    4.5 1296952036 2011-02-06 00:27:16
## 10728    4.0 1470985538 2016-08-12 07:05:38
## 10729    4.5 1427170200 2015-03-24 04:10:00
## 10730    4.0 1369205974 2013-05-22 06:59:34
## 10731    4.5 1357552974 2013-01-07 10:02:54
## 10732    4.0 1470729030 2016-08-09 07:50:30
## 10733    4.0 1431584423 2015-05-14 06:20:23
## 10734    2.5 1255849720 2009-10-18 07:08:40
## 10735    5.0 1309081686 2011-06-26 09:48:06
## 10736    3.5 1432523188 2015-05-25 03:06:28
## 10737    1.0 1255586415 2009-10-15 06:00:15
## 10738    4.0 1337593255 2012-05-21 09:40:55
## 10739    3.5 1255607717 2009-10-15 11:55:17
## 10740    4.5 1262056591 2009-12-29 03:16:31
## 10741    4.5 1334396063 2012-04-14 09:34:23
## 10742    3.5 1406172160 2014-07-24 03:22:40
## 10743    4.0 1437710007 2015-07-24 03:53:27
## 10744    3.5 1261487189 2009-12-22 13:06:29
## 10745    4.0 1475124698 2016-09-29 04:51:38
## 10746    4.0 1312496325 2011-08-04 22:18:45
## 10747    3.5 1255596722 2009-10-15 08:52:02
## 10748    4.5 1303464905 2011-04-22 09:35:05
## 10749    4.0 1296730204 2011-02-03 10:50:04
## 10750    3.0 1255509153 2009-10-14 08:32:33
## 10751    3.0 1337594327 2012-05-21 09:58:47
## 10752    2.5 1255503566 2009-10-14 06:59:26
## 10753    2.5 1255500985 2009-10-14 06:16:25
## 10754    3.5 1256018249 2009-10-20 05:57:29
## 10755    4.0 1339743989 2012-06-15 07:06:29
## 10756    4.0 1267705250 2010-03-04 12:20:50
## 10757    2.5 1474615285 2016-09-23 07:21:25
## 10758    4.0 1274265884 2010-05-19 10:44:44
## 10759    2.0 1255743364 2009-10-17 01:36:04
## 10760    3.5 1257228558 2009-11-03 06:09:18
## 10761    4.0 1255606347 2009-10-15 11:32:27
## 10762    3.5 1255845019 2009-10-18 05:50:19
## 10763    2.5 1255845250 2009-10-18 05:54:10
## 10764    4.0 1303466268 2011-04-22 09:57:48
## 10765    2.5 1255608868 2009-10-15 12:14:28
## 10766    4.0 1255850836 2009-10-18 07:27:16
## 10767    3.5 1255508823 2009-10-14 08:27:03
## 10768    4.5 1281668156 2010-08-13 02:55:56
## 10769    4.0 1267705304 2010-03-04 12:21:44
## 10770    3.5 1304411787 2011-05-03 08:36:27
## 10771    2.5 1256028073 2009-10-20 08:41:13
## 10772    2.5 1255500852 2009-10-14 06:14:12
## 10773    3.0 1256030417 2009-10-20 09:20:17
## 10774    4.0 1255505507 2009-10-14 07:31:47
## 10775    4.0 1331375405 2012-03-10 10:30:05
## 10776    3.5 1475124680 2016-09-29 04:51:20
## 10777    2.5 1255607878 2009-10-15 11:57:58
## 10778    3.5 1255507224 2009-10-14 08:00:24
## 10779    4.0 1255504005 2009-10-14 07:06:45
## 10780    3.5 1369514944 2013-05-25 20:49:04
## 10781    4.5 1355922434 2012-12-19 13:07:14
## 10782    3.5 1279948734 2010-07-24 05:18:54
## 10783    3.5 1261572674 2009-12-23 12:51:14
## 10784    4.0 1255596921 2009-10-15 08:55:21
## 10785    4.0 1369513307 2013-05-25 20:21:47
## 10786    4.0 1281668274 2010-08-13 02:57:54
## 10787    3.5 1255742725 2009-10-17 01:25:25
## 10788    3.5 1255592969 2009-10-15 07:49:29
## 10789    3.0 1255586543 2009-10-15 06:02:23
## 10790    1.5 1255586548 2009-10-15 06:02:28
## 10791    3.5 1255597612 2009-10-15 09:06:52
## 10792    3.0 1264493967 2010-01-26 08:19:27
## 10793    4.0 1264751860 2010-01-29 07:57:40
## 10794    4.0 1422335547 2015-01-27 05:12:27
## 10795    4.0 1320810501 2011-11-09 03:48:21
## 10796    3.5 1255597607 2009-10-15 09:06:47
## 10797    4.0 1320810452 2011-11-09 03:47:32
## 10798    3.5 1282543451 2010-08-23 06:04:11
## 10799    4.5 1395987897 2014-03-28 06:24:57
## 10800    4.0 1303466242 2011-04-22 09:57:22
## 10801    3.0 1255506079 2009-10-14 07:41:19
## 10802    2.0 1255594378 2009-10-15 08:12:58
## 10803    0.5 1255588774 2009-10-15 06:39:34
## 10804    0.5 1255588780 2009-10-15 06:39:40
## 10805    4.0 1255584828 2009-10-15 05:33:48
## 10806    4.0 1289045177 2010-11-06 12:06:17
## 10807    0.5 1255588769 2009-10-15 06:39:29
## 10808    2.5 1255591380 2009-10-15 07:23:00
## 10809    2.0 1255608746 2009-10-15 12:12:26
## 10810    3.0 1255595938 2009-10-15 08:38:58
## 10811    4.5 1470896634 2016-08-11 06:23:54
## 10812    3.5 1469772991 2016-07-29 06:16:31
## 10813    3.0 1255844919 2009-10-18 05:48:39
## 10814    4.0 1466320273 2016-06-19 07:11:13
## 10815    4.0 1287294312 2010-10-17 05:45:12
## 10816    2.5 1258367323 2009-11-16 10:28:43
## 10817    3.5 1258367400 2009-11-16 10:30:00
## 10818    3.5 1259389532 2009-11-28 06:25:32
## 10819    4.5 1464750953 2016-06-01 03:15:53
## 10820    3.5 1370057557 2013-06-01 03:32:37
## 10821    3.5 1464751470 2016-06-01 03:24:30
## 10822    4.0 1418461988 2014-12-13 09:13:08
## 10823    4.0 1343119731 2012-07-24 08:48:51
## 10824    3.5 1255596218 2009-10-15 08:43:38
## 10825    3.5 1259325859 2009-11-27 12:44:19
## 10826    2.0 1255608143 2009-10-15 12:02:23
## 10827    2.5 1255594368 2009-10-15 08:12:48
## 10828    3.0 1255597273 2009-10-15 09:01:13
## 10829    3.0 1255844941 2009-10-18 05:49:01
## 10830    4.0 1296459580 2011-01-31 07:39:40
## 10831    3.0 1255591794 2009-10-15 07:29:54
## 10832    2.5 1255608592 2009-10-15 12:09:52
## 10833    1.5 1255608249 2009-10-15 12:04:09
## 10834    1.5 1257229260 2009-11-03 06:21:00
## 10835    4.0 1435472709 2015-06-28 06:25:09
## 10836    3.5 1261573299 2009-12-23 13:01:39
## 10837    2.5 1255596214 2009-10-15 08:43:34
## 10838    1.5 1255742451 2009-10-17 01:20:51
## 10839    4.0 1255859036 2009-10-18 09:43:56
## 10840    3.5 1255844895 2009-10-18 05:48:15
## 10841    3.0 1262826535 2010-01-07 01:08:55
## 10842    4.0 1304411842 2011-05-03 08:37:22
## 10843    4.0 1255504813 2009-10-14 07:20:13
## 10844    3.5 1312496194 2011-08-04 22:16:34
## 10845    3.0 1304411604 2011-05-03 08:33:24
## 10846    3.0 1255742998 2009-10-17 01:29:58
## 10847    2.5 1255586357 2009-10-15 05:59:17
## 10848    3.5 1255849638 2009-10-18 07:07:18
## 10849    4.5 1431234143 2015-05-10 05:02:23
## 10850    4.0 1427170187 2015-03-24 04:09:47
## 10851    2.0 1255608483 2009-10-15 12:08:03
## 10852    0.5 1255503033 2009-10-14 06:50:33
## 10853    3.0 1369513586 2013-05-25 20:26:26
## 10854    2.5 1255596840 2009-10-15 08:54:00
## 10855    3.5 1255591337 2009-10-15 07:22:17
## 10856    3.0 1257229345 2009-11-03 06:22:25
## 10857    4.0 1274265922 2010-05-19 10:45:22
## 10858    4.0 1396156423 2014-03-30 05:13:43
## 10859    4.5 1255508282 2009-10-14 08:18:02
## 10860    4.0 1255584991 2009-10-15 05:36:31
## 10861    2.5 1255742448 2009-10-17 01:20:48
## 10862    3.0 1255597278 2009-10-15 09:01:18
## 10863    3.0 1255845245 2009-10-18 05:54:05
## 10864    3.0 1255594363 2009-10-15 08:12:43
## 10865    2.5 1256030443 2009-10-20 09:20:43
## 10866    4.5 1309414189 2011-06-30 06:09:49
## 10867    4.5 1256029491 2009-10-20 09:04:51
## 10868    2.0 1255608233 2009-10-15 12:03:53
## 10869    1.5 1456038994 2016-02-21 07:16:34
## 10870    3.5 1255609092 2009-10-15 12:18:12
## 10871    4.5 1283169534 2010-08-30 11:58:54
## 10872    4.0 1268808234 2010-03-17 06:43:54
## 10873    3.5 1255845024 2009-10-18 05:50:24
## 10874    3.5 1437710061 2015-07-24 03:54:21
## 10875    3.0 1418462162 2014-12-13 09:16:02
## 10876    3.5 1255844881 2009-10-18 05:48:01
## 10877    3.5 1255849756 2009-10-18 07:09:16
## 10878    4.5 1255508007 2009-10-14 08:13:27
## 10879    0.5 1255596198 2009-10-15 08:43:18
## 10880    4.5 1255503937 2009-10-14 07:05:37
## 10881    2.5 1255608478 2009-10-15 12:07:58
## 10882    0.5 1255592082 2009-10-15 07:34:42
## 10883    4.0 1255506569 2009-10-14 07:49:29
## 10884    2.5 1255596703 2009-10-15 08:51:43
## 10885    4.0 1411452469 2014-09-23 06:07:49
## 10886    2.5 1256019294 2009-10-20 06:14:54
## 10887    4.0 1303464731 2011-04-22 09:32:11
## 10888    2.5 1257228611 2009-11-03 06:10:11
## 10889    1.0 1255849364 2009-10-18 07:02:44
## 10890    2.0 1255845363 2009-10-18 05:56:03
## 10891    2.5 1255596208 2009-10-15 08:43:28
## 10892    3.5 1255507158 2009-10-14 07:59:18
## 10893    4.0 1429168542 2015-04-16 07:15:42
## 10894    4.0 1255502625 2009-10-14 06:43:45
## 10895    1.5 1257229023 2009-11-03 06:17:03
## 10896    5.0 1369515350 2013-05-25 20:55:50
## 10897    2.5 1255609063 2009-10-15 12:17:43
## 10898    3.5 1255844800 2009-10-18 05:46:40
## 10899    2.0 1255596203 2009-10-15 08:43:23
## 10900    3.5 1255506563 2009-10-14 07:49:23
## 10901    3.5 1457597545 2016-03-10 08:12:25
## 10902    4.0 1337593133 2012-05-21 09:38:53
## 10903    3.0 1428469574 2015-04-08 05:06:14
## 10904    4.0 1457596520 2016-03-10 07:55:20
## 10905    4.0 1427170203 2015-03-24 04:10:03
## 10906    1.5 1255608385 2009-10-15 12:06:25
## 10907    3.5 1456038999 2016-02-21 07:16:39
## 10908    3.5 1256944285 2009-10-30 23:11:25
## 10909    4.5 1427168121 2015-03-24 03:35:21
## 10910    3.5 1370057531 2013-06-01 03:32:11
## 10911    5.0 1306826427 2011-05-31 07:20:27
## 10912    3.0 1255593845 2009-10-15 08:04:05
## 10913    4.5 1441514881 2015-09-06 04:48:01
## 10914    3.5 1255596109 2009-10-15 08:41:49
## 10915    4.0 1448953321 2015-12-01 07:02:01
## 10916    3.5 1427170442 2015-03-24 04:14:02
## 10917    3.5 1406172273 2014-07-24 03:24:33
## 10918    2.5 1296952145 2011-02-06 00:29:05
## 10919    2.0 1255505425 2009-10-14 07:30:25
## 10920    4.0 1418462025 2014-12-13 09:13:45
## 10921    3.0 1255594496 2009-10-15 08:14:56
## 10922    4.0 1282545187 2010-08-23 06:33:07
## 10923    4.0 1456039121 2016-02-21 07:18:41
## 10924    2.5 1255742990 2009-10-17 01:29:50
## 10925    3.5 1448953270 2015-12-01 07:01:10
## 10926    3.0 1255845239 2009-10-18 05:53:59
## 10927    4.5 1409205919 2014-08-28 06:05:19
## 10928    3.0 1255596106 2009-10-15 08:41:46
## 10929    3.5 1304411492 2011-05-03 08:31:32
## 10930    1.5 1255608222 2009-10-15 12:03:42
## 10931    3.0 1255591538 2009-10-15 07:25:38
## 10932    1.5 1255594879 2009-10-15 08:21:19
## 10933    0.5 1255606781 2009-10-15 11:39:41
## 10934    3.5 1255509080 2009-10-14 08:31:20
## 10935    4.0 1255505417 2009-10-14 07:30:17
## 10936    2.0 1255594188 2009-10-15 08:09:48
## 10937    3.0 1255844809 2009-10-18 05:46:49
## 10938    4.0 1427170169 2015-03-24 04:09:29
## 10939    3.5 1272355409 2010-04-27 08:03:29
## 10940    4.0 1352959815 2012-11-15 06:10:15
## 10941    3.5 1306826998 2011-05-31 07:29:58
## 10942    4.0 1295875347 2011-01-24 13:22:27
## 10943    4.0 1259411120 2009-11-28 12:25:20
## 10944    4.0 1448953284 2015-12-01 07:01:24
## 10945    3.0 1255608487 2009-10-15 12:08:07
## 10946    2.5 1255607838 2009-10-15 11:57:18
## 10947    3.0 1312496381 2011-08-04 22:19:41
## 10948    2.0 1456039352 2016-02-21 07:22:32
## 10949    3.5 1331374381 2012-03-10 10:13:01
## 10950    3.5 1255844964 2009-10-18 05:49:24
## 10951    3.0 1255844032 2009-10-18 05:33:52
## 10952    3.5 1272354473 2010-04-27 07:47:53
## 10953    4.0 1398567966 2014-04-27 03:06:06
## 10954    3.5 1255591532 2009-10-15 07:25:32
## 10955    3.0 1406172104 2014-07-24 03:21:44
## 10956    3.0 1255504768 2009-10-14 07:19:28
## 10957    5.0 1306826438 2011-05-31 07:20:38
## 10958    4.5 1255595932 2009-10-15 08:38:52
## 10959    4.0 1304412210 2011-05-03 08:43:30
## 10960    4.5 1315969212 2011-09-14 03:00:12
## 10961    3.0 1256030678 2009-10-20 09:24:38
## 10962    3.5 1255592071 2009-10-15 07:34:31
## 10963    3.0 1255742674 2009-10-17 01:24:34
## 10964    4.0 1264835164 2010-01-30 07:06:04
## 10965    0.5 1255586200 2009-10-15 05:56:40
## 10966    4.0 1273217119 2010-05-07 07:25:19
## 10967    3.0 1255606569 2009-10-15 11:36:09
## 10968    3.5 1369514322 2013-05-25 20:38:42
## 10969    4.0 1262569280 2010-01-04 01:41:20
## 10970    3.0 1256030657 2009-10-20 09:24:17
## 10971    3.0 1456039054 2016-02-21 07:17:34
## 10972    4.0 1406171597 2014-07-24 03:13:17
## 10973    4.0 1441514214 2015-09-06 04:36:54
## 10974    3.5 1448953334 2015-12-01 07:02:14
## 10975    3.5 1435472845 2015-06-28 06:27:25
## 10976    3.0 1304411962 2011-05-03 08:39:22
## 10977    3.0 1255844887 2009-10-18 05:48:07
## 10978    5.0 1387082402 2013-12-15 04:40:02
## 10979    3.5 1448953194 2015-12-01 06:59:54
## 10980    3.0 1255593557 2009-10-15 07:59:17
## 10981    3.5 1395987921 2014-03-28 06:25:21
## 10982    3.0 1460517505 2016-04-13 03:18:25
## 10983    2.0 1456039090 2016-02-21 07:18:10
## 10984    4.5 1306065234 2011-05-22 11:53:54
## 10985    4.0 1348568293 2012-09-25 10:18:13
## 10986    3.0 1255591376 2009-10-15 07:22:56
## 10987    3.0 1255591889 2009-10-15 07:31:29
## 10988    3.0 1304411695 2011-05-03 08:34:55
## 10989    3.0 1256017396 2009-10-20 05:43:16
## 10990    3.0 1255503508 2009-10-14 06:58:28
## 10991    3.0 1255503893 2009-10-14 07:04:53
## 10992    1.0 1256030597 2009-10-20 09:23:17
## 10993    2.0 1255608382 2009-10-15 12:06:22
## 10994    3.0 1456039073 2016-02-21 07:17:53
## 10995    3.5 1304412191 2011-05-03 08:43:11
## 10996    2.0 1255849610 2009-10-18 07:06:50
## 10997    2.5 1255609142 2009-10-15 12:19:02
## 10998    0.5 1255742979 2009-10-17 01:29:39
## 10999    1.5 1255503888 2009-10-14 07:04:48
## 11000    2.0 1456039270 2016-02-21 07:21:10
## 11001    4.0 1255606114 2009-10-15 11:28:34
## 11002    2.5 1337594371 2012-05-21 09:59:31
## 11003    1.5 1257164626 2009-11-02 12:23:46
## 11004    2.5 1256029172 2009-10-20 08:59:32
## 11005    1.0 1255587508 2009-10-15 06:18:28
## 11006    3.5 1431406170 2015-05-12 04:49:30
## 11007    4.0 1348568766 2012-09-25 10:26:06
## 11008    2.0 1427170483 2015-03-24 04:14:43
## 11009    3.5 1255850919 2009-10-18 07:28:39
## 11010    4.0 1255742663 2009-10-17 01:24:23
## 11011    4.0 1255584902 2009-10-15 05:35:02
## 11012    4.5 1337591896 2012-05-21 09:18:16
## 11013    3.0 1255595533 2009-10-15 08:32:13
## 11014    4.0 1311653407 2011-07-26 04:10:07
## 11015    2.5 1255587123 2009-10-15 06:12:03
## 11016    2.5 1256029535 2009-10-20 09:05:35
## 11017    3.5 1256029550 2009-10-20 09:05:50
## 11018    2.5 1255588990 2009-10-15 06:43:10
## 11019    2.0 1255588995 2009-10-15 06:43:15
## 11020    4.5 1406172244 2014-07-24 03:24:04
## 11021    3.5 1255501720 2009-10-14 06:28:40
## 11022    3.0 1312496408 2011-08-04 22:20:08
## 11023    3.5 1406172340 2014-07-24 03:25:40
## 11024    4.0 1338530999 2012-06-01 06:09:59
## 11025    4.0 1255507053 2009-10-14 07:57:33
## 11026    2.0 1456039316 2016-02-21 07:21:56
## 11027    2.0 1456039164 2016-02-21 07:19:24
## 11028    5.0 1306826436 2011-05-31 07:20:36
## 11029    4.0 1309761451 2011-07-04 06:37:31
## 11030    3.5 1279948760 2010-07-24 05:19:20
## 11031    3.5 1255503878 2009-10-14 07:04:38
## 11032    4.0 1285311199 2010-09-24 06:53:19
## 11033    4.0 1266581545 2010-02-19 12:12:25
## 11034    1.5 1255608120 2009-10-15 12:02:00
## 11035    5.0 1255503493 2009-10-14 06:58:13
## 11036    4.0 1406172365 2014-07-24 03:26:05
## 11037    3.0 1411355691 2014-09-22 03:14:51
## 11038    3.5 1369513550 2013-05-25 20:25:50
## 11039    0.5 1255503002 2009-10-14 06:50:02
## 11040    3.5 1255844960 2009-10-18 05:49:20
## 11041    2.0 1456039319 2016-02-21 07:21:59
## 11042    2.5 1456039235 2016-02-21 07:20:35
## 11043    2.5 1255849679 2009-10-18 07:07:59
## 11044    4.0 1255504698 2009-10-14 07:18:18
## 11045    3.0 1432523137 2015-05-25 03:05:37
## 11046    2.5 1304411827 2011-05-03 08:37:07
## 11047    0.5 1255586932 2009-10-15 06:08:52
## 11048    3.5 1255503222 2009-10-14 06:53:42
## 11049    4.5 1315969183 2011-09-14 02:59:43
## 11050    3.5 1417081916 2014-11-27 09:51:56
## 11051    3.0 1369514779 2013-05-25 20:46:19
## 11052    2.0 1255596285 2009-10-15 08:44:45
## 11053    2.5 1255591371 2009-10-15 07:22:51
## 11054    4.0 1255584888 2009-10-15 05:34:48
## 11055    3.0 1417081929 2014-11-27 09:52:09
## 11056    2.5 1309414298 2011-06-30 06:11:38
## 11057    3.0 1369515372 2013-05-25 20:56:12
## 11058    4.0 1411451683 2014-09-23 05:54:43
## 11059    3.0 1255501671 2009-10-14 06:27:51
## 11060    1.5 1255843864 2009-10-18 05:31:04
## 11061    0.5 1257229292 2009-11-03 06:21:32
## 11062    2.0 1255503487 2009-10-14 06:58:07
## 11063    4.0 1255509006 2009-10-14 08:30:06
## 11064    2.0 1255595377 2009-10-15 08:29:37
## 11065    4.0 1337594385 2012-05-21 09:59:45
## 11066    3.0 1369513547 2013-05-25 20:25:47
## 11067    2.5 1257229160 2009-11-03 06:19:20
## 11068    0.5 1255589036 2009-10-15 06:43:56
## 11069    3.0 1427170631 2015-03-24 04:17:11
## 11070    3.0 1464508095 2016-05-29 07:48:15
## 11071    0.5 1256029804 2009-10-20 09:10:04
## 11072    1.5 1256028643 2009-10-20 08:50:43
## 11073    3.5 1460519359 2016-04-13 03:49:19
## 11074    1.5 1255742653 2009-10-17 01:24:13
## 11075    4.0 1255502597 2009-10-14 06:43:17
## 11076    3.0 1337594381 2012-05-21 09:59:41
## 11077    1.5 1255587133 2009-10-15 06:12:13
## 11078    2.5 1348567959 2012-09-25 10:12:39
## 11079    4.0 1378179956 2013-09-03 03:45:56
## 11080    4.5 1273216574 2010-05-07 07:16:14
## 11081    4.0 1471332878 2016-08-16 07:34:38
## 11082    3.5 1457596987 2016-03-10 08:03:07
## 11083    4.5 1304411442 2011-05-03 08:30:42
## 11084    3.5 1289045130 2010-11-06 12:05:30
## 11085    4.5 1255502997 2009-10-14 06:49:57
## 11086    4.0 1448953300 2015-12-01 07:01:40
## 11087    3.0 1255591789 2009-10-15 07:29:49
## 11088    4.0 1295874873 2011-01-24 13:14:33
## 11089    3.0 1471332819 2016-08-16 07:33:39
## 11090    3.5 1264405832 2010-01-25 07:50:32
## 11091    2.5 1257228185 2009-11-03 06:03:05
## 11092    4.0 1260877884 2009-12-15 11:51:24
## 11093    4.5 1384069892 2013-11-10 07:51:32
## 11094    3.5 1369514741 2013-05-25 20:45:41
## 11095    2.0 1464508090 2016-05-29 07:48:10
## 11096    3.5 1257222707 2009-11-03 04:31:47
## 11097    2.0 1255503478 2009-10-14 06:57:58
## 11098    2.0 1255596893 2009-10-15 08:54:53
## 11099    3.0 1441513227 2015-09-06 04:20:27
## 11100    3.0 1255593542 2009-10-15 07:59:02
## 11101    3.5 1255588164 2009-10-15 06:29:24
## 11102    2.0 1255607831 2009-10-15 11:57:11
## 11103    3.0 1279947114 2010-07-24 04:51:54
## 11104    4.0 1378179792 2013-09-03 03:43:12
## 11105    4.0 1429168553 2015-04-16 07:15:53
## 11106    4.5 1337593385 2012-05-21 09:43:05
## 11107    3.5 1261656678 2009-12-24 12:11:18
## 11108    3.5 1454042575 2016-01-29 04:42:55
## 11109    3.0 1256029303 2009-10-20 09:01:43
## 11110    4.0 1411451412 2014-09-23 05:50:12
## 11111    4.0 1337594037 2012-05-21 09:53:57
## 11112    4.5 1348568786 2012-09-25 10:26:26
## 11113    3.0 1261486850 2009-12-22 13:00:50
## 11114    4.0 1311654117 2011-07-26 04:21:57
## 11115    2.5 1256030436 2009-10-20 09:20:36
## 11116    2.0 1255594326 2009-10-15 08:12:06
## 11117    5.0 1255503465 2009-10-14 06:57:45
## 11118    2.0 1456039242 2016-02-21 07:20:42
## 11119    4.5 1337593642 2012-05-21 09:47:22
## 11120    3.5 1255849692 2009-10-18 07:08:12
## 11121    4.0 1289046716 2010-11-06 12:31:56
## 11122    3.5 1255594489 2009-10-15 08:14:49
## 11123    3.5 1474614697 2016-09-23 07:11:37
## 11124    4.0 1255607425 2009-10-15 11:50:25
## 11125    3.0 1255591876 2009-10-15 07:31:16
## 11126    2.5 1257164378 2009-11-02 12:19:38
## 11127    2.5 1255596889 2009-10-15 08:54:49
## 11128    3.0 1288095855 2010-10-26 12:24:15
## 11129    3.0 1255591517 2009-10-15 07:25:17
## 11130    4.5 1255508137 2009-10-14 08:15:37
## 11131    2.0 1260977308 2009-12-16 15:28:28
## 11132    3.5 1304412434 2011-05-03 08:47:14
## 11133    3.5 1255503212 2009-10-14 06:53:32
## 11134    3.0 1255844992 2009-10-18 05:49:52
## 11135    4.0 1411810861 2014-09-27 09:41:01
## 11136    4.0 1255585779 2009-10-15 05:49:39
## 11137    3.5 1255606539 2009-10-15 11:35:39
## 11138    1.5 1255743175 2009-10-17 01:32:55
## 11139    2.0 1255595662 2009-10-15 08:34:22
## 11140    4.0 1257418583 2009-11-05 10:56:23
## 11141    4.0 1255850712 2009-10-18 07:25:12
## 11142    4.0 1352959898 2012-11-15 06:11:38
## 11143    1.5 1256559095 2009-10-26 12:11:35
## 11144    3.5 1279948092 2010-07-24 05:08:12
## 11145    5.0 1308113349 2011-06-15 04:49:09
## 11146    2.5 1287575320 2010-10-20 11:48:40
## 11147    4.0 1441513891 2015-09-06 04:31:31
## 11148    3.0 1255503838 2009-10-14 07:03:58
## 11149    2.5 1255586520 2009-10-15 06:02:00
## 11150    3.5 1423801745 2015-02-13 04:29:05
## 11151    4.0 1273217198 2010-05-07 07:26:38
## 11152    3.5 1448953187 2015-12-01 06:59:47
## 11153    3.5 1435474813 2015-06-28 07:00:13
## 11154    4.0 1456039436 2016-02-21 07:23:56
## 11155    4.5 1406172202 2014-07-24 03:23:22
## 11156    3.5 1303464741 2011-04-22 09:32:21
## 11157    3.0 1255742433 2009-10-17 01:20:33
## 11158    1.5 1255589173 2009-10-15 06:46:13
## 11159    3.5 1312496376 2011-08-04 22:19:36
## 11160    3.0 1456039039 2016-02-21 07:17:19
## 11161    1.0 1256029799 2009-10-20 09:09:59
## 11162    2.5 1256030665 2009-10-20 09:24:25
## 11163    3.5 1255844984 2009-10-18 05:49:44
## 11164    3.5 1411451654 2014-09-23 05:54:14
## 11165    2.5 1427170338 2015-03-24 04:12:18
## 11166    3.0 1255596174 2009-10-15 08:42:54
## 11167    4.0 1304412427 2011-05-03 08:47:07
## 11168    2.0 1456039261 2016-02-21 07:21:01
## 11169    3.5 1255742327 2009-10-17 01:18:47
## 11170    3.5 1348568288 2012-09-25 10:18:08
## 11171    4.5 1398568522 2014-04-27 03:15:22
## 11172    2.5 1456039172 2016-02-21 07:19:32
## 11173    4.5 1304411558 2011-05-03 08:32:38
## 11174    3.0 1255502811 2009-10-14 06:46:51
## 11175    3.0 1256017177 2009-10-20 05:39:37
## 11176    2.5 1256019169 2009-10-20 06:12:49
## 11177    4.0 1381126678 2013-10-07 06:17:58
## 11178    3.0 1255593134 2009-10-15 07:52:14
## 11179    3.0 1255608196 2009-10-15 12:03:16
## 11180    2.0 1255843862 2009-10-18 05:31:02
## 11181    0.5 1255588939 2009-10-15 06:42:19
## 11182    3.5 1441522129 2015-09-06 06:48:49
## 11183    0.5 1255588886 2009-10-15 06:41:26
## 11184    2.5 1255594684 2009-10-15 08:18:04
## 11185    4.0 1348568180 2012-09-25 10:16:20
## 11186    4.0 1464751323 2016-06-01 03:22:03
## 11187    4.0 1448953173 2015-12-01 06:59:33
## 11188    3.0 1296460230 2011-01-31 07:50:30
## 11189    3.5 1255591865 2009-10-15 07:31:05
## 11190    3.5 1475989020 2016-10-09 04:57:00
## 11191    0.5 1255592030 2009-10-15 07:33:50
## 11192    3.5 1304412144 2011-05-03 08:42:24
## 11193    4.5 1404370289 2014-07-03 06:51:29
## 11194    4.0 1255844819 2009-10-18 05:46:59
## 11195    3.0 1255597036 2009-10-15 08:57:16
## 11196    3.0 1256019079 2009-10-20 06:11:19
## 11197    2.5 1255742417 2009-10-17 01:20:17
## 11198    4.0 1255851182 2009-10-18 07:33:02
## 11199    4.5 1398568001 2014-04-27 03:06:41
## 11200    3.5 1359617333 2013-01-31 07:28:53
## 11201    3.0 1406172493 2014-07-24 03:28:13
## 11202    4.5 1347441796 2012-09-12 09:23:16
## 11203    3.5 1456038539 2016-02-21 07:08:59
## 11204    3.5 1469772963 2016-07-29 06:16:03
## 11205    4.0 1432788454 2015-05-28 04:47:34
## 11206    3.5 1437710037 2015-07-24 03:53:57
## 11207    4.0 1317177146 2011-09-28 02:32:26
## 11208    3.0 1255587770 2009-10-15 06:22:50
## 11209    4.0 1427170642 2015-03-24 04:17:22
## 11210    4.0 1427170496 2015-03-24 04:14:56
## 11211    2.5 1255589582 2009-10-15 06:53:02
## 11212    4.5 1359974275 2013-02-04 10:37:55
## 11213    4.0 1427170460 2015-03-24 04:14:20
## 11214    4.5 1423801920 2015-02-13 04:32:00
## 11215    4.5 1369206010 2013-05-22 07:00:10
## 11216    3.5 1255590127 2009-10-15 07:02:07
## 11217    2.5 1255501883 2009-10-14 06:31:23
## 11218    4.0 1319337509 2011-10-23 02:38:29
## 11219    4.0 1474263883 2016-09-19 05:44:43
## 11220    2.0 1256029681 2009-10-20 09:08:01
## 11221    4.5 1295874824 2011-01-24 13:13:44
## 11222    4.5 1282543364 2010-08-23 06:02:44
## 11223    2.5 1337593382 2012-05-21 09:43:02
## 11224    3.0 1255596884 2009-10-15 08:54:44
## 11225    1.0 1456039398 2016-02-21 07:23:18
## 11226    5.0 1350192496 2012-10-14 05:28:16
## 11227    3.5 1431234249 2015-05-10 05:04:09
## 11228    2.0 1255589041 2009-10-15 06:44:01
## 11229    3.5 1255947240 2009-10-19 10:14:00
## 11230    4.0 1427170205 2015-03-24 04:10:05
## 11231    3.0 1427168079 2015-03-24 03:34:39
## 11232    4.0 1319337521 2011-10-23 02:38:41
## 11233    3.5 1262838012 2010-01-07 04:20:12
## 11234    4.5 1422335423 2015-01-27 05:10:23
## 11235    5.0 1255844444 2009-10-18 05:40:44
## 11236    4.0 1381126659 2013-10-07 06:17:39
## 11237    3.5 1457597312 2016-03-10 08:08:32
## 11238    3.5 1469772912 2016-07-29 06:15:12
## 11239    3.0 1255596762 2009-10-15 08:52:42
## 11240    4.0 1406171407 2014-07-24 03:10:07
## 11241    3.5 1255844160 2009-10-18 05:36:00
## 11242    0.5 1354679048 2012-12-05 03:44:08
## 11243    1.0 1255587749 2009-10-15 06:22:29
## 11244    1.0 1255743146 2009-10-17 01:32:26
## 11245    4.5 1295591221 2011-01-21 06:27:01
## 11246    3.0 1255596758 2009-10-15 08:52:38
## 11247    3.0 1255595655 2009-10-15 08:34:15
## 11248    3.5 1337593113 2012-05-21 09:38:33
## 11249    3.0 1289046552 2010-11-06 12:29:12
## 11250    4.0 1469772672 2016-07-29 06:11:12
## 11251    4.5 1255508160 2009-10-14 08:16:00
## 11252    2.5 1255845334 2009-10-18 05:55:34
## 11253    3.0 1255843857 2009-10-18 05:30:57
## 11254    4.0 1301481269 2011-03-30 10:34:29
## 11255    1.0 1255587163 2009-10-15 06:12:43
## 11256    5.0 1259323569 2009-11-27 12:06:09
## 11257    4.0 1273217166 2010-05-07 07:26:06
## 11258    3.0 1255595926 2009-10-15 08:38:46
## 11259    2.0 1256018225 2009-10-20 05:57:05
## 11260    4.0 1345798859 2012-08-24 09:00:59
## 11261    3.0 1255507534 2009-10-14 08:05:34
## 11262    2.5 1255607814 2009-10-15 11:56:54
## 11263    3.0 1369513542 2013-05-25 20:25:42
## 11264    3.0 1257228496 2009-11-03 06:08:16
## 11265    3.0 1255591870 2009-10-15 07:31:10
## 11266    3.5 1255844803 2009-10-18 05:46:43
## 11267    3.5 1309414233 2011-06-30 06:10:33
## 11268    2.0 1255506326 2009-10-14 07:45:26
## 11269    3.0 1255596097 2009-10-15 08:41:37
## 11270    2.5 1255845337 2009-10-18 05:55:37
## 11271    3.5 1255508666 2009-10-14 08:24:26
## 11272    3.5 1255592012 2009-10-15 07:33:32
## 11273    3.0 1255845325 2009-10-18 05:55:25
## 11274    4.5 1289377714 2010-11-10 08:28:34
## 11275    4.0 1331809803 2012-03-15 11:10:03
## 11276    1.5 1256029685 2009-10-20 09:08:05
## 11277    3.5 1457320124 2016-03-07 03:08:44
## 11278    3.5 1256028349 2009-10-20 08:45:49
## 11279    3.5 1369513527 2013-05-25 20:25:27
## 11280    3.0 1255505821 2009-10-14 07:37:01
## 11281    1.5 1256029392 2009-10-20 09:03:12
## 11282    4.0 1348567955 2012-09-25 10:12:35
## 11283    3.5 1312496387 2011-08-04 22:19:47
## 11284    3.5 1411355658 2014-09-22 03:14:18
## 11285    3.0 1417081946 2014-11-27 09:52:26
## 11286    2.5 1257228521 2009-11-03 06:08:41
## 11287    4.0 1255503794 2009-10-14 07:03:14
## 11288    3.0 1255844003 2009-10-18 05:33:23
## 11289    3.0 1256030828 2009-10-20 09:27:08
## 11290    3.5 1454043394 2016-01-29 04:56:34
## 11291    3.5 1304412896 2011-05-03 08:54:56
## 11292    1.0 1255588757 2009-10-15 06:39:17
## 11293    4.0 1337593212 2012-05-21 09:40:12
## 11294    3.0 1256030820 2009-10-20 09:27:00
## 11295    4.0 1284880889 2010-09-19 07:21:29
## 11296    3.5 1255502976 2009-10-14 06:49:36
## 11297    4.0 1315969272 2011-09-14 03:01:12
## 11298    4.0 1304412870 2011-05-03 08:54:30
## 11299    3.0 1309414323 2011-06-30 06:12:03
## 11300    4.0 1302152616 2011-04-07 05:03:36
## 11301    4.5 1288782721 2010-11-03 11:12:01
## 11302    2.0 1256559191 2009-10-26 12:13:11
## 11303    4.0 1288096054 2010-10-26 12:27:34
## 11304    3.0 1427170230 2015-03-24 04:10:30
## 11305    2.5 1257229414 2009-11-03 06:23:34
## 11306    2.5 1454042655 2016-01-29 04:44:15
## 11307    4.0 1261217204 2009-12-19 10:06:44
## 11308    0.5 1255742925 2009-10-17 01:28:45
## 11309    1.0 1255591703 2009-10-15 07:28:23
## 11310    3.5 1255844928 2009-10-18 05:48:48
## 11311    2.5 1255742920 2009-10-17 01:28:40
## 11312    3.0 1255508977 2009-10-14 08:29:37
## 11313    4.0 1355922906 2012-12-19 13:15:06
## 11314    3.0 1369515354 2013-05-25 20:55:54
## 11315    0.5 1255587403 2009-10-15 06:16:43
## 11316    3.5 1255584710 2009-10-15 05:31:50
## 11317    1.0 1255586255 2009-10-15 05:57:35
## 11318    2.5 1454042857 2016-01-29 04:47:37
## 11319    2.5 1362112175 2013-03-01 04:29:35
## 11320    3.5 1411355653 2014-09-22 03:14:13
## 11321    4.0 1418784900 2014-12-17 02:55:00
## 11322    3.5 1255844905 2009-10-18 05:48:25
## 11323    3.5 1255593521 2009-10-15 07:58:41
## 11324    4.0 1303465599 2011-04-22 09:46:39
## 11325    3.0 1255504580 2009-10-14 07:16:20
## 11326    0.5 1255586400 2009-10-15 06:00:00
## 11327    4.0 1256027956 2009-10-20 08:39:16
## 11328    3.5 1296460156 2011-01-31 07:49:16
## 11329    3.5 1255502085 2009-10-14 06:34:45
## 11330    3.5 1255506853 2009-10-14 07:54:13
## 11331    3.5 1466320346 2016-06-19 07:12:26
## 11332    4.0 1345798905 2012-08-24 09:01:45
## 11333    0.5 1255587385 2009-10-15 06:16:25
## 11334    4.0 1369514062 2013-05-25 20:34:22
## 11335    3.5 1457597587 2016-03-10 08:13:07
## 11336    4.5 1354676065 2012-12-05 02:54:25
## 11337    4.5 1268806416 2010-03-17 06:13:36
## 11338    2.5 1256030711 2009-10-20 09:25:11
## 11339    4.0 1354676002 2012-12-05 02:53:22
## 11340    3.0 1422335258 2015-01-27 05:07:38
## 11341    2.5 1255586478 2009-10-15 06:01:18
## 11342    2.5 1259837617 2009-12-03 10:53:37
## 11343    3.5 1255502965 2009-10-14 06:49:25
## 11344    2.5 1257164355 2009-11-02 12:19:15
## 11345    3.0 1256030617 2009-10-20 09:23:37
## 11346    4.0 1306826934 2011-05-31 07:28:54
## 11347    5.0 1441514296 2015-09-06 04:38:16
## 11348    3.0 1286699648 2010-10-10 08:34:08
## 11349    2.5 1256030870 2009-10-20 09:27:50
## 11350    1.0 1255588747 2009-10-15 06:39:07
## 11351    1.0 1255586233 2009-10-15 05:57:13
## 11352    3.0 1255596877 2009-10-15 08:54:37
## 11353    2.5 1255845225 2009-10-18 05:53:45
## 11354    4.5 1337593162 2012-05-21 09:39:22
## 11355    4.0 1441514086 2015-09-06 04:34:46
## 11356    3.0 1255501684 2009-10-14 06:28:04
## 11357    4.0 1337593096 2012-05-21 09:38:16
## 11358    2.5 1309414319 2011-06-30 06:11:59
## 11359    3.0 1454042794 2016-01-29 04:46:34
## 11360    3.5 1255592002 2009-10-15 07:33:22
## 11361    3.5 1441513955 2015-09-06 04:32:35
## 11362    3.0 1256029140 2009-10-20 08:59:00
## 11363    3.5 1255502108 2009-10-14 06:35:08
## 11364    4.5 1315969200 2011-09-14 03:00:00
## 11365    2.0 1348568291 2012-09-25 10:18:11
## 11366    4.0 1255502672 2009-10-14 06:44:32
## 11367    3.0 1257228572 2009-11-03 06:09:32
## 11368    3.5 1255591698 2009-10-15 07:28:18
## 11369    2.0 1255742621 2009-10-17 01:23:41
## 11370    3.0 1255503784 2009-10-14 07:03:04
## 11371    4.5 1304411411 2011-05-03 08:30:11
## 11372    2.0 1256018404 2009-10-20 06:00:04
## 11373    4.0 1274526720 2010-05-22 11:12:00
## 11374    3.5 1384070152 2013-11-10 07:55:52
## 11375    4.0 1311653909 2011-07-26 04:18:29
## 11376    3.0 1257228718 2009-11-03 06:11:58
## 11377    2.5 1256018025 2009-10-20 05:53:45
## 11378    3.5 1312496372 2011-08-04 22:19:32
## 11379    2.0 1256029937 2009-10-20 09:12:17
## 11380    3.0 1256017323 2009-10-20 05:42:03
## 11381    3.0 1255947527 2009-10-19 10:18:47
## 11382    0.5 1255588933 2009-10-15 06:42:13
## 11383    4.0 1270610590 2010-04-07 03:23:10
## 11384    4.0 1260273754 2009-12-08 12:02:34
## 11385    3.0 1255503405 2009-10-14 06:56:45
## 11386    3.5 1323247224 2011-12-07 08:40:24
## 11387    3.5 1255844923 2009-10-18 05:48:43
## 11388    4.0 1285673360 2010-09-28 11:29:20
## 11389    4.0 1312496234 2011-08-04 22:17:14
## 11390    4.0 1312496164 2011-08-04 22:16:04
## 11391    4.0 1457598523 2016-03-10 08:28:43
## 11392    2.5 1256030803 2009-10-20 09:26:43
## 11393    3.0 1369514644 2013-05-25 20:44:04
## 11394    4.0 1264751836 2010-01-29 07:57:16
## 11395    3.5 1281668271 2010-08-13 02:57:51
## 11396    4.0 1302604152 2011-04-12 10:29:12
## 11397    3.0 1255844816 2009-10-18 05:46:56
## 11398    4.5 1259837542 2009-12-03 10:52:22
## 11399    3.5 1255501962 2009-10-14 06:32:42
## 11400    2.5 1256029998 2009-10-20 09:13:18
## 11401    4.5 1255508012 2009-10-14 08:13:32
## 11402    3.5 1255504199 2009-10-14 07:09:59
## 11403    2.0 1423801583 2015-02-13 04:26:23
## 11404    2.5 1286794236 2010-10-11 10:50:36
## 11405    4.0 1464751381 2016-06-01 03:23:01
## 11406    2.5 1255596747 2009-10-15 08:52:27
## 11407    3.5 1255505761 2009-10-14 07:36:01
## 11408    3.5 1255502960 2009-10-14 06:49:20
## 11409    3.0 1457598052 2016-03-10 08:20:52
## 11410    2.5 1255596552 2009-10-15 08:49:12
## 11411    2.5 1473060722 2016-09-05 07:32:02
## 11412    4.0 1255508166 2009-10-14 08:16:06
## 11413    2.0 1256559213 2009-10-26 12:13:33
## 11414    1.5 1255594676 2009-10-15 08:17:56
## 11415    3.5 1255844900 2009-10-18 05:48:20
## 11416    1.0 1255586222 2009-10-15 05:57:02
## 11417    3.0 1255592007 2009-10-15 07:33:27
## 11418    4.0 1255844632 2009-10-18 05:43:52
## 11419    1.5 1255596555 2009-10-15 08:49:15
## 11420    0.5 1255586134 2009-10-15 05:55:34
## 11421    1.0 1255501589 2009-10-14 06:26:29
## 11422    3.0 1454042795 2016-01-29 04:46:35
## 11423    4.0 1471759060 2016-08-21 05:57:40
## 11424    1.0 1255586976 2009-10-15 06:09:36
## 11425    4.0 1259837601 2009-12-03 10:53:21
## 11426    5.0 1345798871 2012-08-24 09:01:11
## 11427    3.5 1427170416 2015-03-24 04:13:36
## 11428    3.0 1255501647 2009-10-14 06:27:27
## 11429    2.5 1435472881 2015-06-28 06:28:01
## 11430    3.5 1454042671 2016-01-29 04:44:31
## 11431    1.0 1255589062 2009-10-15 06:44:22
## 11432    2.5 1454043041 2016-01-29 04:50:41
## 11433    3.0 1255597366 2009-10-15 09:02:46
## 11434    3.0 1255596548 2009-10-15 08:49:08
## 11435    3.5 1255606270 2009-10-15 11:31:10
## 11436    1.5 1255591493 2009-10-15 07:24:53
## 11437    2.5 1257228964 2009-11-03 06:16:04
## 11438    2.0 1454042917 2016-01-29 04:48:37
## 11439    4.5 1255607031 2009-10-15 11:43:51
## 11440    2.0 1255503396 2009-10-14 06:56:36
## 11441    3.0 1255508072 2009-10-14 08:14:32
## 11442    2.5 1255591693 2009-10-15 07:28:13
## 11443    2.0 1255593506 2009-10-15 07:58:26
## 11444    2.0 1255844138 2009-10-18 05:35:38
## 11445    4.0 1255503392 2009-10-14 06:56:32
## 11446    5.0 1259323222 2009-11-27 12:00:22
## 11447    3.5 1437711118 2015-07-24 04:11:58
## 11448    4.0 1259323854 2009-11-27 12:10:54
## 11449    3.0 1255505738 2009-10-14 07:35:38
## 11450    3.0 1288697624 2010-11-02 11:33:44
## 11451    4.0 1304411580 2011-05-03 08:33:00
## 11452    3.5 1457597334 2016-03-10 08:08:54
## 11453    3.5 1255843975 2009-10-18 05:32:55
## 11454    3.0 1369514646 2013-05-25 20:44:06
## 11455    3.5 1457318292 2016-03-07 02:38:12
## 11456    0.5 1255588727 2009-10-15 06:38:47
## 11457    3.5 1255844953 2009-10-18 05:49:13
## 11458    1.0 1256559067 2009-10-26 12:11:07
## 11459    3.5 1430034154 2015-04-26 07:42:34
## 11460    4.0 1384069863 2013-11-10 07:51:03
## 11461    0.5 1255587337 2009-10-15 06:15:37
## 11462    3.5 1255504546 2009-10-14 07:15:46
## 11463    3.5 1266309913 2010-02-16 08:45:13
## 11464    5.0 1255587902 2009-10-15 06:25:02
## 11465    2.0 1256018282 2009-10-20 05:58:02
## 11466    3.0 1255742863 2009-10-17 01:27:43
## 11467    0.5 1255586420 2009-10-15 06:00:20
## 11468    3.0 1337593619 2012-05-21 09:46:59
## 11469    4.0 1259325788 2009-11-27 12:43:08
## 11470    2.0 1454042733 2016-01-29 04:45:33
## 11471    4.0 1441513491 2015-09-06 04:24:51
## 11472    1.0 1255589051 2009-10-15 06:44:11
## 11473    4.5 1296209705 2011-01-28 10:15:05
## 11474    4.0 1312495981 2011-08-04 22:13:01
## 11475    5.0 1267705501 2010-03-04 12:25:01
## 11476    4.0 1435472671 2015-06-28 06:24:31
## 11477    4.5 1255606209 2009-10-15 11:30:09
## 11478    3.5 1418785824 2014-12-17 03:10:24
## 11479    4.0 1262826563 2010-01-07 01:09:23
## 11480    3.0 1406172474 2014-07-24 03:27:54
## 11481    4.5 1329122482 2012-02-13 08:41:22
## 11482    3.5 1460517652 2016-04-13 03:20:52
## 11483    0.5 1255506219 2009-10-14 07:43:39
## 11484    4.0 1432523734 2015-05-25 03:15:34
## 11485    3.5 1255851305 2009-10-18 07:35:05
## 11486    3.5 1255501824 2009-10-14 06:30:24
## 11487    4.0 1441513660 2015-09-06 04:27:40
## 11488    3.5 1427170617 2015-03-24 04:16:57
## 11489    4.0 1334134888 2012-04-11 09:01:28
## 11490    3.0 1255509258 2009-10-14 08:34:18
## 11491    3.0 1273231862 2010-05-07 11:31:02
## 11492    3.5 1423801587 2015-02-13 04:26:27
## 11493    3.5 1369515334 2013-05-25 20:55:34
## 11494    4.0 1272351330 2010-04-27 06:55:30
## 11495    4.0 1259037238 2009-11-24 04:33:58
## 11496    4.0 1315969142 2011-09-14 02:59:02
## 11497    4.0 1256944127 2009-10-30 23:08:47
## 11498    3.0 1454042683 2016-01-29 04:44:43
## 11499    3.5 1255508067 2009-10-14 08:14:27
## 11500    3.0 1257228665 2009-11-03 06:11:05
## 11501    2.5 1454042767 2016-01-29 04:46:07
## 11502    3.5 1289995423 2010-11-17 12:03:43
## 11503    3.5 1348567926 2012-09-25 10:12:06
## 11504    4.0 1284880892 2010-09-19 07:21:32
## 11505    2.5 1255851331 2009-10-18 07:35:31
## 11506    0.5 1261217423 2009-12-19 10:10:23
## 11507    3.5 1255584542 2009-10-15 05:29:02
## 11508    3.0 1260280418 2009-12-08 13:53:38
## 11509    4.0 1262471588 2010-01-02 22:33:08
## 11510    3.5 1256639055 2009-10-27 10:24:15
## 11511    3.0 1476086345 2016-10-10 07:59:05
## 11512    2.5 1255850946 2009-10-18 07:29:06
## 11513    4.5 1275964203 2010-06-08 02:30:03
## 11514    3.5 1312496413 2011-08-04 22:20:13
## 11515    3.5 1255505699 2009-10-14 07:34:59
## 11516    4.0 1319336907 2011-10-23 02:28:27
## 11517    0.5 1257228032 2009-11-03 06:00:32
## 11518    3.0 1263197192 2010-01-11 08:06:32
## 11519    4.0 1312496343 2011-08-04 22:19:03
## 11520    4.5 1406172090 2014-07-24 03:21:30
## 11521    3.5 1264835071 2010-01-30 07:04:31
## 11522    3.5 1268808266 2010-03-17 06:44:26
## 11523    4.5 1457597657 2016-03-10 08:14:17
## 11524    4.0 1280749920 2010-08-02 11:52:00
## 11525    4.0 1262487606 2010-01-03 03:00:06
## 11526    3.0 1262490949 2010-01-03 03:55:49
## 11527    4.0 1257418656 2009-11-05 10:57:36
## 11528    3.5 1369514017 2013-05-25 20:33:37
## 11529    2.0 1260877856 2009-12-15 11:50:56
## 11530    4.0 1262660477 2010-01-05 03:01:17
## 11531    3.5 1441513896 2015-09-06 04:31:36
## 11532    4.0 1311319024 2011-07-22 07:17:04
## 11533    3.0 1437711220 2015-07-24 04:13:40
## 11534    4.0 1279948740 2010-07-24 05:19:00
## 11535    4.5 1279948672 2010-07-24 05:17:52
## 11536    4.0 1261487370 2009-12-22 13:09:30
## 11537    4.0 1331019387 2012-03-06 07:36:27
## 11538    3.0 1270610716 2010-04-07 03:25:16
## 11539    3.0 1279948662 2010-07-24 05:17:42
## 11540    4.0 1273212258 2010-05-07 06:04:18
## 11541    4.5 1270626393 2010-04-07 07:46:33
## 11542    4.5 1369205637 2013-05-22 06:53:57
## 11543    4.0 1284788822 2010-09-18 05:47:02
## 11544    3.5 1432523566 2015-05-25 03:12:46
## 11545    3.5 1279947051 2010-07-24 04:50:51
## 11546    4.0 1288782501 2010-11-03 11:08:21
## 11547    3.5 1471493475 2016-08-18 04:11:15
## 11548    2.0 1288697300 2010-11-02 11:28:20
## 11549    3.5 1277244869 2010-06-22 22:14:29
## 11550    4.0 1287639123 2010-10-21 05:32:03
## 11551    4.5 1274171831 2010-05-18 08:37:11
## 11552    3.5 1279948640 2010-07-24 05:17:20
## 11553    2.5 1286184933 2010-10-04 09:35:33
## 11554    3.5 1293747419 2010-12-30 22:16:59
## 11555    3.5 1293747383 2010-12-30 22:16:23
## 11556    2.5 1454042956 2016-01-29 04:49:16
## 11557    3.0 1286699464 2010-10-10 08:31:04
## 11558    2.5 1295874843 2011-01-24 13:14:03
## 11559    3.5 1289045492 2010-11-06 12:11:32
## 11560    3.0 1369514012 2013-05-25 20:33:32
## 11561    4.5 1290170524 2010-11-19 12:42:04
## 11562    3.5 1288262844 2010-10-28 10:47:24
## 11563    2.0 1454041525 2016-01-29 04:25:25
## 11564    4.5 1280207089 2010-07-27 05:04:49
## 11565    3.5 1337594376 2012-05-21 09:59:36
## 11566    4.0 1334134881 2012-04-11 09:01:21
## 11567    4.0 1354676128 2012-12-05 02:55:28
## 11568    3.5 1296730408 2011-02-03 10:53:28
## 11569    3.5 1470450406 2016-08-06 02:26:46
## 11570    4.0 1281668137 2010-08-13 02:55:37
## 11571    5.0 1286364707 2010-10-06 11:31:47
## 11572    3.5 1334396237 2012-04-14 09:37:17
## 11573    3.5 1337593917 2012-05-21 09:51:57
## 11574    4.0 1290923031 2010-11-28 05:43:51
## 11575    3.5 1476081506 2016-10-10 06:38:26
## 11576    2.5 1457597559 2016-03-10 08:12:39
## 11577    3.5 1304412705 2011-05-03 08:51:45
## 11578    4.0 1288095832 2010-10-26 12:23:52
## 11579    4.5 1295875330 2011-01-24 13:22:10
## 11580    4.0 1293747396 2010-12-30 22:16:36
## 11581    4.0 1303283044 2011-04-20 07:04:04
## 11582    3.0 1320810425 2011-11-09 03:47:05
## 11583    2.5 1457597487 2016-03-10 08:11:27
## 11584    3.5 1437709564 2015-07-24 03:46:04
## 11585    3.5 1300946992 2011-03-24 06:09:52
## 11586    5.0 1303464661 2011-04-22 09:31:01
## 11587    4.0 1294806059 2011-01-12 04:20:59
## 11588    2.5 1406172509 2014-07-24 03:28:29
## 11589    4.0 1331889469 2012-03-16 09:17:49
## 11590    4.0 1312496405 2011-08-04 22:20:05
## 11591    4.0 1301291585 2011-03-28 05:53:05
## 11592    3.5 1471332805 2016-08-16 07:33:25
## 11593    4.0 1411355319 2014-09-22 03:08:39
## 11594    4.0 1311318839 2011-07-22 07:13:59
## 11595    4.5 1374355498 2013-07-20 21:24:58
## 11596    4.0 1323226011 2011-12-07 02:46:51
## 11597    3.0 1411452415 2014-09-23 06:06:55
## 11598    4.0 1311318846 2011-07-22 07:14:06
## 11599    3.0 1315968775 2011-09-14 02:52:55
## 11600    4.0 1311651421 2011-07-26 03:37:01
## 11601    5.0 1308222797 2011-06-16 11:13:17
## 11602    4.5 1431584367 2015-05-14 06:19:27
## 11603    4.5 1315968748 2011-09-14 02:52:28
## 11604    4.0 1348567976 2012-09-25 10:12:56
## 11605    3.5 1317176746 2011-09-28 02:25:46
## 11606    4.0 1384069356 2013-11-10 07:42:36
## 11607    3.5 1369515303 2013-05-25 20:55:03
## 11608    4.5 1330240107 2012-02-26 07:08:27
## 11609    4.5 1348567873 2012-09-25 10:11:13
## 11610    4.0 1316757783 2011-09-23 06:03:03
## 11611    4.0 1319336798 2011-10-23 02:26:38
## 11612    3.5 1457597592 2016-03-10 08:13:12
## 11613    4.0 1320810413 2011-11-09 03:46:53
## 11614    3.5 1319336835 2011-10-23 02:27:15
## 11615    4.0 1317176741 2011-09-28 02:25:41
## 11616    4.5 1312496402 2011-08-04 22:20:02
## 11617    3.5 1345798952 2012-08-24 09:02:32
## 11618    3.5 1357553094 2013-01-07 10:04:54
## 11619    4.0 1320810254 2011-11-09 03:44:14
## 11620    3.5 1324634215 2011-12-23 09:56:55
## 11621    3.5 1325543528 2012-01-02 22:32:08
## 11622    4.5 1323857570 2011-12-14 10:12:50
## 11623    3.5 1431406208 2015-05-12 04:50:08
## 11624    3.0 1329461095 2012-02-17 06:44:55
## 11625    4.5 1337593575 2012-05-21 09:46:15
## 11626    4.5 1324634205 2011-12-23 09:56:45
## 11627    3.0 1329122460 2012-02-13 08:41:00
## 11628    3.5 1345799028 2012-08-24 09:03:48
## 11629    3.5 1325685214 2012-01-04 13:53:34
## 11630    3.5 1329461077 2012-02-17 06:44:37
## 11631    4.0 1430706568 2015-05-04 02:29:28
## 11632    3.5 1348568449 2012-09-25 10:20:49
## 11633    4.0 1337593368 2012-05-21 09:42:48
## 11634    4.0 1345798866 2012-08-24 09:01:06
## 11635    4.0 1326315218 2012-01-11 20:53:38
## 11636    4.0 1334396206 2012-04-14 09:36:46
## 11637    3.0 1457597425 2016-03-10 08:10:25
## 11638    3.0 1329986644 2012-02-23 08:44:04
## 11639    5.0 1448953095 2015-12-01 06:58:15
## 11640    3.0 1411452403 2014-09-23 06:06:43
## 11641    3.5 1345799036 2012-08-24 09:03:56
## 11642    4.0 1334396050 2012-04-14 09:34:10
## 11643    3.5 1348568088 2012-09-25 10:14:48
## 11644    4.5 1339743740 2012-06-15 07:02:20
## 11645    4.0 1348568138 2012-09-25 10:15:38
## 11646    5.0 1347441732 2012-09-12 09:22:12
## 11647    2.5 1352959770 2012-11-15 06:09:30
## 11648    4.0 1350192390 2012-10-14 05:26:30
## 11649    4.0 1352959766 2012-11-15 06:09:26
## 11650    3.5 1351406444 2012-10-28 06:40:44
## 11651    4.0 1339743735 2012-06-15 07:02:15
## 11652    4.0 1351406414 2012-10-28 06:40:14
## 11653    4.0 1357552636 2013-01-07 09:57:16
## 11654    3.5 1437711595 2015-07-24 04:19:55
## 11655    3.0 1398570058 2014-04-27 03:40:58
## 11656    3.0 1398570053 2014-04-27 03:40:53
## 11657    4.0 1355736140 2012-12-17 09:22:20
## 11658    3.5 1437711059 2015-07-24 04:10:59
## 11659    4.5 1398570027 2014-04-27 03:40:27
## 11660    4.5 1398570019 2014-04-27 03:40:19
## 11661    4.0 1345799054 2012-08-24 09:04:14
## 11662    3.5 1358144551 2013-01-14 06:22:31
## 11663    3.5 1437711174 2015-07-24 04:12:54
## 11664    3.5 1398570077 2014-04-27 03:41:17
## 11665    3.5 1348568386 2012-09-25 10:19:46
## 11666    3.5 1398570066 2014-04-27 03:41:06
## 11667    4.5 1398569999 2014-04-27 03:39:59
## 11668    4.0 1398569927 2014-04-27 03:38:47
## 11669    3.5 1437711131 2015-07-24 04:12:11
## 11670    4.5 1354675993 2012-12-05 02:53:13
## 11671    2.5 1359358796 2013-01-28 07:39:56
## 11672    3.0 1348568337 2012-09-25 10:18:57
## 11673    3.5 1441514105 2015-09-06 04:35:05
## 11674    3.5 1454043300 2016-01-29 04:55:00
## 11675    4.0 1354675986 2012-12-05 02:53:06
## 11676    3.5 1369515292 2013-05-25 20:54:52
## 11677    4.0 1374355461 2013-07-20 21:24:21
## 11678    4.5 1374355516 2013-07-20 21:25:16
## 11679    4.0 1374355492 2013-07-20 21:24:52
## 11680    4.5 1357552147 2013-01-07 09:49:07
## 11681    3.5 1357552193 2013-01-07 09:49:53
## 11682    3.5 1369206362 2013-05-22 07:06:02
## 11683    4.0 1369205846 2013-05-22 06:57:26
## 11684    3.5 1374355488 2013-07-20 21:24:48
## 11685    4.5 1357552149 2013-01-07 09:49:09
## 11686    3.5 1437710825 2015-07-24 04:07:05
## 11687    4.5 1355735865 2012-12-17 09:17:45
## 11688    4.0 1427170660 2015-03-24 04:17:40
## 11689    4.0 1364009534 2013-03-23 03:32:14
## 11690    3.5 1357552186 2013-01-07 09:49:46
## 11691    4.5 1369206612 2013-05-22 07:10:12
## 11692    4.0 1362112152 2013-03-01 04:29:12
## 11693    3.5 1370057754 2013-06-01 03:35:54
## 11694    4.0 1437709595 2015-07-24 03:46:35
## 11695    4.0 1369205631 2013-05-22 06:53:51
## 11696    4.5 1437104737 2015-07-17 03:45:37
## 11697    4.0 1409452760 2014-08-31 02:39:20
## 11698    3.5 1411452577 2014-09-23 06:09:37
## 11699    3.5 1378179817 2013-09-03 03:43:37
## 11700    4.0 1454043331 2016-01-29 04:55:31
## 11701    4.0 1395986174 2014-03-28 05:56:14
## 11702    4.5 1427170676 2015-03-24 04:17:56
## 11703    2.5 1454041530 2016-01-29 04:25:30
## 11704    4.0 1369205577 2013-05-22 06:52:57
## 11705    3.5 1374355582 2013-07-20 21:26:22
## 11706    4.0 1437104788 2015-07-17 03:46:28
## 11707    3.0 1409452741 2014-08-31 02:39:01
## 11708    4.0 1437104521 2015-07-17 03:42:01
## 11709    2.5 1457596601 2016-03-10 07:56:41
## 11710    2.5 1454042845 2016-01-29 04:47:25
## 11711    3.0 1406171923 2014-07-24 03:18:43
## 11712    2.0 1457597113 2016-03-10 08:05:13
## 11713    3.0 1437104561 2015-07-17 03:42:41
## 11714    3.5 1418462292 2014-12-13 09:18:12
## 11715    3.0 1427170398 2015-03-24 04:13:18
## 11716    4.5 1395986150 2014-03-28 05:55:50
## 11717    4.5 1395986058 2014-03-28 05:54:18
## 11718    4.5 1398567572 2014-04-27 02:59:32
## 11719    3.5 1457597402 2016-03-10 08:10:02
## 11720    4.0 1395986019 2014-03-28 05:53:39
## 11721    3.5 1411452394 2014-09-23 06:06:34
## 11722    4.0 1411355255 2014-09-22 03:07:35
## 11723    4.5 1398567543 2014-04-27 02:59:03
## 11724    0.5 1390015641 2014-01-18 03:27:21
## 11725    3.5 1404370211 2014-07-03 06:50:11
## 11726    3.0 1427170708 2015-03-24 04:18:28
## 11727    4.5 1395986157 2014-03-28 05:55:57
## 11728    4.5 1395986160 2014-03-28 05:56:00
## 11729    3.5 1404370215 2014-07-03 06:50:15
## 11730    4.0 1418461939 2014-12-13 09:12:19
## 11731    3.5 1406172291 2014-07-24 03:24:51
## 11732    3.5 1457597419 2016-03-10 08:10:19
## 11733    4.0 1454043018 2016-01-29 04:50:18
## 11734    3.5 1427170706 2015-03-24 04:18:26
## 11735    3.5 1398570071 2014-04-27 03:41:11
## 11736    3.5 1437711587 2015-07-24 04:19:47
## 11737    3.5 1411452354 2014-09-23 06:05:54
## 11738    5.0 1435472609 2015-06-28 06:23:29
## 11739    4.0 1410578415 2014-09-13 03:20:15
## 11740    3.5 1437104540 2015-07-17 03:42:20
## 11741    4.0 1427170717 2015-03-24 04:18:37
## 11742    4.5 1417081790 2014-11-27 09:49:50
## 11743    4.5 1422335272 2015-01-27 05:07:52
## 11744    3.0 1411452818 2014-09-23 06:13:38
## 11745    3.5 1409452259 2014-08-31 02:30:59
## 11746    2.0 1411452812 2014-09-23 06:13:32
## 11747    4.0 1432523533 2015-05-25 03:12:13
## 11748    4.5 1404370180 2014-07-03 06:49:40
## 11749    3.0 1409452254 2014-08-31 02:30:54
## 11750    3.0 1457597194 2016-03-10 08:06:34
## 11751    4.0 1411355333 2014-09-22 03:08:53
## 11752    2.5 1454043389 2016-01-29 04:56:29
## 11753    3.5 1423801674 2015-02-13 04:27:54
## 11754    2.5 1454043328 2016-01-29 04:55:28
## 11755    4.0 1411355268 2014-09-22 03:07:48
## 11756    3.5 1454043334 2016-01-29 04:55:34
## 11757    4.0 1454043365 2016-01-29 04:56:05
## 11758    4.5 1427168087 2015-03-24 03:34:47
## 11759    2.5 1423801598 2015-02-13 04:26:38
## 11760    3.5 1422335674 2015-01-27 05:14:34
## 11761    4.5 1427168057 2015-03-24 03:34:17
## 11762    4.0 1422335277 2015-01-27 05:07:57
## 11763    3.0 1454042867 2016-01-29 04:47:47
## 11764    3.0 1457597515 2016-03-10 08:11:55
## 11765    5.0 1409205899 2014-08-28 06:04:59
## 11766    4.0 1418462083 2014-12-13 09:14:43
## 11767    2.5 1427170549 2015-03-24 04:15:49
## 11768    3.0 1457597407 2016-03-10 08:10:07
## 11769    4.0 1437104690 2015-07-17 03:44:50
## 11770    3.5 1418462052 2014-12-13 09:14:12
## 11771    4.0 1431406217 2015-05-12 04:50:17
## 11772    3.0 1457597605 2016-03-10 08:13:25
## 11773    4.5 1417081980 2014-11-27 09:53:00
## 11774    5.0 1448953211 2015-12-01 07:00:11
## 11775    3.5 1423801646 2015-02-13 04:27:26
## 11776    4.0 1417593332 2014-12-03 07:55:32
## 11777    4.5 1423801600 2015-02-13 04:26:40
## 11778    4.0 1432523152 2015-05-25 03:05:52
## 11779    3.5 1437711208 2015-07-24 04:13:28
## 11780    3.0 1437711165 2015-07-24 04:12:45
## 11781    3.5 1418462066 2014-12-13 09:14:26
## 11782    4.0 1432788703 2015-05-28 04:51:43
## 11783    0.5 1454042838 2016-01-29 04:47:18
## 11784    3.0 1457597665 2016-03-10 08:14:25
## 11785    4.0 1457597352 2016-03-10 08:09:12
## 11786    3.0 1454042923 2016-01-29 04:48:43
## 11787    3.5 1431232449 2015-05-10 04:34:09
## 11788    3.0 1454042873 2016-01-29 04:47:53
## 11789    3.5 1454042779 2016-01-29 04:46:19
## 11790    3.5 1431233322 2015-05-10 04:48:42
## 11791    3.5 1431233272 2015-05-10 04:47:52
## 11792    5.0 1435472640 2015-06-28 06:24:00
## 11793    4.5 1454041548 2016-01-29 04:25:48
## 11794    4.0 1466320057 2016-06-19 07:07:37
## 11795    3.0 1466320222 2016-06-19 07:10:22
## 11796    4.5 1456038880 2016-02-21 07:14:40
## 11797    3.5 1474255427 2016-09-19 03:23:47
## 11798    3.5 1437711226 2015-07-24 04:13:46
## 11799    3.5 1457597882 2016-03-10 08:18:02
## 11800    4.5 1460517538 2016-04-13 03:18:58
## 11801    3.5 1437709660 2015-07-24 03:47:40
## 11802    3.5 1432523179 2015-05-25 03:06:19
## 11803    3.5 1466320172 2016-06-19 07:09:32
## 11804    4.5 1448953050 2015-12-01 06:57:30
## 11805    3.0 1466320258 2016-06-19 07:10:58
## 11806    3.5 1470720695 2016-08-09 05:31:35
## 11807    4.0 1437711245 2015-07-24 04:14:05
## 11808    4.0 1460517533 2016-04-13 03:18:53
## 11809    3.5 1457597863 2016-03-10 08:17:43
## 11810    3.0 1456038901 2016-02-21 07:15:01
## 11811    4.0 1456038576 2016-02-21 07:09:36
## 11812    3.5 1471332767 2016-08-16 07:32:47
## 11813    4.0 1469772876 2016-07-29 06:14:36
## 11814    4.0 1456038516 2016-02-21 07:08:36
## 11815    3.5 1457332236 2016-03-07 06:30:36
## 11816    3.5 1466320302 2016-06-19 07:11:42
## 11817    3.0 1466320393 2016-06-19 07:13:13
## 11818    4.0 1476080611 2016-10-10 06:23:31
## 11819    3.5 1460517484 2016-04-13 03:18:04
## 11820    4.0 1470719796 2016-08-09 05:16:36
## 11821    3.0 1469772608 2016-07-29 06:10:08
## 11822    3.5 1473060620 2016-09-05 07:30:20
## 11823    3.0 1474255459 2016-09-19 03:24:19
## 11824    4.5 1474255532 2016-09-19 03:25:32
## 11825    5.0  942704394 1999-11-15 22:19:54
## 11826    3.0  942705457 1999-11-15 22:37:37
## 11827    4.0  942705568 1999-11-15 22:39:28
## 11828    4.0  942703730 1999-11-15 22:08:50
## 11829    5.0  942705318 1999-11-15 22:35:18
## 11830    4.0  942703172 1999-11-15 21:59:32
## 11831    5.0  942705457 1999-11-15 22:37:37
## 11832    4.0  942705608 1999-11-15 22:40:08
## 11833    5.0  942705304 1999-11-15 22:35:04
## 11834    5.0  942703172 1999-11-15 21:59:32
## 11835    1.0  942703569 1999-11-15 22:06:09
## 11836    5.0  942705568 1999-11-15 22:39:28
## 11837    4.0  942703337 1999-11-15 22:02:17
## 11838    3.0  942703678 1999-11-15 22:07:58
## 11839    3.0  942705648 1999-11-15 22:40:48
## 11840    5.0  942703678 1999-11-15 22:07:58
## 11841    5.0  942705496 1999-11-15 22:38:16
## 11842    5.0  942705496 1999-11-15 22:38:16
## 11843    5.0  942705381 1999-11-15 22:36:21
## 11844    4.0  942705413 1999-11-15 22:36:53
## 11845    4.0  942703172 1999-11-15 21:59:32
## 11846    4.0  942703172 1999-11-15 21:59:32
## 11847    5.0  942705533 1999-11-15 22:38:53
## 11848    4.0  942705382 1999-11-15 22:36:22
## 11849    2.0  942705232 1999-11-15 22:33:52
## 11850    5.0  942704332 1999-11-15 22:18:52
## 11851    3.0  942704723 1999-11-15 22:25:23
## 11852    4.0  942702876 1999-11-15 21:54:36
## 11853    5.0  942703038 1999-11-15 21:57:18
## 11854    3.0  942705496 1999-11-15 22:38:16
## 11855    4.0  942705608 1999-11-15 22:40:08
## 11856    4.0  942703038 1999-11-15 21:57:18
## 11857    4.0  942703038 1999-11-15 21:57:18
## 11858    5.0  942703474 1999-11-15 22:04:34
## 11859    5.0  942705708 1999-11-15 22:41:48
## 11860    4.0  942704005 1999-11-15 22:13:25
## 11861    3.0  942704863 1999-11-15 22:27:43
## 11862    4.0  942704616 1999-11-15 22:23:36
## 11863    5.0  942703337 1999-11-15 22:02:17
## 11864    5.0  942705899 1999-11-15 22:44:59
## 11865    4.0  942704668 1999-11-15 22:24:28
## 11866    3.0  942704192 1999-11-15 22:16:32
## 11867    5.0  942705678 1999-11-15 22:41:18
## 11868    4.0  942705303 1999-11-15 22:35:03
## 11869    4.0  942703093 1999-11-15 21:58:13
## 11870    3.0  942705648 1999-11-15 22:40:48
## 11871    4.0  942702937 1999-11-15 21:55:37
## 11872    4.0  942702971 1999-11-15 21:56:11
## 11873    4.0  942703538 1999-11-15 22:05:38
## 11874    3.0 1165607201 2006-12-08 19:46:41
## 11875    3.0 1143047700 2006-03-22 17:15:00
## 11876    4.0 1165607192 2006-12-08 19:46:32
## 11877    4.0 1143049641 2006-03-22 17:47:21
## 11878    4.5 1143048074 2006-03-22 17:21:14
## 11879    4.5 1143049571 2006-03-22 17:46:11
## 11880    2.0 1165607377 2006-12-08 19:49:37
## 11881    4.0 1165597501 2006-12-08 17:05:01
## 11882    3.0 1143047643 2006-03-22 17:14:03
## 11883    4.5 1143048140 2006-03-22 17:22:20
## 11884    4.0 1143048117 2006-03-22 17:21:57
## 11885    2.0 1143047471 2006-03-22 17:11:11
## 11886    4.0 1143049541 2006-03-22 17:45:41
## 11887    0.5 1165607346 2006-12-08 19:49:06
## 11888    2.0 1143047458 2006-03-22 17:10:58
## 11889    3.0 1143047880 2006-03-22 17:18:00
## 11890    0.5 1143047478 2006-03-22 17:11:18
## 11891    3.0 1165596956 2006-12-08 16:55:56
## 11892    4.0 1143048687 2006-03-22 17:31:27
## 11893    4.0 1143048797 2006-03-22 17:33:17
## 11894    4.0 1165607264 2006-12-08 19:47:44
## 11895    1.0 1143047916 2006-03-22 17:18:36
## 11896    4.0 1143047668 2006-03-22 17:14:28
## 11897    1.0 1143047463 2006-03-22 17:11:03
## 11898    3.0 1143048961 2006-03-22 17:36:01
## 11899    1.0 1143048947 2006-03-22 17:35:47
## 11900    1.0 1165596837 2006-12-08 16:53:57
## 11901    3.0 1143048856 2006-03-22 17:34:16
## 11902    4.0 1143049098 2006-03-22 17:38:18
## 11903    4.5 1143049193 2006-03-22 17:39:53
## 11904    4.5 1143049074 2006-03-22 17:37:54
## 11905    4.0 1165607749 2006-12-08 19:55:49
## 11906    4.0 1143048735 2006-03-22 17:32:15
## 11907    4.0 1165607773 2006-12-08 19:56:13
## 11908    0.5 1143047705 2006-03-22 17:15:05
## 11909    3.0 1143047928 2006-03-22 17:18:48
## 11910    4.0 1143048680 2006-03-22 17:31:20
## 11911    3.5 1165607559 2006-12-08 19:52:39
## 11912    4.0 1165607472 2006-12-08 19:51:12
## 11913    3.5 1143048840 2006-03-22 17:34:00
## 11914    3.5 1143048887 2006-03-22 17:34:47
## 11915    0.5 1143048986 2006-03-22 17:36:26
## 11916    4.0 1143048691 2006-03-22 17:31:31
## 11917    4.0 1165596756 2006-12-08 16:52:36
## 11918    0.5 1143048977 2006-03-22 17:36:17
## 11919    1.0 1143047503 2006-03-22 17:11:43
## 11920    3.0 1143048836 2006-03-22 17:33:56
## 11921    3.0 1165607261 2006-12-08 19:47:41
## 11922    4.0 1165607757 2006-12-08 19:55:57
## 11923    4.5 1143047710 2006-03-22 17:15:10
## 11924    4.0 1165607737 2006-12-08 19:55:37
## 11925    3.5 1165607211 2006-12-08 19:46:51
## 11926    4.0 1165607206 2006-12-08 19:46:46
## 11927    4.0 1143048849 2006-03-22 17:34:09
## 11928    4.0 1165596933 2006-12-08 16:55:33
## 11929    4.0 1143048844 2006-03-22 17:34:04
## 11930    4.5 1165607763 2006-12-08 19:56:03
## 11931    3.0 1143048004 2006-03-22 17:20:04
## 11932    2.0 1143048064 2006-03-22 17:21:04
## 11933    0.5 1165607144 2006-12-08 19:45:44
## 11934    0.5 1143048164 2006-03-22 17:22:44
## 11935    3.5 1143048156 2006-03-22 17:22:36
## 11936    3.0 1143047444 2006-03-22 17:10:44
## 11937    2.5 1143049592 2006-03-22 17:46:32
## 11938    4.0 1143047448 2006-03-22 17:10:48
## 11939    4.0 1143048056 2006-03-22 17:20:56
## 11940    3.0 1165607364 2006-12-08 19:49:24
## 11941    0.5 1143047624 2006-03-22 17:13:44
## 11942    3.0 1143048523 2006-03-22 17:28:43
## 11943    3.0 1143047921 2006-03-22 17:18:41
## 11944    3.0 1143048053 2006-03-22 17:20:53
## 11945    3.5 1143048090 2006-03-22 17:21:30
## 11946    4.5 1143047874 2006-03-22 17:17:54
## 11947    3.5 1143047679 2006-03-22 17:14:39
## 11948    3.0 1143047997 2006-03-22 17:19:57
## 11949    3.0 1143048070 2006-03-22 17:21:10
## 11950    4.5 1143048175 2006-03-22 17:22:55
## 11951    2.5 1165607133 2006-12-08 19:45:33
## 11952    3.5 1143047685 2006-03-22 17:14:45
## 11953    4.0 1165607636 2006-12-08 19:53:56
## 11954    3.5 1143048532 2006-03-22 17:28:52
## 11955    4.0 1165596884 2006-12-08 16:54:44
## 11956    4.0 1143047960 2006-03-22 17:19:20
## 11957    2.5 1143048305 2006-03-22 17:25:05
## 11958    2.0 1143047636 2006-03-22 17:13:56
## 11959    3.0 1143048520 2006-03-22 17:28:40
## 11960    4.5 1143048106 2006-03-22 17:21:46
## 11961    2.5 1143049630 2006-03-22 17:47:10
## 11962    4.5 1143048615 2006-03-22 17:30:15
## 11963    4.0 1143049615 2006-03-22 17:46:55
## 11964    5.0 1165607547 2006-12-08 19:52:27
## 11965    3.0 1165607066 2006-12-08 19:44:26
## 11966    5.0 1143048712 2006-03-22 17:31:52
## 11967    1.5 1143048602 2006-03-22 17:30:02
## 11968    0.5 1143047691 2006-03-22 17:14:51
## 11969    2.0 1143047689 2006-03-22 17:14:49
## 11970    4.5 1165596737 2006-12-08 16:52:17
## 11971    3.5 1143048020 2006-03-22 17:20:20
## 11972    3.5 1143048746 2006-03-22 17:32:26
## 11973    3.0 1143048172 2006-03-22 17:22:52
## 11974    4.0 1165607415 2006-12-08 19:50:15
## 11975    3.0 1143048565 2006-03-22 17:29:25
## 11976    4.0 1143048267 2006-03-22 17:24:27
## 11977    3.5 1143047896 2006-03-22 17:18:16
## 11978    2.0 1143049546 2006-03-22 17:45:46
## 11979    3.5 1143048546 2006-03-22 17:29:06
## 11980    4.0 1143049565 2006-03-22 17:46:05
## 11981    0.5 1165607272 2006-12-08 19:47:52
## 11982    4.0 1165596914 2006-12-08 16:55:14
## 11983    3.0 1143047490 2006-03-22 17:11:30
## 11984    3.5 1143047941 2006-03-22 17:19:01
## 11985    4.0 1165607230 2006-12-08 19:47:10
## 11986    3.0 1143048203 2006-03-22 17:23:23
## 11987    4.5 1143048829 2006-03-22 17:33:49
## 11988    3.5 1143049532 2006-03-22 17:45:32
## 11989    2.5 1165607291 2006-12-08 19:48:11
## 11990    4.0 1143048182 2006-03-22 17:23:02
## 11991    4.0 1143048879 2006-03-22 17:34:39
## 11992    4.0 1143048866 2006-03-22 17:34:26
## 11993    4.5 1143048659 2006-03-22 17:30:59
## 11994    2.5 1165607318 2006-12-08 19:48:38
## 11995    4.5 1143048707 2006-03-22 17:31:47
## 11996    3.5 1143048060 2006-03-22 17:21:00
## 11997    2.0 1165607360 2006-12-08 19:49:20
## 11998    4.0 1143049523 2006-03-22 17:45:23
## 11999    4.0 1143048930 2006-03-22 17:35:30
## 12000    4.5 1143048725 2006-03-22 17:32:05
## 12001    3.5 1143048192 2006-03-22 17:23:12
## 12002    3.0 1165607372 2006-12-08 19:49:32
## 12003    4.0 1165607099 2006-12-08 19:44:59
## 12004    5.0 1143048765 2006-03-22 17:32:45
## 12005    4.0 1143048629 2006-03-22 17:30:29
## 12006    4.5 1143048967 2006-03-22 17:36:07
## 12007    3.0 1143047861 2006-03-22 17:17:41
## 12008    4.0 1143048671 2006-03-22 17:31:11
## 12009    4.0 1143049061 2006-03-22 17:37:41
## 12010    4.5 1143048646 2006-03-22 17:30:46
## 12011    3.0 1165607136 2006-12-08 19:45:36
## 12012    3.0 1165607299 2006-12-08 19:48:19
## 12013    4.5 1143048773 2006-03-22 17:32:53
## 12014    4.5 1143048683 2006-03-22 17:31:23
## 12015    4.0 1165596823 2006-12-08 16:53:43
## 12016    4.0 1165607919 2006-12-08 19:58:39
## 12017    4.0 1165596874 2006-12-08 16:54:34
## 12018    0.5 1165607897 2006-12-08 19:58:17
## 12019    5.0 1194384499 2007-11-06 21:28:19
## 12020    3.0 1194384318 2007-11-06 21:25:18
## 12021    3.0 1194384313 2007-11-06 21:25:13
## 12022    4.0 1194384411 2007-11-06 21:26:51
## 12023    4.0 1194384386 2007-11-06 21:26:26
## 12024    4.5 1194384460 2007-11-06 21:27:40
## 12025    3.5 1194384373 2007-11-06 21:26:13
## 12026    3.5 1194384328 2007-11-06 21:25:28
## 12027    4.0 1194384361 2007-11-06 21:26:01
## 12028    4.5 1194384299 2007-11-06 21:24:59
## 12029    3.5 1194384353 2007-11-06 21:25:53
## 12030    4.0 1194384281 2007-11-06 21:24:41
## 12031    4.0 1194384341 2007-11-06 21:25:41
## 12032    3.5 1194384277 2007-11-06 21:24:37
## 12033    4.0 1194384275 2007-11-06 21:24:35
## 12034    2.0 1194384399 2007-11-06 21:26:39
## 12035    4.5 1194384338 2007-11-06 21:25:38
## 12036    4.5 1194384512 2007-11-06 21:28:32
## 12037    3.5 1194384470 2007-11-06 21:27:50
## 12038    3.5 1194384451 2007-11-06 21:27:31
## 12039    4.0 1163005363 2006-11-08 17:02:43
## 12040    3.5 1163252774 2006-11-11 13:46:14
## 12041    3.0 1183844529 2007-07-07 21:42:09
## 12042    4.0 1163013349 2006-11-08 19:15:49
## 12043    3.5 1163253023 2006-11-11 13:50:23
## 12044    2.5 1163253088 2006-11-11 13:51:28
## 12045    4.0 1163008777 2006-11-08 17:59:37
## 12046    3.5 1163252918 2006-11-11 13:48:38
## 12047    3.5 1163004464 2006-11-08 16:47:44
## 12048    3.5 1163219726 2006-11-11 04:35:26
## 12049    1.5 1163253105 2006-11-11 13:51:45
## 12050    3.5 1163013335 2006-11-08 19:15:35
## 12051    4.0 1183920234 2007-07-08 18:43:54
## 12052    3.0 1163253085 2006-11-11 13:51:25
## 12053    2.0 1183844506 2007-07-07 21:41:46
## 12054    3.0 1163286142 2006-11-11 23:02:22
## 12055    2.5 1163082488 2006-11-09 14:28:08
## 12056    2.5 1163219428 2006-11-11 04:30:28
## 12057    2.0 1163253082 2006-11-11 13:51:22
## 12058    3.0 1163253079 2006-11-11 13:51:19
## 12059    4.5 1163004353 2006-11-08 16:45:53
## 12060    1.0 1163125859 2006-11-10 02:30:59
## 12061    2.5 1163259531 2006-11-11 15:38:51
## 12062    4.0 1163006051 2006-11-08 17:14:11
## 12063    3.5 1163253117 2006-11-11 13:51:57
## 12064    2.5 1163252922 2006-11-11 13:48:42
## 12065    4.0 1163012798 2006-11-08 19:06:38
## 12066    3.5 1163012801 2006-11-08 19:06:41
## 12067    4.0 1163082508 2006-11-09 14:28:28
## 12068    4.0 1163006037 2006-11-08 17:13:57
## 12069    2.0 1163253047 2006-11-11 13:50:47
## 12070    2.5 1163253104 2006-11-11 13:51:44
## 12071    3.0 1163082485 2006-11-09 14:28:05
## 12072    3.5 1163082500 2006-11-09 14:28:20
## 12073    4.0 1163219321 2006-11-11 04:28:41
## 12074    3.5 1163006023 2006-11-08 17:13:43
## 12075    3.0 1163125780 2006-11-10 02:29:40
## 12076    3.5 1163219373 2006-11-11 04:29:33
## 12077    2.5 1163013353 2006-11-08 19:15:53
## 12078    2.5 1163013344 2006-11-08 19:15:44
## 12079    1.5 1163286164 2006-11-11 23:02:44
## 12080    3.0 1163277657 2006-11-11 20:40:57
## 12081    2.5 1163013330 2006-11-08 19:15:30
## 12082    3.0 1163006020 2006-11-08 17:13:40
## 12083    3.0 1183920204 2007-07-08 18:43:24
## 12084    2.0 1163013198 2006-11-08 19:13:18
## 12085    4.5 1163005103 2006-11-08 16:58:23
## 12086    1.5 1183920099 2007-07-08 18:41:39
## 12087    2.5 1163252886 2006-11-11 13:48:06
## 12088    3.5 1163082479 2006-11-09 14:27:59
## 12089    4.0 1163013341 2006-11-08 19:15:41
## 12090    3.0 1163013339 2006-11-08 19:15:39
## 12091    3.5 1163006012 2006-11-08 17:13:32
## 12092    3.0 1163013328 2006-11-08 19:15:28
## 12093    3.5 1163253015 2006-11-11 13:50:15
## 12094    2.5 1163253037 2006-11-11 13:50:37
## 12095    2.0 1183844492 2007-07-07 21:41:32
## 12096    2.5 1163013368 2006-11-08 19:16:08
## 12097    3.0 1183512581 2007-07-04 01:29:41
## 12098    3.0 1163253027 2006-11-11 13:50:27
## 12099    2.0 1163253163 2006-11-11 13:52:43
## 12100    4.0 1163079173 2006-11-09 13:32:53
## 12101    3.0 1183512477 2007-07-04 01:27:57
## 12102    4.5 1163004390 2006-11-08 16:46:30
## 12103    3.5 1163005369 2006-11-08 17:02:49
## 12104    3.0 1163219390 2006-11-11 04:29:50
## 12105    2.5 1163277702 2006-11-11 20:41:42
## 12106    4.5 1163004359 2006-11-08 16:45:59
## 12107    3.5 1183920326 2007-07-08 18:45:26
## 12108    3.0 1163253110 2006-11-11 13:51:50
## 12109    4.0 1163079436 2006-11-09 13:37:16
## 12110    3.5 1163252515 2006-11-11 13:41:55
## 12111    4.0 1163004406 2006-11-08 16:46:46
## 12112    3.0 1163253049 2006-11-11 13:50:49
## 12113    4.0 1163277603 2006-11-11 20:40:03
## 12114    4.5 1163012788 2006-11-08 19:06:28
## 12115    3.0 1183512491 2007-07-04 01:28:11
## 12116    4.5 1163013360 2006-11-08 19:16:00
## 12117    4.5 1163125789 2006-11-10 02:29:49
## 12118    4.0 1163082497 2006-11-09 14:28:17
## 12119    4.0 1163219937 2006-11-11 04:38:57
## 12120    4.0 1163252283 2006-11-11 13:38:03
## 12121    4.0 1163008790 2006-11-08 17:59:50
## 12122    3.5 1183920321 2007-07-08 18:45:21
## 12123    4.0 1163006027 2006-11-08 17:13:47
## 12124    3.5 1163253113 2006-11-11 13:51:53
## 12125    4.5 1163005217 2006-11-08 17:00:17
## 12126    3.5 1163013055 2006-11-08 19:10:55
## 12127    4.5 1163004386 2006-11-08 16:46:26
## 12128    3.5 1163012783 2006-11-08 19:06:23
## 12129    3.0 1183512498 2007-07-04 01:28:18
## 12130    4.5 1163125801 2006-11-10 02:30:01
## 12131    3.0 1163252277 2006-11-11 13:37:57
## 12132    4.5 1163915651 2006-11-19 05:54:11
## 12133    4.0 1163082678 2006-11-09 14:31:18
## 12134    3.5 1163006001 2006-11-08 17:13:21
## 12135    3.5 1163219327 2006-11-11 04:28:47
## 12136    3.5 1163079424 2006-11-09 13:37:04
## 12137    4.5 1163004479 2006-11-08 16:47:59
## 12138    4.0 1163079277 2006-11-09 13:34:37
## 12139    4.0 1163005225 2006-11-08 17:00:25
## 12140    3.0 1163252892 2006-11-11 13:48:12
## 12141    3.5 1183920197 2007-07-08 18:43:17
## 12142    2.0 1183920089 2007-07-08 18:41:29
## 12143    4.0 1163125883 2006-11-10 02:31:23
## 12144    4.0 1163125876 2006-11-10 02:31:16
## 12145    3.5 1163286102 2006-11-11 23:01:42
## 12146    3.5 1163253071 2006-11-11 13:51:11
## 12147    1.5 1183920103 2007-07-08 18:41:43
## 12148    2.5 1163219409 2006-11-11 04:30:09
## 12149    4.0 1163082518 2006-11-09 14:28:38
## 12150    3.5 1163277597 2006-11-11 20:39:57
## 12151    4.0 1183920299 2007-07-08 18:44:59
## 12152    3.5 1163915779 2006-11-19 05:56:19
## 12153    3.0 1183844513 2007-07-07 21:41:53
## 12154    2.0 1163252930 2006-11-11 13:48:50
## 12155    3.5 1163079388 2006-11-09 13:36:28
## 12156    2.5 1163269736 2006-11-11 18:28:56
## 12157    2.5 1163219656 2006-11-11 04:34:16
## 12158    2.5 1183844547 2007-07-07 21:42:27
## 12159    2.0 1163286171 2006-11-11 23:02:51
## 12160    2.0 1163252812 2006-11-11 13:46:52
## 12161    2.5 1163253127 2006-11-11 13:52:07
## 12162    4.5 1166027866 2006-12-13 16:37:46
## 12163    3.0 1183920347 2007-07-08 18:45:47
## 12164    3.5 1183920251 2007-07-08 18:44:11
## 12165    3.5 1183920333 2007-07-08 18:45:33
## 12166    4.0 1163082649 2006-11-09 14:30:49
## 12167    4.0 1183844575 2007-07-07 21:42:55
## 12168    3.5 1163286265 2006-11-11 23:04:25
## 12169    3.5 1163004544 2006-11-08 16:49:04
## 12170    2.5 1163915788 2006-11-19 05:56:28
## 12171    3.5 1183920345 2007-07-08 18:45:45
## 12172    4.0 1163277609 2006-11-11 20:40:09
## 12173    4.0 1163915709 2006-11-19 05:55:09
## 12174    4.0 1166027980 2006-12-13 16:39:40
## 12175    4.5 1166027880 2006-12-13 16:38:00
## 12176    4.0 1163219362 2006-11-11 04:29:22
## 12177    4.0 1163005101 2006-11-08 16:58:21
## 12178    4.5 1163259483 2006-11-11 15:38:03
## 12179    3.5 1163005107 2006-11-08 16:58:27
## 12180    4.0 1163738014 2006-11-17 04:33:34
## 12181    3.5 1183844537 2007-07-07 21:42:17
## 12182    2.0 1163252612 2006-11-11 13:43:32
## 12183    3.5 1163219423 2006-11-11 04:30:23
## 12184    4.5 1163005196 2006-11-08 16:59:56
## 12185    3.5 1163277646 2006-11-11 20:40:46
## 12186    3.5 1163277601 2006-11-11 20:40:01
## 12187    3.5 1163738035 2006-11-17 04:33:55
## 12188    4.5 1163004608 2006-11-08 16:50:08
## 12189    4.0 1163079154 2006-11-09 13:32:34
## 12190    2.5 1163738031 2006-11-17 04:33:51
## 12191    4.0 1184948966 2007-07-20 16:29:26
## 12192    1.5 1163006017 2006-11-08 17:13:37
## 12193    3.5 1163219366 2006-11-11 04:29:26
## 12194    3.0 1163219414 2006-11-11 04:30:14
## 12195    2.5 1163252918 2006-11-11 13:48:38
## 12196    4.0 1183920219 2007-07-08 18:43:39
## 12197    4.0 1183844561 2007-07-07 21:42:41
## 12198    3.5 1163125798 2006-11-10 02:29:58
## 12199    3.0 1166027951 2006-12-13 16:39:11
## 12200    1.0 1183844524 2007-07-07 21:42:04
## 12201    4.0 1163253120 2006-11-11 13:52:00
## 12202    4.0 1163253062 2006-11-11 13:51:02
## 12203    4.0 1163219953 2006-11-11 04:39:13
## 12204    3.5 1163125886 2006-11-10 02:31:26
## 12205    2.0 1163259854 2006-11-11 15:44:14
## 12206    3.0 1163013177 2006-11-08 19:12:57
## 12207    3.5 1163125878 2006-11-10 02:31:18
## 12208    4.5 1183844565 2007-07-07 21:42:45
## 12209    4.0 1163005335 2006-11-08 17:02:15
## 12210    4.0 1163004536 2006-11-08 16:48:56
## 12211    3.5 1163277606 2006-11-11 20:40:06
## 12212    2.5 1163277704 2006-11-11 20:41:44
## 12213    3.5 1183920193 2007-07-08 18:43:13
## 12214    4.0 1163005456 2006-11-08 17:04:16
## 12215    4.0 1163004499 2006-11-08 16:48:19
## 12216    4.5 1183920214 2007-07-08 18:43:34
## 12217    4.5 1163005080 2006-11-08 16:58:00
## 12218    3.0 1163259912 2006-11-11 15:45:12
## 12219    3.5 1163082621 2006-11-09 14:30:21
## 12220    4.0 1163286260 2006-11-11 23:04:20
## 12221    2.5 1163738069 2006-11-17 04:34:29
## 12222    3.5 1183920264 2007-07-08 18:44:24
## 12223    4.0 1163252250 2006-11-11 13:37:30
## 12224    4.0 1163219938 2006-11-11 04:38:58
## 12225    3.0 1163259527 2006-11-11 15:38:47
## 12226    4.5 1163265784 2006-11-11 17:23:04
## 12227    4.0 1166027886 2006-12-13 16:38:06
## 12228    3.5 1166027891 2006-12-13 16:38:11
## 12229    3.0 1166027895 2006-12-13 16:38:15
## 12230    1.5 1183844498 2007-07-07 21:41:38
## 12231    0.5 1183920246 2007-07-08 18:44:06
## 12232    4.5 1163005031 2006-11-08 16:57:11
## 12233    3.0 1183512502 2007-07-04 01:28:22
## 12234    2.5 1163219416 2006-11-11 04:30:16
## 12235    1.5 1163260803 2006-11-11 16:00:03
## 12236    4.0 1183920231 2007-07-08 18:43:51
## 12237    4.0 1183920227 2007-07-08 18:43:47
## 12238    3.0 1163006008 2006-11-08 17:13:28
## 12239    1.5 1163915774 2006-11-19 05:56:14
## 12240    4.0 1163079471 2006-11-09 13:37:51
## 12241    4.0 1163265859 2006-11-11 17:24:19
## 12242    4.0 1163265861 2006-11-11 17:24:21
## 12243    3.5 1163265862 2006-11-11 17:24:22
## 12244    3.5 1163220288 2006-11-11 04:44:48
## 12245    3.5 1183920122 2007-07-08 18:42:02
## 12246    4.0 1163004371 2006-11-08 16:46:11
## 12247    3.0 1163252840 2006-11-11 13:47:20
## 12248    3.0 1163252803 2006-11-11 13:46:43
## 12249    3.0 1163125809 2006-11-10 02:30:09
## 12250    4.5 1183920274 2007-07-08 18:44:34
## 12251    0.5 1163004354 2006-11-08 16:45:54
## 12252    4.5 1163004631 2006-11-08 16:50:31
## 12253    2.5 1183920127 2007-07-08 18:42:07
## 12254    1.0 1163346129 2006-11-12 15:42:09
## 12255    2.5 1163277700 2006-11-11 20:41:40
## 12256    2.0 1183920136 2007-07-08 18:42:16
## 12257    3.0 1166027898 2006-12-13 16:38:18
## 12258    3.5 1163125847 2006-11-10 02:30:47
## 12259    3.5 1163286177 2006-11-11 23:02:57
## 12260    3.5 1163252909 2006-11-11 13:48:29
## 12261    4.0 1163219953 2006-11-11 04:39:13
## 12262    4.5 1163633273 2006-11-15 23:27:53
## 12263    3.5 1163005241 2006-11-08 17:00:41
## 12264    4.0 1163082640 2006-11-09 14:30:40
## 12265    3.0 1163125785 2006-11-10 02:29:45
## 12266    3.0 1183920097 2007-07-08 18:41:37
## 12267    2.0 1183844539 2007-07-07 21:42:19
## 12268    3.0 1183844467 2007-07-07 21:41:07
## 12269    2.0 1163005117 2006-11-08 16:58:37
## 12270    4.0 1183920341 2007-07-08 18:45:41
## 12271    3.5 1163219308 2006-11-11 04:28:28
## 12272    4.0 1163125813 2006-11-10 02:30:13
## 12273    1.0 1163386523 2006-11-13 02:55:23
## 12274    3.0 1163006045 2006-11-08 17:14:05
## 12275    0.5 1183920259 2007-07-08 18:44:19
## 12276    4.0 1163277663 2006-11-11 20:41:03
## 12277    4.0 1163005522 2006-11-08 17:05:22
## 12278    3.5 1163004657 2006-11-08 16:50:57
## 12279    0.5 1183511678 2007-07-04 01:14:38
## 12280    4.0 1183512622 2007-07-04 01:30:22
## 12281    3.0 1163125818 2006-11-10 02:30:18
## 12282    4.0 1163277586 2006-11-11 20:39:46
## 12283    3.5 1166027993 2006-12-13 16:39:53
## 12284    3.0 1163219386 2006-11-11 04:29:46
## 12285    3.0 1163219717 2006-11-11 04:35:17
## 12286    3.5 1163219638 2006-11-11 04:33:58
## 12287    3.0 1163277592 2006-11-11 20:39:52
## 12288    3.0 1163005385 2006-11-08 17:03:05
## 12289    4.0 1163219317 2006-11-11 04:28:37
## 12290    4.0 1163005491 2006-11-08 17:04:51
## 12291    3.0 1183844543 2007-07-07 21:42:23
## 12292    0.5 1163004453 2006-11-08 16:47:33
## 12293    3.5 1183920262 2007-07-08 18:44:22
## 12294    4.0 1163082645 2006-11-09 14:30:45
## 12295    4.0 1163219402 2006-11-11 04:30:02
## 12296    3.0 1163277654 2006-11-11 20:40:54
## 12297    3.0 1163346143 2006-11-12 15:42:23
## 12298    4.5 1163259669 2006-11-11 15:41:09
## 12299    4.0 1163079326 2006-11-09 13:35:26
## 12300    4.0 1163286010 2006-11-11 23:00:10
## 12301    3.5 1163004488 2006-11-08 16:48:08
## 12302    2.5 1183844503 2007-07-07 21:41:43
## 12303    4.5 1163005487 2006-11-08 17:04:47
## 12304    2.0 1163004783 2006-11-08 16:53:03
## 12305    4.0 1163005091 2006-11-08 16:58:11
## 12306    3.5 1163219723 2006-11-11 04:35:23
## 12307    4.0 1163277648 2006-11-11 20:40:48
## 12308    4.0 1163005229 2006-11-08 17:00:29
## 12309    4.0 1163219298 2006-11-11 04:28:18
## 12310    4.5 1163259811 2006-11-11 15:43:31
## 12311    3.5 1163004517 2006-11-08 16:48:37
## 12312    4.5 1166028040 2006-12-13 16:40:40
## 12313    2.5 1183511703 2007-07-04 01:15:03
## 12314    4.0 1166028045 2006-12-13 16:40:45
## 12315    4.0 1166028040 2006-12-13 16:40:40
## 12316    4.0 1166028010 2006-12-13 16:40:10
## 12317    4.0 1163346052 2006-11-12 15:40:52
## 12318    4.0 1163346050 2006-11-12 15:40:50
## 12319    4.0 1163012825 2006-11-08 19:07:05
## 12320    3.0 1183844570 2007-07-07 21:42:50
## 12321    4.0 1163260633 2006-11-11 15:57:13
## 12322    0.5 1183511682 2007-07-04 01:14:42
## 12323    4.0 1163219319 2006-11-11 04:28:39
## 12324    2.0 1183920174 2007-07-08 18:42:54
## 12325    4.0 1183844557 2007-07-07 21:42:37
## 12326    4.5 1163259824 2006-11-11 15:43:44
## 12327    3.5 1163252803 2006-11-11 13:46:43
## 12328    4.0 1163125836 2006-11-10 02:30:36
## 12329    3.5 1183511991 2007-07-04 01:19:51
## 12330    2.0 1183511757 2007-07-04 01:15:57
## 12331    1.0 1163219241 2006-11-11 04:27:21
## 12332    4.0 1163004633 2006-11-08 16:50:33
## 12333    3.5 1183511779 2007-07-04 01:16:19
## 12334    2.5 1163219395 2006-11-11 04:29:55
## 12335    4.0 1163005497 2006-11-08 17:04:57
## 12336    3.5 1163013078 2006-11-08 19:11:18
## 12337    4.5 1163006062 2006-11-08 17:14:22
## 12338    3.0 1163386501 2006-11-13 02:55:01
## 12339    4.0 1163013182 2006-11-08 19:13:02
## 12340    2.0 1163286160 2006-11-11 23:02:40
## 12341    4.5 1163008703 2006-11-08 17:58:23
## 12342    3.5 1163079317 2006-11-09 13:35:17
## 12343    4.0 1163259890 2006-11-11 15:44:50
## 12344    4.0 1163219907 2006-11-11 04:38:27
## 12345    3.5 1163220283 2006-11-11 04:44:43
## 12346    2.5 1163005991 2006-11-08 17:13:11
## 12347    4.0 1163737974 2006-11-17 04:32:54
## 12348    4.5 1163006072 2006-11-08 17:14:32
## 12349    3.5 1163125866 2006-11-10 02:31:06
## 12350    4.0 1183511846 2007-07-04 01:17:26
## 12351    0.5 1163005434 2006-11-08 17:03:54
## 12352    4.0 1163286001 2006-11-11 23:00:01
## 12353    0.5 1183511648 2007-07-04 01:14:08
## 12354    3.5 1274051069 2010-05-16 23:04:29
## 12355    5.0 1274050854 2010-05-16 23:00:54
## 12356    5.0 1344470037 2012-08-08 23:53:57
## 12357    5.0 1274050782 2010-05-16 22:59:42
## 12358    3.5 1344469842 2012-08-08 23:50:42
## 12359    5.0 1274050940 2010-05-16 23:02:20
## 12360    4.0 1344469790 2012-08-08 23:49:50
## 12361    5.0 1274051508 2010-05-16 23:11:48
## 12362    1.5 1274050758 2010-05-16 22:59:18
## 12363    3.5 1274050991 2010-05-16 23:03:11
## 12364    4.0 1274050945 2010-05-16 23:02:25
## 12365    3.5 1327289203 2012-01-23 03:26:43
## 12366    5.0 1274046007 2010-05-16 21:40:07
## 12367    4.5 1274050942 2010-05-16 23:02:22
## 12368    5.0 1344470407 2012-08-09 00:00:07
## 12369    4.5 1274051011 2010-05-16 23:03:31
## 12370    5.0 1274050895 2010-05-16 23:01:35
## 12371    5.0 1274050755 2010-05-16 22:59:15
## 12372    4.5 1274050741 2010-05-16 22:59:01
## 12373    4.0 1274050827 2010-05-16 23:00:27
## 12374    5.0 1274050752 2010-05-16 22:59:12
## 12375    5.0 1274050869 2010-05-16 23:01:09
## 12376    4.5 1327288678 2012-01-23 03:17:58
## 12377    4.5 1274051738 2010-05-16 23:15:38
## 12378    5.0 1274050745 2010-05-16 22:59:05
## 12379    3.5 1274050816 2010-05-16 23:00:16
## 12380    4.5 1274050797 2010-05-16 22:59:57
## 12381    3.5 1274050750 2010-05-16 22:59:10
## 12382    4.0 1274050831 2010-05-16 23:00:31
## 12383    4.0 1328636541 2012-02-07 17:42:21
## 12384    4.0 1344470455 2012-08-09 00:00:55
## 12385    3.5 1274050785 2010-05-16 22:59:45
## 12386    5.0 1274050763 2010-05-16 22:59:23
## 12387    4.5 1274050748 2010-05-16 22:59:08
## 12388    5.0 1274050801 2010-05-16 23:00:01
## 12389    4.5 1274050821 2010-05-16 23:00:21
## 12390    4.5 1274051080 2010-05-16 23:04:40
## 12391    4.0 1274050766 2010-05-16 22:59:26
## 12392    3.5 1327289197 2012-01-23 03:26:37
## 12393    4.5 1327288505 2012-01-23 03:15:05
## 12394    3.5 1274051063 2010-05-16 23:04:23
## 12395    2.0 1274051008 2010-05-16 23:03:28
## 12396    4.5 1274046035 2010-05-16 21:40:35
## 12397    1.0 1274050989 2010-05-16 23:03:09
## 12398    4.0 1345676388 2012-08-22 22:59:48
## 12399    3.5 1274050843 2010-05-16 23:00:43
## 12400    3.0 1274050885 2010-05-16 23:01:25
## 12401    4.0 1274050792 2010-05-16 22:59:52
## 12402    4.5 1274050964 2010-05-16 23:02:44
## 12403    2.5 1327288495 2012-01-23 03:14:55
## 12404    5.0 1274051079 2010-05-16 23:04:39
## 12405    4.0 1274050770 2010-05-16 22:59:30
## 12406    4.5 1274050993 2010-05-16 23:03:13
## 12407    3.5 1274050904 2010-05-16 23:01:44
## 12408    5.0 1327062981 2012-01-20 12:36:21
## 12409    4.0 1274050852 2010-05-16 23:00:52
## 12410    2.0 1274050876 2010-05-16 23:01:16
## 12411    4.5 1274050805 2010-05-16 23:00:05
## 12412    5.0 1344470536 2012-08-09 00:02:16
## 12413    3.5 1345676342 2012-08-22 22:59:02
## 12414    4.0 1327288652 2012-01-23 03:17:32
## 12415    5.0 1274051262 2010-05-16 23:07:42
## 12416    4.0 1344470332 2012-08-08 23:58:52
## 12417    4.0 1344470035 2012-08-08 23:53:55
## 12418    5.0 1327289353 2012-01-23 03:29:13
## 12419    3.0 1274045997 2010-05-16 21:39:57
## 12420    4.5 1344469958 2012-08-08 23:52:38
## 12421    4.0 1274046052 2010-05-16 21:40:52
## 12422    3.0 1274051802 2010-05-16 23:16:42
## 12423    4.0 1274050950 2010-05-16 23:02:30
## 12424    4.0 1344470497 2012-08-09 00:01:37
## 12425    2.5 1344469730 2012-08-08 23:48:50
## 12426    5.0 1274051255 2010-05-16 23:07:35
## 12427    3.5 1274046079 2010-05-16 21:41:19
## 12428    5.0 1274051089 2010-05-16 23:04:49
## 12429    5.0 1344469988 2012-08-08 23:53:08
## 12430    4.5 1327288610 2012-01-23 03:16:50
## 12431    5.0 1344469919 2012-08-08 23:51:59
## 12432    5.0 1356219742 2012-12-22 23:42:22
## 12433    3.5 1274051084 2010-05-16 23:04:44
## 12434    4.0 1344470446 2012-08-09 00:00:46
## 12435    5.0 1274050948 2010-05-16 23:02:28
## 12436    5.0 1327289341 2012-01-23 03:29:01
## 12437    4.0 1274050845 2010-05-16 23:00:45
## 12438    4.5 1344470107 2012-08-08 23:55:07
## 12439    5.0 1344469830 2012-08-08 23:50:30
## 12440    4.0 1274046023 2010-05-16 21:40:23
## 12441    5.0 1274046061 2010-05-16 21:41:01
## 12442    5.0 1327288604 2012-01-23 03:16:44
## 12443    4.5 1274051067 2010-05-16 23:04:27
## 12444    1.5 1274050974 2010-05-16 23:02:54
## 12445    5.0 1274051253 2010-05-16 23:07:33
## 12446    4.0 1344470116 2012-08-08 23:55:16
## 12447    4.5 1344469836 2012-08-08 23:50:36
## 12448    4.0 1274051275 2010-05-16 23:07:55
## 12449    2.5 1274050826 2010-05-16 23:00:26
## 12450    3.0 1344470388 2012-08-08 23:59:48
## 12451    4.0 1344469948 2012-08-08 23:52:28
## 12452    4.5 1344470322 2012-08-08 23:58:42
## 12453    4.0 1274046142 2010-05-16 21:42:22
## 12454    5.0 1274052026 2010-05-16 23:20:26
## 12455    5.0 1328046149 2012-01-31 21:42:29
## 12456    5.0 1274046041 2010-05-16 21:40:41
## 12457    5.0 1328046208 2012-01-31 21:43:28
## 12458    4.0 1344470328 2012-08-08 23:58:48
## 12459    4.0 1274046086 2010-05-16 21:41:26
## 12460    5.0 1327288596 2012-01-23 03:16:36
## 12461    4.5 1274051581 2010-05-16 23:13:01
## 12462    5.0 1274050787 2010-05-16 22:59:47
## 12463    5.0 1327289320 2012-01-23 03:28:40
## 12464    5.0 1274050865 2010-05-16 23:01:05
## 12465    2.0 1274046002 2010-05-16 21:40:02
## 12466    3.5 1274050967 2010-05-16 23:02:47
## 12467    5.0 1344469934 2012-08-08 23:52:14
## 12468    5.0 1274051060 2010-05-16 23:04:20
## 12469    5.0 1274051281 2010-05-16 23:08:01
## 12470    4.5 1274050793 2010-05-16 22:59:53
## 12471    5.0 1327288635 2012-01-23 03:17:15
## 12472    4.0 1274051279 2010-05-16 23:07:59
## 12473    5.0 1345676411 2012-08-22 23:00:11
## 12474    5.0 1274050848 2010-05-16 23:00:48
## 12475    4.0 1344469750 2012-08-08 23:49:10
## 12476    2.5 1274046172 2010-05-16 21:42:52
## 12477    4.0 1344469913 2012-08-08 23:51:53
## 12478    5.0 1344470523 2012-08-09 00:02:03
## 12479    4.5 1344470341 2012-08-08 23:59:01
## 12480    4.5 1274051797 2010-05-16 23:16:37
## 12481    4.0 1344470469 2012-08-09 00:01:09
## 12482    5.0 1327288628 2012-01-23 03:17:08
## 12483    4.0 1274051897 2010-05-16 23:18:17
## 12484    5.0 1327289236 2012-01-23 03:27:16
## 12485    5.0 1327288622 2012-01-23 03:17:02
## 12486    3.5 1274046121 2010-05-16 21:42:01
## 12487    3.0 1344470577 2012-08-09 00:02:57
## 12488    5.0 1274050886 2010-05-16 23:01:26
## 12489    4.5 1344470313 2012-08-08 23:58:33
## 12490    5.0 1327288585 2012-01-23 03:16:25
## 12491    5.0 1344469943 2012-08-08 23:52:23
## 12492    3.0 1327289233 2012-01-23 03:27:13
## 12493    5.0 1327289228 2012-01-23 03:27:08
## 12494    4.0 1274050970 2010-05-16 23:02:50
## 12495    4.0 1274051784 2010-05-16 23:16:24
## 12496    4.5 1344530161 2012-08-09 16:36:01
## 12497    5.0 1327063029 2012-01-20 12:37:09
## 12498    3.5 1344472522 2012-08-09 00:35:22
## 12499    3.5 1344469805 2012-08-08 23:50:05
##  [ reached 'max' / getOption("max.print") -- omitted 87505 rows ]

Question 6

Compute the average rating for each week and plot this average against date. Hint: use the round_date() function before you group_by().

What type of trend do you observe?

 movielens%>% mutate(date = round_date(date, unit ="week")) %>%
   group_by(date) %>% summarize(avg_rating = mean(rating)) %>%
   ggplot(aes(date,avg_rating))+
   geom_point() + geom_smooth()
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'

Question 7

Consider again the plot you generated in Q6.

If we define du,i as the day for user’s u rating of movie i , which of the following models is most appropriate?

  • Yu,i=μ+bi+bu+du,i+εu,i
  • Yu,i=μ+bi+bu+du,iβ+εu,i
  • Yu,i=μ+bi+bu+du,iβi+εu,i
  • Yu,i=μ+bi+bu+f(du,i)+εu,i , with f a smooth function of du,i [*]

Question 8

The movielens data also has a genres column. This column includes every genre that applies to the movie. Some movies fall under several genres. Define a category as whatever combination appears in this column. Keep only categories with more than 1,000 ratings. Then compute the average and standard error for each category. Plot these as error bar plots.

Which genre has the lowest average rating?

movielens %>% group_by(genres) %>%
    summarize(n = n(), avg = mean(rating), se = sd(rating)/sqrt(n())) %>%
    filter(n >= 1000) %>% 
    mutate(genres = reorder(genres, avg)) %>%
    ggplot(aes(x = genres, y = avg, ymin = avg - 2*se, ymax = avg + 2*se)) + 
    geom_point() +
    geom_errorbar() + 
    theme(axis.text.x = element_text(angle = 90, hjust = 1))

QUestion 9

The plot you generated in Q8 shows strong evidence of a genre effect. Consider this plot as you answer the following question.

If we define gu,i as the genre for user u ’s rating of movie i , which of the following models is most appropriate?

  • Yu,i=μ+bi+bu+gu,i+εu,i
  • Yu,i=μ+bi+bu+gu,iβ+εu,i
  • Yu,i=μ+bi+bu+∑Kk=1xku,iβk+εu,i , with xku,i=1 if gu,i is genre k [*]
  • Yu,i=μ+bi+bu+f(gu,i)+εu,i , with f a smooth function of gu,i